diff options
author | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-02-22 18:18:23 +0100 |
---|---|---|
committer | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-02-22 18:18:23 +0100 |
commit | 3a173648e789f30b2843241ee38e694d16e10358 (patch) | |
tree | 9941f7025d8f3f5ff19c515bde8ae3ebca98a4a8 /gui/consolewindow.ui | |
parent | 10c707363b3f19a8862b5ebd2858bcaad1304a13 (diff) | |
download | MultiMC-3a173648e789f30b2843241ee38e694d16e10358.tar MultiMC-3a173648e789f30b2843241ee38e694d16e10358.tar.gz MultiMC-3a173648e789f30b2843241ee38e694d16e10358.tar.lz MultiMC-3a173648e789f30b2843241ee38e694d16e10358.tar.xz MultiMC-3a173648e789f30b2843241ee38e694d16e10358.zip |
Implement ConsoleWindow
Diffstat (limited to 'gui/consolewindow.ui')
-rw-r--r-- | gui/consolewindow.ui | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/gui/consolewindow.ui b/gui/consolewindow.ui new file mode 100644 index 00000000..f8c87aa0 --- /dev/null +++ b/gui/consolewindow.ui @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>ConsoleWindow</class> + <widget class="QDialog" name="ConsoleWindow"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>600</width> + <height>400</height> + </rect> + </property> + <property name="windowTitle"> + <string>MultiMC Console</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QPlainTextEdit" name="text"> + <property name="font"> + <font> + <pointsize>10</pointsize> + </font> + </property> + <property name="undoRedoEnabled"> + <bool>false</bool> + </property> + <property name="readOnly"> + <bool>true</bool> + </property> + <property name="plainText"> + <string notr="true"/> + </property> + <property name="centerOnScroll"> + <bool>false</bool> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout"> + <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="closeButton"> + <property name="text"> + <string>Close</string> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + <resources/> + <connections/> +</ui> |