From 37d883535366f03e3ee4044a59569942864af0a5 Mon Sep 17 00:00:00 2001 From: Joe Robinson Date: Wed, 19 Apr 2017 14:32:48 +0100 Subject: Add topic handling --- IrcChannelForm.ui.qml | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'IrcChannelForm.ui.qml') 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 { -- cgit v1.2.3