Changeset 10536 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- Jul 11, 2008 4:02:45 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxSettingsDialog.cpp
r10525 r10536 69 69 QGridLayout *mainLayout = static_cast<QGridLayout*> (mAllWidget->layout()); 70 70 #ifdef VBOX_GUI_WITH_TOOLBAR_SETTINGS 71 mLbTitle->hide(); 72 mLbWhatsThis->hide(); 71 73 mSelector = new VBoxSettingsToolBarSelector (this); 72 74 static_cast<VBoxToolBar*> (mSelector->widget())->setMacToolbar(); 73 75 addToolBar (qobject_cast<QToolBar*> (mSelector->widget())); 74 76 /* No title in this mode, we change the title of the window. */ 75 mLbTitle->hide();76 77 mainLayout->setColumnMinimumWidth (0, 0); 77 78 mainLayout->setHorizontalSpacing (0); … … 194 195 int index = mSelector->idToIndex (aId); 195 196 #ifndef Q_WS_MAC 196 # ifdef VBOX_GUI_WITH_TOOLBAR_SETTINGS197 setWindowTitle (dialogTitle());198 # endif199 197 mLbTitle->setText (mSelector->itemText (aId)); 200 198 mStack->setCurrentIndex (index); … … 235 233 mStack->setCurrentIndex (index); 236 234 } 235 # ifdef VBOX_GUI_WITH_TOOLBAR_SETTINGS 236 setWindowTitle (dialogTitle()); 237 # endif 237 238 #endif /* !Q_WS_MAC */ 238 239 } … … 350 351 s.setWidth (minWidth); 351 352 #ifdef Q_WS_MAC 352 setFixedSize (s);353 categoryChanged (mSelector->currentId()); 353 354 #else /* Q_WS_MAC */ 354 355 resize (s); -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxGLSettingsGeneral.ui
r10212 r10536 23 23 <x>0</x> 24 24 <y>0</y> 25 <width> 400</width>26 <height> 296</height>25 <width>363</width> 26 <height>144</height> 27 27 </rect> 28 28 </property> 29 <layout class="Q VBoxLayout" >29 <layout class="QGridLayout" > 30 30 <property name="leftMargin" > 31 31 <number>0</number> 32 32 </property> 33 33 <property name="topMargin" > 34 <number> 5</number>34 <number>0</number> 35 35 </property> 36 36 <property name="rightMargin" > … … 38 38 </property> 39 39 <property name="bottomMargin" > 40 <number>5</number> 41 </property> 42 <item> 43 <widget class="QGroupBox" name="mGbDefault" > 44 <property name="title" > 45 <string>Default &Folders</string> 46 </property> 47 <layout class="QGridLayout" > 48 <property name="topMargin" > 49 <number>5</number> 50 </property> 51 <item row="0" column="0" > 52 <widget class="QLabel" name="mLbVdi" > 53 <property name="text" > 54 <string>&VDI files</string> 55 </property> 56 <property name="buddy" > 57 <cstring>mLeVdi</cstring> 58 </property> 59 </widget> 60 </item> 61 <item row="0" column="1" > 62 <widget class="QLineEdit" name="mLeVdi" > 63 <property name="whatsThis" > 64 <string>Displays the path to the default VDI folder. This folder is used, if not explicitly specified otherwise, when adding existing or creating new virtual hard disks.</string> 65 </property> 66 </widget> 67 </item> 68 <item row="1" column="0" > 69 <widget class="QLabel" name="mLbMach" > 70 <property name="text" > 71 <string>&Machines</string> 72 </property> 73 <property name="buddy" > 74 <cstring>mLeMach</cstring> 75 </property> 76 </widget> 77 </item> 78 <item row="1" column="1" > 79 <widget class="QLineEdit" name="mLeMach" > 80 <property name="whatsThis" > 81 <string>Displays the path to the default virtual machine folder. This folder is used, if not explicitly specified otherwise, when creating new virtual machines.</string> 82 </property> 83 </widget> 84 </item> 85 <item row="0" column="2" > 86 <widget class="QToolButton" name="mTbVdiSelect" > 87 <property name="whatsThis" > 88 <string>Opens a dialog to select the default VDI folder.</string> 89 </property> 90 <property name="icon" > 91 <iconset resource="../VirtualBox.qrc" >:/select_file_16px.png</iconset> 92 </property> 93 <property name="autoRaise" > 94 <bool>true</bool> 95 </property> 96 </widget> 97 </item> 98 <item row="1" column="2" > 99 <widget class="QToolButton" name="mTbMachSelect" > 100 <property name="whatsThis" > 101 <string>Opens a dialog to select the default virtual machine folder.</string> 102 </property> 103 <property name="icon" > 104 <iconset resource="../VirtualBox.qrc" >:/select_file_16px.png</iconset> 105 </property> 106 <property name="autoRaise" > 107 <bool>true</bool> 108 </property> 109 </widget> 110 </item> 111 <item row="0" column="3" > 112 <widget class="QToolButton" name="mTbVdiReset" > 113 <property name="whatsThis" > 114 <string>Resets the VDI folder path to the default value. The actual default path will be displayed after accepting the changes and opening this dialog again.</string> 115 </property> 116 <property name="icon" > 117 <iconset resource="../VirtualBox.qrc" >:/eraser_16px.png</iconset> 118 </property> 119 <property name="autoRaise" > 120 <bool>true</bool> 121 </property> 122 </widget> 123 </item> 124 <item row="1" column="3" > 125 <widget class="QToolButton" name="mTbMachReset" > 126 <property name="whatsThis" > 127 <string>Resets the virtual machine folder path to the default value. The actual default path will be displayed after accepting the changes and opening this dialog again.</string> 128 </property> 129 <property name="icon" > 130 <iconset resource="../VirtualBox.qrc" >:/eraser_16px.png</iconset> 131 </property> 132 <property name="autoRaise" > 133 <bool>true</bool> 134 </property> 135 </widget> 136 </item> 137 </layout> 138 </widget> 139 </item> 140 <item> 141 <widget class="QGroupBox" name="mGbVRDP" > 142 <property name="title" > 143 <string>V&RDP Authentication Library</string> 144 </property> 145 <layout class="QHBoxLayout" > 146 <property name="topMargin" > 147 <number>5</number> 148 </property> 149 <item> 150 <widget class="QLineEdit" name="mLeVRDP" > 151 <property name="whatsThis" > 152 <string>Displays the path to the library that provides authentication for Remote Display (VRDP) clients.</string> 153 </property> 154 </widget> 155 </item> 156 <item> 157 <widget class="QToolButton" name="mTbVRDPSelect" > 158 <property name="whatsThis" > 159 <string>Opens a dialog to select the VRDP authentication library file.</string> 160 </property> 161 <property name="icon" > 162 <iconset resource="../VirtualBox.qrc" >:/select_file_16px.png</iconset> 163 </property> 164 <property name="autoRaise" > 165 <bool>true</bool> 166 </property> 167 </widget> 168 </item> 169 <item> 170 <widget class="QToolButton" name="mTbVRDPReset" > 171 <property name="whatsThis" > 172 <string>Resets the authentication library file to the default value. The actual default library file will be displayed after accepting the changes and opening this dialog again.</string> 173 </property> 174 <property name="icon" > 175 <iconset resource="../VirtualBox.qrc" >:/eraser_16px.png</iconset> 176 </property> 177 <property name="autoRaise" > 178 <bool>true</bool> 179 </property> 180 </widget> 181 </item> 182 </layout> 183 </widget> 184 </item> 185 <item> 40 <number>0</number> 41 </property> 42 <item row="0" column="0" > 43 <widget class="QLabel" name="mLbVdi" > 44 <property name="text" > 45 <string>&VDI files path:</string> 46 </property> 47 <property name="alignment" > 48 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> 49 </property> 50 <property name="buddy" > 51 <cstring>mLeVdi</cstring> 52 </property> 53 </widget> 54 </item> 55 <item row="0" column="1" > 56 <widget class="QLineEdit" name="mLeVdi" > 57 <property name="sizePolicy" > 58 <sizepolicy vsizetype="Fixed" hsizetype="MinimumExpanding" > 59 <horstretch>0</horstretch> 60 <verstretch>0</verstretch> 61 </sizepolicy> 62 </property> 63 <property name="whatsThis" > 64 <string>Displays the path to the default VDI folder. This folder is used, if not explicitly specified otherwise, when adding existing or creating new virtual hard disks.</string> 65 </property> 66 </widget> 67 </item> 68 <item row="0" column="2" > 69 <widget class="QToolButton" name="mTbVdiSelect" > 70 <property name="whatsThis" > 71 <string>Opens a dialog to select the default VDI folder.</string> 72 </property> 73 <property name="icon" > 74 <iconset resource="../VirtualBox.qrc" >:/select_file_16px.png</iconset> 75 </property> 76 <property name="autoRaise" > 77 <bool>true</bool> 78 </property> 79 </widget> 80 </item> 81 <item row="0" column="3" > 82 <widget class="QToolButton" name="mTbVdiReset" > 83 <property name="whatsThis" > 84 <string>Resets the VDI folder path to the default value. The actual default path will be displayed after accepting the changes and opening this dialog again.</string> 85 </property> 86 <property name="icon" > 87 <iconset resource="../VirtualBox.qrc" >:/eraser_16px.png</iconset> 88 </property> 89 <property name="autoRaise" > 90 <bool>true</bool> 91 </property> 92 </widget> 93 </item> 94 <item row="1" column="0" > 95 <widget class="QLabel" name="mLbMach" > 96 <property name="text" > 97 <string>&Machines files path:</string> 98 </property> 99 <property name="alignment" > 100 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> 101 </property> 102 <property name="buddy" > 103 <cstring>mLeMach</cstring> 104 </property> 105 </widget> 106 </item> 107 <item row="1" column="1" > 108 <widget class="QLineEdit" name="mLeMach" > 109 <property name="whatsThis" > 110 <string>Displays the path to the default virtual machine folder. This folder is used, if not explicitly specified otherwise, when creating new virtual machines.</string> 111 </property> 112 </widget> 113 </item> 114 <item row="1" column="2" > 115 <widget class="QToolButton" name="mTbMachSelect" > 116 <property name="whatsThis" > 117 <string>Opens a dialog to select the default virtual machine folder.</string> 118 </property> 119 <property name="icon" > 120 <iconset resource="../VirtualBox.qrc" >:/select_file_16px.png</iconset> 121 </property> 122 <property name="autoRaise" > 123 <bool>true</bool> 124 </property> 125 </widget> 126 </item> 127 <item row="1" column="3" > 128 <widget class="QToolButton" name="mTbMachReset" > 129 <property name="whatsThis" > 130 <string>Resets the virtual machine folder path to the default value. The actual default path will be displayed after accepting the changes and opening this dialog again.</string> 131 </property> 132 <property name="icon" > 133 <iconset resource="../VirtualBox.qrc" >:/eraser_16px.png</iconset> 134 </property> 135 <property name="autoRaise" > 136 <bool>true</bool> 137 </property> 138 </widget> 139 </item> 140 <item row="2" column="0" colspan="4" > 141 <widget class="Line" name="line" > 142 <property name="orientation" > 143 <enum>Qt::Horizontal</enum> 144 </property> 145 </widget> 146 </item> 147 <item row="3" column="0" > 148 <widget class="QLabel" name="label_2" > 149 <property name="text" > 150 <string>V&RDP Authentication Library:</string> 151 </property> 152 <property name="alignment" > 153 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> 154 </property> 155 <property name="buddy" > 156 <cstring>mLeVRDP</cstring> 157 </property> 158 </widget> 159 </item> 160 <item row="3" column="1" > 161 <widget class="QLineEdit" name="mLeVRDP" > 162 <property name="whatsThis" > 163 <string>Displays the path to the library that provides authentication for Remote Display (VRDP) clients.</string> 164 </property> 165 </widget> 166 </item> 167 <item row="3" column="2" > 168 <widget class="QToolButton" name="mTbVRDPSelect" > 169 <property name="whatsThis" > 170 <string>Opens a dialog to select the VRDP authentication library file.</string> 171 </property> 172 <property name="icon" > 173 <iconset resource="../VirtualBox.qrc" >:/select_file_16px.png</iconset> 174 </property> 175 <property name="autoRaise" > 176 <bool>true</bool> 177 </property> 178 </widget> 179 </item> 180 <item row="3" column="3" > 181 <widget class="QToolButton" name="mTbVRDPReset" > 182 <property name="whatsThis" > 183 <string>Resets the authentication library file to the default value. The actual default library file will be displayed after accepting the changes and opening this dialog again.</string> 184 </property> 185 <property name="icon" > 186 <iconset resource="../VirtualBox.qrc" >:/eraser_16px.png</iconset> 187 </property> 188 <property name="autoRaise" > 189 <bool>true</bool> 190 </property> 191 </widget> 192 </item> 193 <item row="4" column="1" > 186 194 <spacer> 187 195 <property name="orientation" > … … 191 199 <size> 192 200 <width>20</width> 193 <height> 0</height>201 <height>40</height> 194 202 </size> 195 203 </property> -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxGLSettingsInput.ui
r10212 r10536 23 23 <x>0</x> 24 24 <y>0</y> 25 <width> 381</width>26 <height> 205</height>25 <width>292</width> 26 <height>91</height> 27 27 </rect> 28 28 </property> 29 <layout class="Q VBoxLayout" >29 <layout class="QGridLayout" > 30 30 <property name="leftMargin" > 31 31 <number>0</number> 32 32 </property> 33 33 <property name="topMargin" > 34 <number> 5</number>34 <number>0</number> 35 35 </property> 36 36 <property name="rightMargin" > … … 38 38 </property> 39 39 <property name="bottomMargin" > 40 <number> 5</number>40 <number>0</number> 41 41 </property> 42 <item >43 < widget class="QGroupBox" name="mGbInput">44 <property name=" title" >45 < string>&Keyboard</string>42 <item rowspan="2" row="0" column="0" > 43 <spacer> 44 <property name="orientation" > 45 <enum>Qt::Horizontal</enum> 46 46 </property> 47 <layout class="QVBoxLayout" > 48 <item> 49 <layout class="QHBoxLayout" > 50 <item> 51 <widget class="QLabel" name="mLbHostKey" > 52 <property name="text" > 53 <string>Host &Key</string> 54 </property> 55 <property name="buddy" > 56 <cstring>mHeHostKey</cstring> 57 </property> 58 </widget> 59 </item> 60 <item> 61 <widget class="QIHotKeyEdit" name="mHeHostKey" > 62 <property name="whatsThis" > 63 <string>Displays the key used as a Host Key in the VM window. Activate the entry field and press a new Host Key. Note that alphanumeric, cursor movement and editing keys cannot be used as a Host Key.</string> 64 </property> 65 </widget> 66 </item> 67 <item> 68 <spacer> 69 <property name="orientation" > 70 <enum>Qt::Horizontal</enum> 71 </property> 72 <property name="sizeHint" > 73 <size> 74 <width>0</width> 75 <height>20</height> 76 </size> 77 </property> 78 </spacer> 79 </item> 80 </layout> 81 </item> 82 <item> 83 <widget class="QCheckBox" name="mCbAutoGrab" > 84 <property name="whatsThis" > 85 <string>When checked, the keyboard is automatically captured every time the VM window is activated. When the keyboard is captured, all keystrokes (including system ones like Alt-Tab) are directed to the VM.</string> 86 </property> 87 <property name="text" > 88 <string>&Auto capture keyboard</string> 89 </property> 90 </widget> 91 </item> 92 </layout> 47 <property name="sizeType" > 48 <enum>QSizePolicy::Fixed</enum> 49 </property> 50 <property name="sizeHint" > 51 <size> 52 <width>40</width> 53 <height>20</height> 54 </size> 55 </property> 56 </spacer> 57 </item> 58 <item row="0" column="1" > 59 <widget class="QLabel" name="mLbHostKey" > 60 <property name="text" > 61 <string>Host &Key:</string> 62 </property> 63 <property name="buddy" > 64 <cstring>mHeHostKey</cstring> 65 </property> 93 66 </widget> 94 67 </item> 95 <item> 68 <item row="0" column="2" > 69 <widget class="QIHotKeyEdit" name="mHeHostKey" > 70 <property name="whatsThis" > 71 <string>Displays the key used as a Host Key in the VM window. Activate the entry field and press a new Host Key. Note that alphanumeric, cursor movement and editing keys cannot be used as a Host Key.</string> 72 </property> 73 </widget> 74 </item> 75 <item row="0" column="3" > 76 <spacer> 77 <property name="orientation" > 78 <enum>Qt::Horizontal</enum> 79 </property> 80 <property name="sizeHint" > 81 <size> 82 <width>0</width> 83 <height>20</height> 84 </size> 85 </property> 86 </spacer> 87 </item> 88 <item row="1" column="2" colspan="2" > 89 <widget class="QCheckBox" name="mCbAutoGrab" > 90 <property name="whatsThis" > 91 <string>When checked, the keyboard is automatically captured every time the VM window is activated. When the keyboard is captured, all keystrokes (including system ones like Alt-Tab) are directed to the VM.</string> 92 </property> 93 <property name="text" > 94 <string>&Auto capture keyboard</string> 95 </property> 96 </widget> 97 </item> 98 <item row="2" column="3" > 96 99 <spacer> 97 100 <property name="orientation" > … … 100 103 <property name="sizeHint" > 101 104 <size> 102 <width> 20</width>103 <height> 0</height>105 <width>121</width> 106 <height>271</height> 104 107 </size> 105 108 </property> -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxGLSettingsLanguage.ui
r10525 r10536 23 23 <x>0</x> 24 24 <y>0</y> 25 <width> 400</width>26 <height> 300</height>25 <width>346</width> 26 <height>282</height> 27 27 </rect> 28 28 </property> 29 <layout class="Q VBoxLayout" >29 <layout class="QGridLayout" > 30 30 <property name="leftMargin" > 31 31 <number>0</number> 32 32 </property> 33 33 <property name="topMargin" > 34 <number> 5</number>34 <number>0</number> 35 35 </property> 36 36 <property name="rightMargin" > … … 38 38 </property> 39 39 <property name="bottomMargin" > 40 <number>5</number> 41 </property> 42 <item> 43 <widget class="QGroupBox" name="mGbLanguage" > 44 <property name="title" > 45 <string>&Interface Language</string> 46 </property> 47 <layout class="QHBoxLayout" > 48 <item> 49 <widget class="QITreeWidget" name="mTwLanguage" > 50 <property name="sizePolicy" > 51 <sizepolicy vsizetype="Expanding" hsizetype="Fixed" > 52 <horstretch>0</horstretch> 53 <verstretch>0</verstretch> 54 </sizepolicy> 55 </property> 56 <property name="minimumSize" > 57 <size> 58 <width>0</width> 59 <height>150</height> 60 </size> 61 </property> 62 <property name="whatsThis" > 63 <string>Lists all available user interface languages. The effective language is written in <b>bold</b>. Select <i>Default</i> to reset to the system default language.</string> 64 </property> 65 <property name="rootIsDecorated" > 66 <bool>false</bool> 67 </property> 68 <column> 69 <property name="text" > 70 <string>Name</string> 71 </property> 72 </column> 73 <column> 74 <property name="text" > 75 <string>Id</string> 76 </property> 77 </column> 78 <column> 79 <property name="text" > 80 <string>Language</string> 81 </property> 82 </column> 83 <column> 84 <property name="text" > 85 <string>Author</string> 86 </property> 87 </column> 88 </widget> 89 </item> 90 <item> 91 <layout class="QVBoxLayout" > 92 <item> 93 <layout class="QGridLayout" > 94 <item row="0" column="0" > 95 <widget class="QLabel" name="mLbName" > 96 <property name="sizePolicy" > 97 <sizepolicy vsizetype="Preferred" hsizetype="Fixed" > 98 <horstretch>0</horstretch> 99 <verstretch>0</verstretch> 100 </sizepolicy> 101 </property> 102 <property name="text" > 103 <string>Language:</string> 104 </property> 105 <property name="alignment" > 106 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> 107 </property> 108 </widget> 109 </item> 110 <item row="0" column="1" > 111 <widget class="QLabel" name="mTxName" > 112 <property name="sizePolicy" > 113 <sizepolicy vsizetype="Preferred" hsizetype="MinimumExpanding" > 114 <horstretch>0</horstretch> 115 <verstretch>0</verstretch> 116 </sizepolicy> 117 </property> 118 <property name="alignment" > 119 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> 120 </property> 121 <property name="wordWrap" > 122 <bool>true</bool> 123 </property> 124 </widget> 125 </item> 126 <item row="1" column="0" > 127 <widget class="QLabel" name="mLbAuthor" > 128 <property name="sizePolicy" > 129 <sizepolicy vsizetype="Preferred" hsizetype="Fixed" > 130 <horstretch>0</horstretch> 131 <verstretch>0</verstretch> 132 </sizepolicy> 133 </property> 134 <property name="text" > 135 <string>Author(s):</string> 136 </property> 137 <property name="alignment" > 138 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> 139 </property> 140 </widget> 141 </item> 142 <item row="1" column="1" > 143 <widget class="QLabel" name="mTxAuthor" > 144 <property name="sizePolicy" > 145 <sizepolicy vsizetype="Preferred" hsizetype="MinimumExpanding" > 146 <horstretch>0</horstretch> 147 <verstretch>0</verstretch> 148 </sizepolicy> 149 </property> 150 <property name="alignment" > 151 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> 152 </property> 153 <property name="wordWrap" > 154 <bool>true</bool> 155 </property> 156 </widget> 157 </item> 158 </layout> 159 </item> 160 <item> 161 <spacer> 162 <property name="orientation" > 163 <enum>Qt::Vertical</enum> 164 </property> 165 <property name="sizeHint" > 166 <size> 167 <width>20</width> 168 <height>0</height> 169 </size> 170 </property> 171 </spacer> 172 </item> 173 </layout> 174 </item> 175 </layout> 40 <number>0</number> 41 </property> 42 <item row="0" column="0" > 43 <spacer> 44 <property name="orientation" > 45 <enum>Qt::Horizontal</enum> 46 </property> 47 <property name="sizeType" > 48 <enum>QSizePolicy::Fixed</enum> 49 </property> 50 <property name="sizeHint" > 51 <size> 52 <width>40</width> 53 <height>20</height> 54 </size> 55 </property> 56 </spacer> 57 </item> 58 <item row="0" column="1" colspan="2" > 59 <widget class="QLabel" name="mGbLanguage" > 60 <property name="text" > 61 <string>&Interface Language:</string> 62 </property> 63 <property name="buddy" > 64 <cstring>mTwLanguage</cstring> 65 </property> 176 66 </widget> 67 </item> 68 <item row="1" column="1" > 69 <spacer> 70 <property name="orientation" > 71 <enum>Qt::Horizontal</enum> 72 </property> 73 <property name="sizeType" > 74 <enum>QSizePolicy::Fixed</enum> 75 </property> 76 <property name="sizeHint" > 77 <size> 78 <width>20</width> 79 <height>20</height> 80 </size> 81 </property> 82 </spacer> 83 </item> 84 <item row="1" column="2" > 85 <widget class="QITreeWidget" name="mTwLanguage" > 86 <property name="sizePolicy" > 87 <sizepolicy vsizetype="Expanding" hsizetype="Fixed" > 88 <horstretch>0</horstretch> 89 <verstretch>0</verstretch> 90 </sizepolicy> 91 </property> 92 <property name="minimumSize" > 93 <size> 94 <width>0</width> 95 <height>150</height> 96 </size> 97 </property> 98 <property name="whatsThis" > 99 <string>Lists all available user interface languages. The effective language is written in <b>bold</b>. Select <i>Default</i> to reset to the system default language.</string> 100 </property> 101 <property name="rootIsDecorated" > 102 <bool>false</bool> 103 </property> 104 <column> 105 <property name="text" > 106 <string>Name</string> 107 </property> 108 </column> 109 <column> 110 <property name="text" > 111 <string>Id</string> 112 </property> 113 </column> 114 <column> 115 <property name="text" > 116 <string>Language</string> 117 </property> 118 </column> 119 <column> 120 <property name="text" > 121 <string>Author</string> 122 </property> 123 </column> 124 </widget> 125 </item> 126 <item row="2" column="2" > 127 <layout class="QGridLayout" > 128 <item row="0" column="0" > 129 <widget class="QLabel" name="mLbName" > 130 <property name="sizePolicy" > 131 <sizepolicy vsizetype="Preferred" hsizetype="Fixed" > 132 <horstretch>0</horstretch> 133 <verstretch>0</verstretch> 134 </sizepolicy> 135 </property> 136 <property name="text" > 137 <string>Language:</string> 138 </property> 139 <property name="alignment" > 140 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> 141 </property> 142 </widget> 143 </item> 144 <item row="0" column="1" > 145 <widget class="QLabel" name="mTxName" > 146 <property name="sizePolicy" > 147 <sizepolicy vsizetype="Preferred" hsizetype="MinimumExpanding" > 148 <horstretch>0</horstretch> 149 <verstretch>0</verstretch> 150 </sizepolicy> 151 </property> 152 <property name="minimumSize" > 153 <size> 154 <width>0</width> 155 <height>32</height> 156 </size> 157 </property> 158 <property name="alignment" > 159 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> 160 </property> 161 <property name="wordWrap" > 162 <bool>true</bool> 163 </property> 164 </widget> 165 </item> 166 <item row="1" column="0" > 167 <widget class="QLabel" name="mLbAuthor" > 168 <property name="sizePolicy" > 169 <sizepolicy vsizetype="Preferred" hsizetype="Fixed" > 170 <horstretch>0</horstretch> 171 <verstretch>0</verstretch> 172 </sizepolicy> 173 </property> 174 <property name="text" > 175 <string>Author(s):</string> 176 </property> 177 <property name="alignment" > 178 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> 179 </property> 180 </widget> 181 </item> 182 <item row="1" column="1" > 183 <widget class="QLabel" name="mTxAuthor" > 184 <property name="sizePolicy" > 185 <sizepolicy vsizetype="Preferred" hsizetype="MinimumExpanding" > 186 <horstretch>0</horstretch> 187 <verstretch>0</verstretch> 188 </sizepolicy> 189 </property> 190 <property name="alignment" > 191 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> 192 </property> 193 <property name="wordWrap" > 194 <bool>true</bool> 195 </property> 196 </widget> 197 </item> 198 </layout> 199 </item> 200 <item row="3" column="2" > 201 <spacer> 202 <property name="orientation" > 203 <enum>Qt::Vertical</enum> 204 </property> 205 <property name="sizeHint" > 206 <size> 207 <width>20</width> 208 <height>0</height> 209 </size> 210 </property> 211 </spacer> 177 212 </item> 178 213 </layout>
Note:
See TracChangeset
for help on using the changeset viewer.