Changeset 9729 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Jun 16, 2008 3:18:28 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/include
- Files:
-
- 35 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/QIAbstractWizard.h
r9716 r9729 42 42 class QITextEdit : public QTextEdit 43 43 { 44 Q_OBJECT 44 Q_OBJECT; 45 45 46 46 public: … … 79 79 class QIAbstractWizard : public QDialog 80 80 { 81 Q_OBJECT 81 Q_OBJECT; 82 82 83 83 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/QILabel.h
r9716 r9729 35 35 class QILabel: public QWidget 36 36 { 37 Q_OBJECT 37 Q_OBJECT; 38 38 39 39 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/QILabel_p.h
r9716 r9729 33 33 class QILabelPrivate: public QLabel 34 34 { 35 Q_OBJECT 35 Q_OBJECT; 36 36 37 37 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/QIListView.h
r9716 r9729 30 30 class QIListView: public QListView 31 31 { 32 Q_OBJECT 32 Q_OBJECT; 33 33 34 34 public: … … 37 37 protected slots: 38 38 void focusChanged (QWidget *aOld, QWidget *aNow); 39 }; 39 }; 40 40 41 41 class QIItemDelegate: public QItemDelegate … … 46 46 47 47 protected: 48 void drawBackground (QPainter *aPainter, const QStyleOptionViewItem &aOption, 48 void drawBackground (QPainter *aPainter, const QStyleOptionViewItem &aOption, 49 49 const QModelIndex &aIndex) const; 50 50 }; -
trunk/src/VBox/Frontends/VirtualBox4/include/QIMainDialog.h
r9716 r9729 34 34 class QIMainDialog: public QMainWindow 35 35 { 36 Q_OBJECT 36 Q_OBJECT; 37 37 38 38 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/QIStateIndicator.h
r9716 r9729 30 30 class QIStateIndicator : public QFrame 31 31 { 32 Q_OBJECT 32 Q_OBJECT; 33 33 34 34 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/QIStatusBar.h
r9716 r9729 31 31 class QIStatusBar : public QStatusBar 32 32 { 33 Q_OBJECT 33 Q_OBJECT; 34 34 35 35 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/QITreeWidget.h
r9716 r9729 29 29 class QITreeWidget: public QTreeWidget 30 30 { 31 Q_OBJECT 31 Q_OBJECT; 32 32 33 33 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxAboutDlg.h
r9716 r9729 30 30 public Ui::VBoxAboutDlg 31 31 { 32 Q_OBJECT 32 Q_OBJECT; 33 33 34 34 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxCloseVMDlg.h
r9716 r9729 31 31 public Ui::VBoxCloseVMDlg 32 32 { 33 Q_OBJECT 33 Q_OBJECT; 34 34 35 35 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxConsoleWnd.h
r9716 r9729 57 57 class VBoxConsoleWnd : public QIWithRetranslateUI2<QMainWindow> 58 58 { 59 Q_OBJECT 59 Q_OBJECT; 60 60 61 61 public: … … 349 349 class VBoxSFDialog : public QIWithRetranslateUI<QDialog> 350 350 { 351 Q_OBJECT 351 Q_OBJECT; 352 352 353 353 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxDiskImageManagerDlg.h
r9716 r9729 39 39 public Ui::VBoxDiskImageManagerDlg 40 40 { 41 Q_OBJECT 41 Q_OBJECT; 42 42 43 43 enum TabIndex { HDTab = 0, … … 129 129 130 130 void makeWarningMark (DiskImageItem *aItem, VBoxMedia::Status aStatus, VBoxDefs::DiskType aType) const; 131 131 132 132 static QString DVDImageUsage (const QUuid &aId, QString &aSnapshotUsage); 133 133 static QString FloppyImageUsage (const QUuid &aId, QString &aSnapshotUsage); -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxDownloaderWgt.h
r9716 r9729 49 49 class VBoxDownloaderWgt : public QIWithRetranslateUI<QWidget> 50 50 { 51 Q_OBJECT 51 Q_OBJECT; 52 52 53 53 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxNewHDWzd.h
r9716 r9729 33 33 public Ui::VBoxNewHDWzd 34 34 { 35 Q_OBJECT 35 Q_OBJECT; 36 36 37 37 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxNewVMWzd.h
r9716 r9729 33 33 public Ui::VBoxNewVMWzd 34 34 { 35 Q_OBJECT 35 Q_OBJECT; 36 36 37 37 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxRegistrationDlg.h
r9716 r9729 38 38 public Ui::VBoxRegistrationDlg 39 39 { 40 Q_OBJECT 40 Q_OBJECT; 41 41 42 42 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSelectorWnd.h
r9716 r9729 47 47 class VBoxSelectorWnd: public QIWithRetranslateUI2<QMainWindow> 48 48 { 49 Q_OBJECT 49 Q_OBJECT; 50 50 51 51 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSnapshotDetailsDlg.h
r9716 r9729 31 31 public Ui::VBoxSnapshotDetailsDlg 32 32 { 33 Q_OBJECT 33 Q_OBJECT; 34 34 35 35 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSnapshotsWgt.h
r9716 r9729 38 38 public Ui::VBoxSnapshotsWgt 39 39 { 40 Q_OBJECT 40 Q_OBJECT; 41 41 42 42 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxTakeSnapshotDlg.h
r9716 r9729 30 30 public Ui::VBoxTakeSnapshotDlg 31 31 { 32 Q_OBJECT 32 Q_OBJECT; 33 33 34 34 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMFirstRunWzd.h
r9716 r9729 33 33 public Ui::VBoxVMFirstRunWzd 34 34 { 35 Q_OBJECT 35 Q_OBJECT; 36 36 37 37 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMInformationDlg.h
r9716 r9729 35 35 public Ui::VBoxVMInformationDlg 36 36 { 37 Q_OBJECT 37 Q_OBJECT; 38 38 39 39 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMListView.h
r9716 r9729 42 42 QIcon osIcon() const { return mAccessible ? vboxGlobal().vmGuestOSTypeIcon (mOSTypeId) :QPixmap (":/os_unknown.png"); } 43 43 QUuid id() const { return mId; } 44 44 45 45 QString sessionStateName() const; 46 46 QIcon sessionStateIcon() const { return mAccessible ? vboxGlobal().toIcon (mState) : QPixmap (":/state_aborted_16px.png"); } … … 89 89 class VBoxVMModel: public QAbstractListModel 90 90 { 91 Q_OBJECT 91 Q_OBJECT; 92 92 93 93 public: … … 138 138 class VBoxVMListView: public QIListView 139 139 { 140 Q_OBJECT 140 Q_OBJECT; 141 141 142 142 public: … … 163 163 void mousePressEvent (QMouseEvent *aEvent); 164 164 bool selectCurrent(); 165 }; 165 }; 166 166 167 167 class VBoxVMItemPainter: public QIItemDelegate … … 181 181 inline QIcon::Mode iconMode (QStyle::State aState) const 182 182 { 183 if (!(aState & QStyle::State_Enabled)) 183 if (!(aState & QStyle::State_Enabled)) 184 184 return QIcon::Disabled; 185 if (aState & QStyle::State_Selected) 185 if (aState & QStyle::State_Selected) 186 186 return QIcon::Selected; 187 187 return QIcon::Normal; -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsAudio.h
r9716 r9729 29 29 class VBoxVMSettingsAudio : public QWidget, public Ui::VBoxVMSettingsAudio 30 30 { 31 Q_OBJECT 31 Q_OBJECT; 32 32 33 33 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsCD.h
r9716 r9729 30 30 class QIWidgetValidator; 31 31 32 class VBoxVMSettingsCD : public QWidget, 32 class VBoxVMSettingsCD : public QWidget, 33 33 public Ui::VBoxVMSettingsCD 34 34 { 35 Q_OBJECT 35 Q_OBJECT; 36 36 37 37 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsFD.h
r9716 r9729 30 30 class QIWidgetValidator; 31 31 32 class VBoxVMSettingsFD : public QWidget, 32 class VBoxVMSettingsFD : public QWidget, 33 33 public Ui::VBoxVMSettingsFD 34 34 { 35 Q_OBJECT 35 Q_OBJECT; 36 36 37 37 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsGeneral.h
r9716 r9729 30 30 class QIWidgetValidator; 31 31 32 class VBoxVMSettingsGeneral : public QWidget, 32 class VBoxVMSettingsGeneral : public QWidget, 33 33 public Ui::VBoxVMSettingsGeneral 34 34 { 35 Q_OBJECT 35 Q_OBJECT; 36 36 37 37 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsHD.h
r9716 r9729 135 135 class HDItemsModel : public QAbstractTableModel 136 136 { 137 Q_OBJECT 137 Q_OBJECT; 138 138 139 139 public: … … 179 179 class HDSltEditor : public QComboBox 180 180 { 181 Q_OBJECT 181 Q_OBJECT; 182 182 Q_PROPERTY (QVariant slot READ slot WRITE setSlot USER true); 183 183 … … 207 207 class HDVdiEditor : public VBoxMediaComboBox 208 208 { 209 Q_OBJECT 209 Q_OBJECT; 210 210 Q_PROPERTY (QVariant vdi READ vdi WRITE setVdi USER true); 211 211 … … 239 239 class HDSlotUniquizer : public QObject 240 240 { 241 Q_OBJECT 241 Q_OBJECT; 242 242 243 243 public: … … 274 274 275 275 /** QWidget class reimplementation used as hard disks settings */ 276 class VBoxVMSettingsHD : public QWidget, 276 class VBoxVMSettingsHD : public QWidget, 277 277 public Ui::VBoxVMSettingsHD 278 278 { 279 Q_OBJECT 279 Q_OBJECT; 280 280 281 281 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsNetwork.h
r9716 r9729 30 30 class QIWidgetValidator; 31 31 32 class VBoxVMSettingsNetwork : public QWidget, 32 class VBoxVMSettingsNetwork : public QWidget, 33 33 public Ui::VBoxVMSettingsNetwork 34 34 { 35 Q_OBJECT 35 Q_OBJECT; 36 36 37 37 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsParallel.h
r9716 r9729 29 29 class VBoxVMSettingsDlg; 30 30 31 class VBoxVMSettingsParallel : public QWidget, 31 class VBoxVMSettingsParallel : public QWidget, 32 32 public Ui::VBoxVMSettingsParallel 33 33 { 34 Q_OBJECT 34 Q_OBJECT; 35 35 36 36 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsSF.h
r9716 r9729 51 51 public Ui::VBoxVMSettingsSF 52 52 { 53 Q_OBJECT 53 Q_OBJECT; 54 54 55 55 public: … … 124 124 class VBoxAddSFDialog : public QIWithRetranslateUI<QDialog> 125 125 { 126 Q_OBJECT 126 Q_OBJECT; 127 127 128 128 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsSerial.h
r9716 r9729 29 29 class VBoxVMSettingsDlg; 30 30 31 class VBoxVMSettingsSerial : public QWidget, 31 class VBoxVMSettingsSerial : public QWidget, 32 32 public Ui::VBoxVMSettingsSerial 33 33 { 34 Q_OBJECT 34 Q_OBJECT; 35 35 36 36 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsUSB.h
r9716 r9729 31 31 class VBoxUSBMenu; 32 32 33 class VBoxVMSettingsUSB : public QWidget, 33 class VBoxVMSettingsUSB : public QWidget, 34 34 public Ui::VBoxVMSettingsUSB 35 35 { 36 Q_OBJECT 36 Q_OBJECT; 37 37 38 38 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsUtils.h
r9716 r9729 54 54 class BootItemsTable : public QTreeWidget 55 55 { 56 Q_OBJECT 56 Q_OBJECT; 57 57 58 58 public: … … 201 201 class QITableView : public QTableView 202 202 { 203 Q_OBJECT 203 Q_OBJECT; 204 204 205 205 public: -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsVRDP.h
r9716 r9729 30 30 class QIWidgetValidator; 31 31 32 class VBoxVMSettingsVRDP : public QWidget, 32 class VBoxVMSettingsVRDP : public QWidget, 33 33 public Ui::VBoxVMSettingsVRDP 34 34 { 35 Q_OBJECT 35 Q_OBJECT; 36 36 37 37 public:
Note:
See TracChangeset
for help on using the changeset viewer.