diff options
| author | 2014-12-06 10:13:40 +0100 | |
|---|---|---|
| committer | 2014-12-06 10:13:40 +0100 | |
| commit | 1b7a8f4fab5b16619081a7e2201d44e2d1a0f73b (patch) | |
| tree | 5fddb446a50e87665c0ba5c4e6b6b72c05ecb5ef /irc/mainwindow.ui | |
| parent | 207f22bc4edd913e9e8c279eeba10caafa8df16b (diff) | |
| download | OneRoll-1b7a8f4fab5b16619081a7e2201d44e2d1a0f73b.tar.gz OneRoll-1b7a8f4fab5b16619081a7e2201d44e2d1a0f73b.zip | |
Add irc bot code
Diffstat (limited to 'irc/mainwindow.ui')
| -rw-r--r-- | irc/mainwindow.ui | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/irc/mainwindow.ui b/irc/mainwindow.ui new file mode 100644 index 0000000..d15d229 --- /dev/null +++ b/irc/mainwindow.ui @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>MainWindow</class> + <widget class="QMainWindow" name="MainWindow"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>604</width> + <height>458</height> + </rect> + </property> + <property name="windowTitle"> + <string>MainWindow</string> + </property> + <widget class="QWidget" name="centralwidget"> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QPushButton" name="m_connectButton"> + <property name="text"> + <string>Connect</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="m_joinButton"> + <property name="text"> + <string>join</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QPushButton" name="m_disconnectButton"> + <property name="text"> + <string>Disconnect</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="QTextEdit" name="m_output"/> + </item> + </layout> + </widget> + <widget class="QMenuBar" name="menubar"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>604</width> + <height>25</height> + </rect> + </property> + </widget> + <widget class="QStatusBar" name="statusbar"/> + </widget> + <resources/> + <connections/> +</ui> |