Changeset 8902 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- May 16, 2008 3:32:30 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30941
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxConsoleView.h
r8888 r8902 99 99 void setIgnoreMainwndResize (bool aYes) { mIgnoreMainwndResize = aYes; } 100 100 101 QRect getDesktopGeometry();101 QRect desktopGeometry(); 102 102 103 103 /* todo: This are some support functions for the qt4 port. Maybe we get rid … … 215 215 private: 216 216 217 enum meDesktopGeo { 218 invalid = 0, fixed, automatic, any, unchanged 217 enum DesktopGeo 218 { 219 DesktopGeo_Invalid = 0, DesktopGeo_Fixed, 220 DesktopGeo_Automatic, DesktopGeo_Any, DesktopGeo_Unchanged 219 221 }; 220 void setDesktopGeometry(meDesktopGeo type, int width, int height); 221 void setDesktopGeoHint(int width, int height); 222 223 void setDesktopGeometry (DesktopGeo aGeo, int aWidth, int aHeight); 224 void setDesktopGeoHint (int aWidth, int aHeight); 222 225 void maybeRestrictMinimumSize(); 223 226 … … 305 308 CGImageRef mVirtualBoxLogo; 306 309 #endif 307 meDesktopGeo mDesktopGeoType;310 DesktopGeo mDesktopGeo; 308 311 QRect mDesktopGeometry; 309 312 QRect mLastSizeHint;
Note:
See TracChangeset
for help on using the changeset viewer.