diff options
author | Joe Robinson <joe@grabyo.com> | 2017-04-19 14:32:48 +0100 |
---|---|---|
committer | Joe Robinson <joe@grabyo.com> | 2017-04-19 14:32:48 +0100 |
commit | 37d883535366f03e3ee4044a59569942864af0a5 (patch) | |
tree | fa7cf527d2defb6291e45f932abc5ba55c57e01a /IrcChannelForm.ui.qml | |
parent | 5422ca830c2d5f2845c837cccf00a42f4e310fa6 (diff) |
Add topic handling
Diffstat (limited to 'IrcChannelForm.ui.qml')
-rw-r--r-- | IrcChannelForm.ui.qml | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/IrcChannelForm.ui.qml b/IrcChannelForm.ui.qml index eba1072..053b04a 100644 --- a/IrcChannelForm.ui.qml +++ b/IrcChannelForm.ui.qml @@ -12,17 +12,31 @@ Item { anchors.top: parent.top } + TextField { + id: topic + objectName: "topic" + width: 472 + height: 25 + x: 8 + y: 8 + readOnly: true + font.family: "Source Code Pro" + font.pointSize: 9 + } + Flickable { id: flickable width: 472 - height: 411 + height: 390 x: 8 - y: 8 + y: 38 + flickableDirection: Flickable.AutoFlickIfNeeded TextArea.flickable: TextArea { objectName: "chat_area" id: textArea x: 8 - y: 8 + y: 38 + readOnly: true anchors.fill: parent wrapMode: TextArea.Wrap textFormat: TextEdit.RichText @@ -30,7 +44,7 @@ Item { font.pointSize: 9 selectByMouse: true } - ScrollBar.vertical: ScrollBar { } + ScrollBar.vertical: ScrollBar { position: 1.0 } } TextField { |