Changeset 2736 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- May 21, 2007 2:41:11 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21337
- Location:
- trunk/src/VBox/Frontends/VirtualBox/include
- Files:
-
- 4 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; -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h
r2700 r2736 249 249 CSession csession; 250 250 251 bool mIsAutoresizeEnabled;252 253 251 // widgets 254 252 VBoxConsoleView *console; -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxDefs.h
r2700 r2736 129 129 MachineStateChangeEventType, 130 130 AdditionsStateChangeEventType, 131 AutoResizeEventType,132 131 MachineDataChangeEventType, 133 132 MachineRegisteredEventType, -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r2671 r2736 200 200 bool confirmReleaseImage (QWidget*, QString); 201 201 202 void warnAboutOldAdditions (QWidget*, const QString &); 203 void warnAboutNewAdditions (QWidget*, const QString &); 204 202 205 bool remindAboutInputCapture(); 203 206 bool remindAboutAutoCapture();
Note:
See TracChangeset
for help on using the changeset viewer.