Changeset 14509 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Nov 24, 2008 10:49:09 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39797
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxDefs.h
r14056 r14509 118 118 #endif 119 119 ChangeGUILanguageEventType, 120 #if defined (VBOX_GUI_WITH_SYSTRAY) 121 ChangeGUITrayIconEventType, 122 #endif 120 123 AddVDMUrlsEventType 121 124 }; -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxGlobal.h
r14442 r14509 390 390 }; 391 391 392 #ifdef VBOX_GUI_WITH_SYSTRAY 393 class VBoxChangeGUITrayIconEvent : public QEvent 394 { 395 public: 396 VBoxChangeGUITrayIconEvent (bool aEnabled) 397 : QEvent ((QEvent::Type) VBoxDefs::ChangeGUITrayIconEventType) 398 , mEnabled (aEnabled) 399 {} 400 401 const bool mEnabled; 402 }; 403 #endif 404 392 405 class Process : public QProcess 393 406 { … … 915 928 916 929 /* signals emitted when the VirtualBox callback is called by the server 917 * (not that currently these signals are emitted only when the application930 * (note that currently these signals are emitted only when the application 918 931 * is the in the VM selector mode) */ 919 932 … … 923 936 void sessionStateChanged (const VBoxSessionStateChangeEvent &e); 924 937 void snapshotChanged (const VBoxSnapshotEvent &e); 938 void systrayIconChanged (const VBoxChangeGUITrayIconEvent& e); 925 939 926 940 void canShowRegDlg (bool aCanShow); -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSelectorWnd.h
r14478 r14509 132 132 void sessionStateChanged (const VBoxSessionStateChangeEvent &e); 133 133 void snapshotChanged (const VBoxSnapshotEvent &e); 134 #ifdef VBOX_GUI_WITH_SYSTRAY 135 void systrayIconChanged (const VBoxChangeGUITrayIconEvent &e); 136 #endif 134 137 135 138 private:
Note:
See TracChangeset
for help on using the changeset viewer.