Changeset 993 in vbox
- Timestamp:
- Feb 19, 2007 6:53:15 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18808
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h
r951 r993 136 136 void captureDVD (int id); 137 137 void switchUSB (int id); 138 void activateSFMenu(); 138 139 139 140 void showIndicatorContextMenu (QIStateIndicator *ind, QContextMenuEvent *e); … … 198 199 QPopupMenu *devicesMountFloppyMenu; 199 200 QPopupMenu *devicesMountDVDMenu; 201 QPopupMenu *devicesSharedFolders; 200 202 VBoxUSBMenu *devicesUSBMenu; 201 203 VBoxSwitchMenu *devicesVRDPMenu; … … 231 233 QIStateIndicator *autoresize_state; 232 234 QIStateIndicator *vrdp_state; 235 QIStateIndicator *sf_state; 233 236 QHBox *hostkey_hbox; 234 237 QLabel *hostkey_name; -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r952 r993 317 317 devicesMountFloppyMenu = new QPopupMenu (devicesMenu, "devicesMountFloppyMenu"); 318 318 devicesMountDVDMenu = new QPopupMenu (devicesMenu, "devicesMountDVDMenu"); 319 320 devicesSharedFolders = new QPopupMenu (devicesMenu, "devicesSharedFolders"); 321 devicesSharedFolders->insertItem (tr ("Shared Folders")); 319 322 devicesUSBMenu = new VBoxUSBMenu (devicesMenu); 320 323 devicesVRDPMenu = new VBoxSwitchMenu (devicesMenu, devicesSwitchVrdpAction, … … 405 408 vrdp_state->setStateIcon (0, QPixmap::fromMimeSource ("vrdp_disabled_16px.png")); 406 409 vrdp_state->setStateIcon (1, QPixmap::fromMimeSource ("vrdp_16px.png")); 407 410 /* shared folders state */ 411 sf_state = new QIStateIndicator (0, indicatorBox, "sf_state", WNoAutoErase); 412 sf_state->setStateIcon (0, QPixmap::fromMimeSource ("select_file_16px.png")); 413 sf_state->setStateIcon (1, QPixmap::fromMimeSource ("select_file_dis_16px.png")); 408 414 /* auto resize state */ 409 415 autoresize_state = new QIStateIndicator (1, indicatorBox, "autoresize_state", WNoAutoErase); … … 475 481 connect (devicesMountDVDMenu, SIGNAL(activated(int)), this, SLOT(captureDVD(int))); 476 482 connect (devicesUSBMenu, SIGNAL(activated(int)), this, SLOT(switchUSB(int))); 483 connect (devicesSharedFolders, SIGNAL(activated(int)), this, SLOT(activateSFMenu())); 477 484 478 485 connect (helpWebAction, SIGNAL (activated()), … … 490 497 this, SLOT (showIndicatorContextMenu (QIStateIndicator *, QContextMenuEvent *))); 491 498 connect (vrdp_state, SIGNAL (contextMenuRequested (QIStateIndicator *, QContextMenuEvent *)), 499 this, SLOT (showIndicatorContextMenu (QIStateIndicator *, QContextMenuEvent *))); 500 connect (sf_state, SIGNAL (contextMenuRequested (QIStateIndicator *, QContextMenuEvent *)), 492 501 this, SLOT (showIndicatorContextMenu (QIStateIndicator *, QContextMenuEvent *))); 493 502 connect (autoresize_state, SIGNAL (contextMenuRequested (QIStateIndicator *, QContextMenuEvent *)), … … 662 671 devicesSFDialogAction->setVisible (false); 663 672 devicesMenu->setItemVisible (devicesSFMenuSeparatorId, false); 664 //vrdp_state->setHidden (true);673 sf_state->setHidden (true); 665 674 } 666 675 … … 1253 1262 "capture state. It can also be used in combination with other keys " 1254 1263 "to quickly perform actions from the main menu." )); 1264 QToolTip::add (sf_state, 1265 tr ("Press right mouse button to open the dialog to operate on shared folders.")); 1255 1266 1256 1267 updateAppearanceOf (AllStuff); … … 2026 2037 } 2027 2038 2039 /** 2040 * Show Shared Folders list. 2041 */ 2042 void VBoxConsoleWnd::activateSFMenu() 2043 { 2044 if (!devicesSFDialogAction->isOn()) 2045 devicesSFDialogAction->setOn (true); 2046 } 2047 2028 2048 void VBoxConsoleWnd::showIndicatorContextMenu (QIStateIndicator *ind, QContextMenuEvent *e) 2029 2049 { … … 2068 2088 { 2069 2089 vmDisMouseIntegrMenu->exec (e->globalPos()); 2090 } 2091 else 2092 if (ind == sf_state) 2093 { 2094 devicesSharedFolders->exec (e->globalPos()); 2070 2095 } 2071 2096 }
Note:
See TracChangeset
for help on using the changeset viewer.