Changeset 3674 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- Jul 17, 2007 4:12:36 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22956
- Location:
- trunk/src/VBox/Frontends/VirtualBox/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleView.h
r2981 r3674 95 95 void fixModifierState (LONG *codes, uint *count); 96 96 97 bool isInSeamlessMode(); 98 97 99 signals: 98 100 … … 100 102 void mouseStateChanged (int state); 101 103 void machineStateChanged (CEnums::MachineState state); 102 void additionsStateChanged (const QString &, bool );104 void additionsStateChanged (const QString &, bool, bool); 103 105 104 106 protected: -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h
r3490 r3674 73 73 bool isTrueFullscreen() const { return full_screen; } 74 74 75 bool isTrueSeamless() const { return mIsInSeamlessMode; } 76 75 77 void setMouseIntegrationLocked (bool); 76 78 … … 120 122 121 123 void vmFullscreen (bool on); 124 void vmSeamless (bool on); 122 125 void vmAutoresizeGuest (bool on); 123 126 void vmAdjustWindow(); … … 162 165 void updateMouseState (int state); 163 166 164 void updateAdditionsState (const QString&, bool );167 void updateAdditionsState (const QString&, bool, bool); 165 168 166 169 void tryClose(); … … 177 180 // VM actions 178 181 QAction *vmFullscreenAction; 182 QAction *vmSeamlessAction; 179 183 QAction *vmAutoresizeGuestAction; 180 184 QAction *vmAdjustWindowAction; … … 279 283 // variables for dealing with true fullscreen 280 284 bool full_screen : 1; 285 bool mIsInSeamlessMode : 1; 281 286 int normal_wflags; 282 287 bool was_max : 1; -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxDefs.h
r3483 r3674 125 125 ResizeEventType = QEvent::User, 126 126 RepaintEventType, 127 SetRegionEventType, 127 128 MouseCapabilityEventType, 128 129 MousePointerChangeEventType, … … 143 144 #if defined (Q_WS_MAC) 144 145 ShowWindowEventType, 145 #endif 146 #endif 146 147 }; 147 148 }; -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxFrameBuffer.h
r3614 r3674 104 104 private: 105 105 int ex, ey, ew, eh; 106 }; 107 108 /** 109 * Frame buffer set region event. 110 */ 111 class VBoxSetRegionEvent : public QEvent 112 { 113 public: 114 VBoxSetRegionEvent (const QRegion &aReg) 115 : QEvent ((QEvent::Type) VBoxDefs::SetRegionEventType) 116 , mReg (aReg) {} 117 QRegion region() { return mReg; } 118 private: 119 QRegion mReg; 106 120 }; 107 121
Note:
See TracChangeset
for help on using the changeset viewer.