Changeset 14437 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Nov 20, 2008 9:37:06 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39691
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxGlobal.h
r14372 r14437 474 474 /* VBox enum to/from string/icon/color convertors */ 475 475 476 Q StringList vmGuestOSTypeDescriptions() const;477 QList <QPixmap> vmGuestOSTypeIcons (int aHorizonalMargin, int aVerticalMargin) const;478 CGuestOSType vmGuestOSType (int aIndex) const;479 int vmGuestOSTypeIndex (const QString &aId) const;480 QPixmap vmGuestOSTypeIcon (const QString &aId) const;481 QString vmGuestOSTypeDescription (const QString &a Id) const;476 QList <CGuestOSType> vmGuestOSFamilyList() const; 477 QList <CGuestOSType> vmGuestOSTypeList (const QString &aFamilyId) const; 478 QPixmap vmGuestOSTypeIcon (const QString &aTypeId) const; 479 CGuestOSType vmGuestOSType (const QString &aTypeId, 480 const QString &aFamilyId = QString::null) const; 481 QString vmGuestOSTypeDescription (const QString &aTypeId) const; 482 482 483 483 QPixmap toIcon (KMachineState s) const … … 986 986 QString verString; 987 987 988 QVector <CGuestOSType> vm_os_types; 989 QHash <QString, QPixmap *> vm_os_type_icons; 988 QList <QString> mFamilyIDs; 989 QList <QList <CGuestOSType> > mTypes; 990 QHash <QString, QPixmap *> mOsTypeIcons; 990 991 QVector <QColor *> vm_state_color; 991 992 -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxNewVMWzd.h
r13580 r14437 49 49 50 50 void accept(); 51 void showHardDiskManager(); 52 void showNewHardDiskWizard(); 51 void showMediaManager(); 52 void showNewHDWizard(); 53 void onOSTypeChanged(); 53 54 void slRAMValueChanged (int aValue); 54 55 void leRAMTextChanged (const QString &aTtext); 55 void cbOSActivated (int aItem);56 56 void revalidate (QIWidgetValidator *aWval); 57 57 void enableNext (const QIWidgetValidator *aWval);
Note:
See TracChangeset
for help on using the changeset viewer.