- Timestamp:
- Apr 7, 2013, 1:30:00 AM (12 years ago)
- Location:
- Vago/trunk/Vago
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Vago/trunk/Vago/Vago.pro.user
r792 r793 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <!DOCTYPE QtCreatorProject> 3 <!-- Written by Qt Creator 2.4.1, 2013-04-07T00: 10:12. -->3 <!-- Written by Qt Creator 2.4.1, 2013-04-07T00:29:09. --> 4 4 <qtcreator> 5 5 <data> … … 53 53 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop</value> 54 54 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Target.DesktopTarget</value> 55 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration"> 0</value>55 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">1</value> 56 56 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value> 57 57 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value> -
Vago/trunk/Vago/mainwindow.cpp
r792 r793 118 118 ui->actionWindows->setChecked(false); 119 119 ui->actionMac_Windows_demo->setChecked(true); 120 resize(800,600); // Mac OS pcs should be able to render this resolution without any problem. It's also better 121 // because the components on mac use more space 120 122 #endif 121 123 -
Vago/trunk/Vago/packageWizard/packagepage2.ui
r792 r793 262 262 <size> 263 263 <width>20</width> 264 <height> 10</height>264 <height>40</height> 265 265 </size> 266 266 </property> -
Vago/trunk/Vago/packageWizard/packagewizard.cpp
r789 r793 15 15 16 16 //Center and resize QWizard (http://www.thedazzlersinc.com/source/2012/06/04/qt-center-window-in-screen/) 17 #ifdef Q_WS_WIN 17 18 myWizard.resize(640,480); 19 #else 20 myWizard.resize(800,600); // Mac OS pcs should be able to render this resolution without any problem. It's also better 21 // because the components on mac use more space 22 #endif 18 23 QRect position = myWizard.frameGeometry(); 19 24 position.moveCenter(QDesktopWidget().availableGeometry().center()); -
Vago/trunk/Vago/soundWizard/soundpage4.ui
r792 r793 143 143 <string>Audio Channels</string> 144 144 </property> 145 <layout class="Q VBoxLayout" name="verticalLayout_2">145 <layout class="QHBoxLayout" name="horizontalLayout"> 146 146 <item> 147 147 <widget class="QRadioButton" name="rbStereo22"> -
Vago/trunk/Vago/soundWizard/soundwizard.cpp
r789 r793 22 22 23 23 //Center and resize QWizard (http://www.thedazzlersinc.com/source/2012/06/04/qt-center-window-in-screen/) 24 #ifdef Q_WS_WIN 24 25 this->myWizard->resize(640,480); 26 #else 27 this->myWizard->resize(800,600); // Mac OS pcs should be able to render this resolution without any problem. It's also better 28 // because the components on mac use more space 29 #endif 25 30 QRect position = this->myWizard->frameGeometry(); 26 31 position.moveCenter(QDesktopWidget().availableGeometry().center());
Note:
See TracChangeset
for help on using the changeset viewer.