Changeset 951 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- Feb 16, 2007 2:23:21 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18702
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h
r809 r951 31 31 #include <qobjectlist.h> 32 32 #include <qcolor.h> 33 #include <qdialog.h> 33 34 34 35 #ifdef VBOX_WITH_DEBUGGER_GUI … … 126 127 void devicesUnmountDVD(); 127 128 void devicesSwitchVrdp (bool); 129 void devicesToggleSFDialog (bool); 128 130 void devicesInstallGuestAdditions(); 129 131 … … 178 180 QAction *devicesUnmountDVDAction; 179 181 QAction *devicesSwitchVrdpAction; 182 QAction *devicesSFDialogAction; 180 183 QAction *devicesInstallGuestToolsAction; 181 184 … … 200 203 int devicesUSBMenuSeparatorId; 201 204 int devicesVRDPMenuSeparatorId; 205 int devicesSFMenuSeparatorId; 202 206 203 207 #ifdef VBOX_WITH_DEBUGGER_GUI … … 258 262 }; 259 263 264 265 class VBoxSharedFoldersSettings; 266 class VBoxSFDialog : public QDialog 267 { 268 Q_OBJECT 269 270 public: 271 272 VBoxSFDialog (QWidget*, CSession&, QAction*); 273 ~VBoxSFDialog(); 274 275 protected slots: 276 277 virtual void accept(); 278 virtual void suicide (bool); 279 280 protected: 281 282 void showEvent (QShowEvent*); 283 284 private: 285 286 VBoxSharedFoldersSettings *mSettings; 287 CSession &mSession; 288 QAction *mAction; 289 }; 290 291 260 292 #endif // __VBoxConsoleWnd_h__
Note:
See TracChangeset
for help on using the changeset viewer.