Changeset 1121 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- Feb 28, 2007 6:39:26 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19018
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxVMListBox.h
r1068 r1121 116 116 void setMachine (const CMachine &aM); 117 117 118 QUuid id() const { return mId; }119 120 118 void recache(); 121 119 … … 125 123 int width (const QListBox *) const; 126 124 125 QUuid id() const { return mId; } 127 126 bool accessible() const { return mAccessible; } 128 127 const CVirtualBoxErrorInfo &accessError() const { return mAccessError; } 128 QString name() const { return mName; } 129 CEnums::MachineState state() const { return mState; } 130 CEnums::SessionState sessionState() const { return mSessionState; } 131 ULONG snapshotCount() const { return mSnapshotCount; } 132 133 bool canSwitchTo() const { return mWinId != (WId) ~0; } 134 bool switchTo(); 129 135 130 136 protected: … … 150 156 CEnums::SessionState mSessionState; 151 157 QString mOSType; 158 ULONG mSnapshotCount; 159 160 ULONG mPid; 161 WId mWinId; 152 162 }; 153 163
Note:
See TracChangeset
for help on using the changeset viewer.