Changeset 7372 in vbox
- Timestamp:
- Mar 7, 2008 3:15:49 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxGlobal.h
r7369 r7372 747 747 void processAboutToShow(); 748 748 749 // void processActivated (int);750 751 749 private: 752 750 -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleWnd.cpp
r7369 r7372 1610 1610 QToolTip::add (autoresize_state, 1611 1611 tr ("Indicates whether the guest display auto-resize function is On " 1612 "(<img src= auto_resize_on_16px.png/>) or Off (<img src=auto_resize_off_16px.png/>). "1612 "(<img src=:/auto_resize_on_16px.png/>) or Off (<img src=:/auto_resize_off_16px.png/>). " 1613 1613 "Note that this function requires Guest Additions to be installed in the guest OS.")); 1614 1614 #endif 1615 1615 QToolTip::add (mouse_state, 1616 1616 tr ("Indicates whether the host mouse pointer is captured by the guest OS:<br>" 1617 "<nobr><img src= mouse_disabled_16px.png/> pointer is not captured</nobr><br>"1618 "<nobr><img src= mouse_16px.png/> pointer is captured</nobr><br>"1619 "<nobr><img src= mouse_seamless_16px.png/> mouse integration (MI) is On</nobr><br>"1620 "<nobr><img src= mouse_can_seamless_16px.png/> MI is Off, pointer is captured</nobr><br>"1621 "<nobr><img src= mouse_can_seamless_uncaptured_16px.png/> MI is Off, pointer is not captured</nobr><br>"1617 "<nobr><img src=:/mouse_disabled_16px.png/> pointer is not captured</nobr><br>" 1618 "<nobr><img src=:/mouse_16px.png/> pointer is captured</nobr><br>" 1619 "<nobr><img src=:/mouse_seamless_16px.png/> mouse integration (MI) is On</nobr><br>" 1620 "<nobr><img src=:/mouse_can_seamless_16px.png/> MI is Off, pointer is captured</nobr><br>" 1621 "<nobr><img src=:/mouse_can_seamless_uncaptured_16px.png/> MI is Off, pointer is not captured</nobr><br>" 1622 1622 "Note that the mouse integration feature requires Guest Additions to be installed in the guest OS.")); 1623 1623 QToolTip::add (hostkey_state, 1624 1624 tr ("Indicates whether the keyboard is captured by the guest OS " 1625 "(<img src= hostkey_captured_16px.png/>) or not (<img src=hostkey_16px.png/>)."));1625 "(<img src=:/hostkey_captured_16px.png/>) or not (<img src=:/hostkey_16px.png/>).")); 1626 1626 QToolTip::add (hostkey_name, 1627 1627 tr ("Shows the currently assigned Host key.<br>" … … 1863 1863 /* compose status icon tooltip */ 1864 1864 QString tip = tr ("Indicates whether the Remote Display (VRDP Server) " 1865 "is enabled (<img src= vrdp_16px.png/>) or not "1866 "(<img src= vrdp_disabled_16px.png/>)."1865 "is enabled (<img src=:/vrdp_16px.png/>) or not " 1866 "(<img src=:/vrdp_disabled_16px.png/>)." 1867 1867 ); 1868 1868 if (vrdpsrv.GetEnabled()) … … 3067 3067 devicesSFMenu->exec (e->globalPos()); 3068 3068 #else 3069 #warning port me 3070 // if (devicesSFDialogAction->isEnabled()) 3071 // devicesSFDialogAction->activate(); 3069 if (devicesSFDialogAction->isEnabled()) 3070 devicesSFDialogAction->trigger(); 3072 3071 #endif 3073 3072 } -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r7369 r7372 4263 4263 /* this menu works only with toggle action */ 4264 4264 Assert (aAction->isCheckable()); 4265 addAction(aAction); 4265 4266 connect (this, SIGNAL (aboutToShow()), 4266 4267 this, SLOT (processAboutToShow())); 4267 // connect (this, SIGNAL (activated (int)),4268 // this, SLOT (processActivated (int)));4269 4268 } 4270 4269 … … 4279 4278 mAction->setText (text); 4280 4279 } 4281 4282 #warning port me: no longer needed?4283 //void VBoxSwitchMenu::processActivated (int /*aIndex*/)4284 //{4285 // mAction->toggle();4286 //}4287 4280 4288 4281 #ifdef Q_WS_X11
Note:
See TracChangeset
for help on using the changeset viewer.