Changeset 1012 in vbox
- Timestamp:
- Feb 21, 2007 2:43:23 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18862
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r993 r1012 319 319 320 320 devicesSharedFolders = new QPopupMenu (devicesMenu, "devicesSharedFolders"); 321 devicesSharedFolders->insertItem (tr (" Shared Folders"));321 devicesSharedFolders->insertItem (tr ("Open")); 322 322 devicesUSBMenu = new VBoxUSBMenu (devicesMenu); 323 323 devicesVRDPMenu = new VBoxSwitchMenu (devicesMenu, devicesSwitchVrdpAction, … … 401 401 usb_light->setStateIcon (CEnums::DeviceWriting, QPixmap::fromMimeSource ("usb_write_16px.png")); 402 402 usb_light->setStateIcon (CEnums::InvalidActivity, QPixmap::fromMimeSource ("usb_disabled_16px.png")); 403 /// @todo add proper read/write states for shared folders when it is implemented 404 sf_state = new QIStateIndicator (0, indicatorBox, "sf_state", WNoAutoErase); 405 sf_state->setStateIcon (0, QPixmap::fromMimeSource ("select_file_16px.png")); 406 sf_state->setStateIcon (1, QPixmap::fromMimeSource ("select_file_dis_16px.png")); 403 407 404 408 (new QFrame (indicatorBox))->setFrameStyle (QFrame::VLine | QFrame::Sunken); … … 408 412 vrdp_state->setStateIcon (0, QPixmap::fromMimeSource ("vrdp_disabled_16px.png")); 409 413 vrdp_state->setStateIcon (1, QPixmap::fromMimeSource ("vrdp_16px.png")); 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"));414 414 /* auto resize state */ 415 415 autoresize_state = new QIStateIndicator (1, indicatorBox, "autoresize_state", WNoAutoErase); … … 1263 1263 "to quickly perform actions from the main menu." )); 1264 1264 QToolTip::add (sf_state, 1265 tr ("Press right mouse button to open the dialog to operate on shared folders.")); 1265 /// @todo add later, when activity is actually reported 1266 // tr ("Indicates the activity of shared folders.")); 1267 tr ("Provides quick access to shared folders (by a right mouse button click). " 1268 "Note that the shared folders feature requires Guest Additions to be installed in the guest OS.")); 1266 1269 1267 1270 updateAppearanceOf (AllStuff);
Note:
See TracChangeset
for help on using the changeset viewer.