Changeset 15804 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Jan 5, 2009 2:55:35 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/include
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxConsoleView.h
r15652 r15804 45 45 class MousePointerChangeEvent; 46 46 class VBoxFrameBuffer; 47 class VBoxDockIconPreview; 47 48 48 49 class QPainter; … … 128 129 #if defined(Q_WS_MAC) 129 130 void updateDockIcon(); 131 void updateDockOverlay(); 130 132 void setDockIconEnabled (bool aOn) { mDockIconEnabled = aOn; }; 131 133 void setMouseCoalescingEnabled (bool aOn); … … 323 325 QPixmap mPausedShot; 324 326 #if defined(Q_WS_MAC) 325 CGImageRef mVirtualBoxLogo;327 VBoxDockIconPreview *mDockIconPreview; 326 328 bool mDockIconEnabled; 327 329 #endif -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxConsoleWnd.h
r15469 r15804 111 111 void clearMask(); 112 112 113 #if defined (Q_WS_MAC) 114 CGImageRef dockImageState () const; 115 #endif 113 KMachineState machineState() const { return machine_state; } 116 114 117 115 public slots: … … 372 370 QRect mNormalGeometry; 373 371 Qt::WindowFlags mSavedFlags; 374 /* Dock images */375 CGImageRef dockImgStatePaused;376 CGImageRef dockImgStateSaving;377 CGImageRef dockImgStateRestoring;378 CGImageRef dockImgBack100x75;379 CGImageRef dockImgOS;380 372 /* For the fade effect if the the window goes fullscreen */ 381 373 CGDisplayFadeReservationToken mFadeToken; -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxUtils.h
r15642 r15804 209 209 QPixmap darwinCreateDragPixmap (const QPixmap& aPixmap, const QString &aText); 210 210 211 /* Special routines for the dock handling */212 CGImageRef darwinCreateDockBadge (const char *aSource);213 void darwinUpdateDockPreview (QWidget *aMainWindow, CGImageRef aVMImage, CGImageRef aOverlayImage, CGImageRef aStateImage = NULL);214 void darwinUpdateDockPreview (QWidget *aMainWindow, VBoxFrameBuffer *aFrameBuffer, CGImageRef aOverlayImage, CGImageRef aStateImage = NULL);215 216 211 /* Icons in the menu of an mac application are unusual. */ 217 212 void darwinDisableIconsInMenus();
Note:
See TracChangeset
for help on using the changeset viewer.