Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
nheko
Commits
28b3a3fd
Commit
28b3a3fd
authored
7 years ago
by
Konstantinos Sideris
Browse files
Options
Downloads
Patches
Plain Diff
Put typing notifications above the text input
parent
d60c2b76
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/Config.h
+1
-0
1 addition, 0 deletions
include/Config.h
src/ChatPage.cc
+2
-2
2 additions, 2 deletions
src/ChatPage.cc
src/TextInputWidget.cc
+4
-4
4 additions, 4 deletions
src/TextInputWidget.cc
src/TypingDisplay.cc
+6
-7
6 additions, 7 deletions
src/TypingDisplay.cc
with
13 additions
and
13 deletions
include/Config.h
+
1
−
0
View file @
28b3a3fd
...
...
@@ -8,6 +8,7 @@ namespace conf
{
// Global settings.
static
const
int
fontSize
=
12
;
static
const
int
textInputFontSize
=
14
;
static
const
int
emojiSize
=
14
;
static
const
int
headerFontSize
=
21
;
static
const
int
typingNotificationFontSize
=
11
;
...
...
This diff is collapsed.
Click to expand it.
src/ChatPage.cc
+
2
−
2
View file @
28b3a3fd
...
...
@@ -103,8 +103,8 @@ ChatPage::ChatPage(QSharedPointer<MatrixClient> client, QWidget *parent)
text_input_
=
new
TextInputWidget
(
this
);
typingDisplay_
=
new
TypingDisplay
(
this
);
contentLayout_
->
addWidget
(
text_input_
);
contentLayout_
->
addWidget
(
typingDisplay_
);
contentLayout_
->
addWidget
(
text_input_
);
user_info_widget_
=
new
UserInfoWidget
(
sideBarTopWidget_
);
sideBarTopWidgetLayout_
->
addWidget
(
user_info_widget_
);
...
...
@@ -298,7 +298,7 @@ ChatPage::syncFailed(const QString &msg)
return
;
qWarning
()
<<
"Sync error:"
<<
msg
;
sync_timer_
->
start
(
sync_interval_
*
5
);
sync_timer_
->
start
(
sync_interval_
);
}
// TODO: Should be moved in another class that manages this global list.
...
...
This diff is collapsed.
Click to expand it.
src/TextInputWidget.cc
+
4
−
4
View file @
28b3a3fd
...
...
@@ -45,14 +45,14 @@ TextInputWidget::TextInputWidget(QWidget *parent)
{
setFont
(
QFont
(
"Emoji One"
));
setFixedHeight
(
4
5
);
setFixedHeight
(
5
0
);
setSizePolicy
(
QSizePolicy
::
Expanding
,
QSizePolicy
::
Fixed
);
setCursor
(
Qt
::
ArrowCursor
);
setStyleSheet
(
"background-color: #fff;"
);
topLayout_
=
new
QHBoxLayout
();
topLayout_
->
setSpacing
(
0
);
topLayout_
->
setContentsMargins
(
5
,
15
,
0
,
5
);
topLayout_
->
setContentsMargins
(
15
,
0
,
15
,
5
);
QIcon
send_file_icon
;
send_file_icon
.
addFile
(
":/icons/icons/clip-dark.png"
,
QSize
(),
QIcon
::
Normal
,
QIcon
::
Off
);
...
...
@@ -69,14 +69,14 @@ TextInputWidget::TextInputWidget(QWidget *parent)
spinner_
->
hide
();
QFont
font
;
font
.
setPixelSize
(
conf
::
f
ontSize
);
font
.
setPixelSize
(
conf
::
textInputF
ontSize
);
input_
=
new
FilteredTextEdit
(
this
);
input_
->
setFixedHeight
(
32
);
input_
->
setFont
(
font
);
input_
->
setVerticalScrollBarPolicy
(
Qt
::
ScrollBarAlwaysOff
);
input_
->
setPlaceholderText
(
tr
(
"Write a message..."
));
input_
->
setStyleSheet
(
"color: #333333; border: none; margin: 0 5px"
);
input_
->
setStyleSheet
(
"color: #333333; border: none;
padding-top: 5px;
margin: 0 5px"
);
sendMessageBtn_
=
new
FlatButton
(
this
);
sendMessageBtn_
->
setForegroundColor
(
QColor
(
"#acc7dc"
));
...
...
This diff is collapsed.
Click to expand it.
src/TypingDisplay.cc
+
6
−
7
View file @
28b3a3fd
...
...
@@ -7,7 +7,7 @@
TypingDisplay
::
TypingDisplay
(
QWidget
*
parent
)
:
QWidget
(
parent
)
,
leftPadding_
{
57
}
,
leftPadding_
{
24
}
{
QFont
font
;
font
.
setPixelSize
(
conf
::
typingNotificationFontSize
);
...
...
@@ -24,9 +24,9 @@ TypingDisplay::setUsers(const QStringList &uid)
text_
=
uid
.
join
(
", "
);
if
(
uid
.
size
()
==
1
)
text_
+=
tr
(
" is typing
...
"
);
text_
+=
tr
(
" is typing"
);
else
if
(
uid
.
size
()
>
1
)
text_
+=
tr
(
" are typing
...
"
);
text_
+=
tr
(
" are typing"
);
update
();
}
...
...
@@ -34,11 +34,10 @@ TypingDisplay::setUsers(const QStringList &uid)
void
TypingDisplay
::
paintEvent
(
QPaintEvent
*
)
{
QPen
pen
(
QColor
(
"#
333
"
));
QPen
pen
(
QColor
(
"#
898989
"
));
QFont
font
;
QFont
font
(
"Open Sans Bold"
)
;
font
.
setPixelSize
(
conf
::
typingNotificationFontSize
);
font
.
setWeight
(
40
);
font
.
setItalic
(
true
);
QPainter
p
(
this
);
...
...
@@ -52,5 +51,5 @@ TypingDisplay::paintEvent(QPaintEvent *)
QFontMetrics
fm
(
font
);
text_
=
fm
.
elidedText
(
text_
,
Qt
::
ElideRight
,
width
()
-
3
*
leftPadding_
);
p
.
drawText
(
region
,
Qt
::
Align
Top
,
text_
);
p
.
drawText
(
region
,
Qt
::
Align
VCenter
,
text_
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment