Changeset 2736 in vbox for trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleView.h
- Timestamp:
- May 21, 2007 2:41:11 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleView.h
r2700 r2736 49 49 class QMenuData; 50 50 51 /** Auto-resize event.52 * Useful for posting into events queue to be processed just after all53 * QEvent::Resize & QEvent::WindowStateChange events currently posted.54 * This is necessary due to these two events - QEvent::Resize &55 * QEvent::WindowStateChange are processed in different sequence56 * under Win32 and X11. */57 class AutoResizeEvent : public QEvent58 {59 public:60 AutoResizeEvent () :61 QEvent ((QEvent::Type) VBoxDefs::AutoResizeEventType) {}62 };63 64 51 class VBoxConsoleView : public QScrollView 65 52 { … … 183 170 static void dimImage (QImage &img); 184 171 185 void performAutoResize();186 187 172 private slots: 173 174 void exitFullScreen(); 188 175 189 176 void doResizeHint(); … … 218 205 219 206 bool ignore_mainwnd_resize : 1; 220 bool autoresize_guest : 1; 207 bool mAutoresizeGuest : 1; 208 209 bool mIsAdditionsActive; 221 210 222 211 bool mfNumLock : 1;
Note:
See TracChangeset
for help on using the changeset viewer.