Changeset 281 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- Jan 24, 2007 4:42:35 PM (18 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h
r263 r281 202 202 devicesMountDVDMenuId, 203 203 devicesUSBMenuId, 204 devicesUSBMenuNoDevicesId, 204 205 #ifdef VBOX_WITH_DEBUGGER_GUI 205 206 dbgMenuId, -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxGlobal.h
r253 r281 278 278 } 279 279 280 QString toString (CEnums::USBDeviceState aState) const 281 { 282 AssertMsg (!USBDeviceStates [aState].isNull(), ("No text for %d", aState)); 283 return USBDeviceStates [aState]; 284 } 285 280 286 QPixmap snapshotIcon (bool online) const 281 287 { … … 283 289 } 284 290 285 / / details generators291 /* details generators */ 286 292 287 293 QString details (const CHardDisk &aHD, bool aPredict = false) const; 288 294 295 QString details (const CUSBDevice &aDevice) const; 296 QString toolTip (const CUSBDevice &aDevice) const; 297 289 298 QString prepareFileNameForHTML (const QString &fn) const; 290 299 291 300 QString detailsReport (const CMachine &m, bool isNewVM, bool withLinks) const; 292 301 293 / / VirtualBox helpers302 /* VirtualBox helpers */ 294 303 295 304 CSession openSession (const QUuid &id); … … 304 313 VBoxMediaList currentMediaList() const { return media_list; } 305 314 306 / / various helpers315 /* various helpers */ 307 316 308 317 void languageChange(); 309 318 310 void cleanup(); // made public for internal purposes 311 312 // public static stuff 319 /* made public for internal purposes */ 320 void cleanup(); 321 322 /* public static stuff */ 313 323 314 324 static QIconSet iconSet (const char *aNormal, … … 345 355 void mediaEnumerated (const VBoxMediaList &list); 346 356 347 / /signals emitted when the VirtualBox callback is called by the server348 //(not that currently these signals are emitted only when the application349 // is the in the VM selector mode)357 /* signals emitted when the VirtualBox callback is called by the server 358 * (not that currently these signals are emitted only when the application 359 * is the in the VM selector mode) */ 350 360 351 361 void machineStateChanged (const VBoxMachineStateChangeEvent &e); … … 414 424 QStringVector audioDriverTypes; 415 425 QStringVector networkAttachmentTypes; 426 QStringVector USBDeviceStates; 416 427 417 428 mutable bool detailReportTemplatesReady; … … 423 434 inline VBoxGlobal &vboxGlobal() { return VBoxGlobal::instance(); } 424 435 425 #endif / / __VBoxGlobal_h__426 436 #endif /* __VBoxGlobal_h__ */ 437 -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r237 r281 180 180 #endif 181 181 182 void cannotAttachUSBDevice (const CConsole &console, const QString &device); 183 void cannotDetachUSBDevice (const CConsole &console, const QString &device); 184 182 185 bool confirmReleaseImage (QWidget*, QString); 183 186
Note:
See TracChangeset
for help on using the changeset viewer.