Changeset 10468 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Jul 10, 2008 1:16:45 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33141
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/include
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSettingsDialog.h
r10212 r10468 30 30 class VBoxWarnIconLabel; 31 31 class QIWidgetValidator; 32 class VBoxSettingsSelector; 32 33 class QTimer; 33 34 class QStackedWidget; … … 44 45 public: 45 46 46 VBoxSettingsDialog (QWidget *aParent );47 VBoxSettingsDialog (QWidget *aParent = NULL); 47 48 48 49 virtual void getFrom() = 0; … … 52 53 53 54 virtual void revalidate (QIWidgetValidator * /* aWval */) {} 54 void settingsGroupChanged (QTreeWidgetItem *aItem,55 QTreeWidgetItem *aPrev = 0);56 55 57 56 protected: 58 57 59 static QTreeWidgetItem* findItem (QTreeWidget *aView,60 const QString &aMatch,61 int aColumn);62 63 58 virtual void retranslateUi(); 64 59 65 QString pagePath (QWidget *aPage);66 60 void setWarning (const QString &aWarning); 67 61 62 VBoxSettingsSelector *mSelector; 68 63 QStackedWidget *mStack; 69 64 … … 73 68 void updateWhatsThis (bool aGotFocus = false); 74 69 void whatsThisCandidateDestroyed (QObject *aObj = 0); 70 71 void categoryChanged (int aId); 75 72 76 73 private: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSettingsDialogSpecific.h
r10212 r10468 40 40 public: 41 41 42 enum GLSettingsPageIds 43 { 44 GeneralId = 0, 45 InputId, 46 LanguageId, 47 USBId 48 }; 49 42 50 VBoxGLSettingsDlg (QWidget *aParent); 43 51 … … 64 72 65 73 public: 74 75 enum VMSettingsPageIds 76 { 77 GeneralId = 0, 78 HDId, 79 CDId, 80 FDId, 81 AudioId, 82 NetworkId, 83 SerialId, 84 ParallelId, 85 USBId, 86 SFId, 87 VRDPId 88 }; 66 89 67 90 VBoxVMSettingsDlg (QWidget *aParent, const CMachine &aMachine, -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSettingsPage.h
r10212 r10468 62 62 QWidget *mFirstWidget; 63 63 }; 64 64 65 #endif // __VBoxSettingsPage_h__ 65 66 -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSettingsUtils.h
r10167 r10468 26 26 #include <VBoxGlobal.h> 27 27 28 /* Qt includes */ 28 29 #ifdef Q_WS_WIN 29 30 #include <QDialog> … … 40 41 enum 41 42 { 42 /* mTwSelector column numbers */43 treeWidget_Category = 0,44 treeWidget_Id = 1,45 treeWidget_Link = 2,46 47 43 /* mTwUSBFilters column numbers */ 48 44 twUSBFilters_Name = 0,
Note:
See TracChangeset
for help on using the changeset viewer.