Changeset 14355 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Nov 19, 2008 4:03:59 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSelectorWnd.h
r14296 r14355 149 149 #ifdef VBOX_GUI_WITH_SYSTRAY 150 150 QAction *mTrayShowWindowAction; 151 QAction *mTrayExitAction;152 151 #endif 153 152 -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMListView.h
r14296 r14355 33 33 class VBoxSelectorWnd; 34 34 35 class VBoxVMItem : public QObject 36 { 37 Q_OBJECT; 38 39 public: 40 41 enum Action 42 { 43 Config = 0, 44 Delete, 45 Start, 46 Discard, 47 Pause, 48 Refresh, 49 ShowLogs 50 }; 51 52 public: 53 54 VBoxVMItem (const CMachine &aMachine, VBoxSelectorWnd *pParent); 35 class VBoxVMItem 36 { 37 public: 38 39 VBoxVMItem (const CMachine &aMachine); 55 40 virtual ~VBoxVMItem(); 56 41 … … 70 55 71 56 bool accessible() const { return mAccessible; } 72 bool running() const { return (sessionState() != KSessionState_Closed); }73 57 const CVirtualBoxErrorInfo &accessError() const { return mAccessError; } 74 58 KMachineState state() const { return mState; } … … 83 67 84 68 /* Private member vars */ 85 VBoxSelectorWnd *mParent;86 69 CMachine mMachine; 87 70
Note:
See TracChangeset
for help on using the changeset viewer.