Changeset 17340 in vbox for trunk/src/VBox
- Timestamp:
- Mar 4, 2009 12:11:33 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43720
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r17201 r17340 406 406 VirtualBox_SOURCES.darwin += \ 407 407 src/darwin/VBoxCocoaApplication.m \ 408 src/darwin/VBoxUtils-darwin-cocoa.m 408 src/darwin/VBoxUtils-darwin-cocoa.m \ 409 src/darwin/VBoxDockIconPreview-cocoa.m 409 410 else 410 411 VirtualBox_SOURCES.darwin += \ -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxDockIconPreview.h
r17175 r17340 24 24 #define ___VBoxDockIconPreview_h___ 25 25 26 #include <QObject> /* drag in QT_MAC_USE_COCOA */26 #include "VBoxUtils-darwin.h" 27 27 28 #ifdef QT_MAC_USE_COCOA 29 # include <ApplicationServices/ApplicationServices.h> 30 /** @todo include chocolatey headers... */ 31 #else 32 # include <Carbon/Carbon.h> 33 #endif 28 __BEGIN_DECLS 29 void darwinCreateVBoxDockIconTileView (void); 30 void darwinDestroyVBoxDockIconTileView (void); 34 31 32 CGContextRef darwinBeginCGContextForApplicationDockTile (void); 33 void darwinEndCGContextForApplicationDockTile (CGContextRef aContext); 34 35 void darwinOverlayApplicationDockTileImage (CGImageRef pImage); 36 void darwinRestoreApplicationDockTileImage (void); 37 __END_DECLS 38 39 #ifndef __OBJC__ 35 40 class VBoxConsoleWnd; 36 41 class VBoxFrameBuffer; … … 45 50 46 51 void updateDockOverlay(); 47 //#ifndef QT_MAC_USE_COCOA48 52 void updateDockPreview (CGImageRef aVMImage); 49 //#endif50 53 void updateDockPreview (VBoxFrameBuffer *aFrameBuffer); 51 54 52 55 private: 53 //#ifdef QT_MAC_USE_COCOA54 /** @todo Carbon -> Cocoa */55 //#else56 56 inline void initPreviewImages(); 57 57 inline void initOverlayData (int aBitmapByteCount); … … 60 60 61 61 /* Flipping is necessary cause the drawing context in Carbon is flipped by 180 degree */ 62 inline CGRect flipRect (CGRect aRect) const { aRect.origin.y = mDockIconRect.size.height - aRect.origin.y - aRect.size.height; return aRect; } 63 inline CGRect centerRect (CGRect aRect) const { return centerRectTo (aRect, mDockIconRect); } 64 inline CGRect centerRectTo (CGRect aRect, const CGRect& aToRect) const 65 { 66 aRect.origin.x = aToRect.origin.x + (aToRect.size.width - aRect.size.width) / 2.0; 67 aRect.origin.y = aToRect.origin.y + (aToRect.size.height - aRect.size.height) / 2.0; 68 return aRect; 69 } 70 //#endif /* !QT_MAC_USE_COCOA */ 62 inline CGRect flipRect (CGRect aRect) const { return ::darwinFlipCGRect (aRect, mDockIconRect); } 63 inline CGRect centerRect (CGRect aRect) const { return ::darwinCenterRectTo (aRect, mDockIconRect); } 64 inline CGRect centerRectTo (CGRect aRect, const CGRect& aToRect) const { return ::darwinCenterRectTo (aRect, aToRect); } 65 66 void updateDockPreviewImpl (CGContextRef aContext, CGImageRef aVMImage); 71 67 72 68 /* Private member vars */ 73 69 VBoxConsoleWnd *mMainWnd; 74 //#ifdef QT_MAC_USE_COCOA75 /** @todo Carbon -> Cocoa */76 //#else77 70 const CGRect mDockIconRect; 78 71 … … 89 82 CGRect mUpdateRect; 90 83 CGRect mMonitorRect; 91 //#endif92 84 }; 85 #endif /* !__OBJC__ */ 93 86 94 87 #endif /* !___VBoxDockIconPreview_h___ */ -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxUtils-darwin.h
r17201 r17340 40 40 #else 41 41 # include <iprt/cdefs.h> /* for __BEGIN_DECLS/__END_DECLS & stuff */ 42 42 43 # include <qglobal.h> /* for QT_MAC_USE_COCOA */ 44 # include <QRect> 43 45 44 46 # include <ApplicationServices/ApplicationServices.h> 47 45 48 class QWidget; 46 49 class QToolBar; 47 50 class QPixmap; 48 class Q Rect;51 class QImage; 49 52 50 53 # ifdef QT_MAC_USE_COCOA … … 89 92 void darwinWindowInvalidateShadowImpl (NativeWindowRef aWindow); 90 93 91 92 94 __END_DECLS 93 95 … … 157 159 158 160 159 160 /******************************************************************************** 161 * 162 * Old carbon stuff. Have to be converted soon! 163 * 164 ********************************************************************************/ 165 166 #include <QWidget> 167 class QImage; 168 169 /* Converting stuff */ 161 /******************************************************************************** 162 * 163 * Graphics stuff (Qt Wrapper) 164 * 165 ********************************************************************************/ 166 /** 167 * Returns a reference to the CGContext of the QWidget. 168 * 169 * @returns CGContextRef of the QWidget. 170 * @param aWidget Pointer to the QWidget 171 */ 172 CGContextRef darwinToCGContextRef (QWidget *aWidget); 173 170 174 CGImageRef darwinToCGImageRef (const QImage *aImage); 171 175 CGImageRef darwinToCGImageRef (const QPixmap *aPixmap); 172 176 CGImageRef darwinToCGImageRef (const char *aSource); 173 177 174 /**175 * Returns a reference to the CGContext of the QWidget.176 *177 * @returns CGContextRef of the QWidget.178 * @param aWidget Pointer to the QWidget179 */180 DECLINLINE(CGContextRef) darwinToCGContextRef (QWidget *aWidget)181 {182 return static_cast<CGContext *> (aWidget->macCGHandle());183 }184 185 178 DECLINLINE(CGRect) darwinToCGRect (const QRect& aRect) { return CGRectMake (aRect.x(), aRect.y(), aRect.width(), aRect.height()); } 186 179 DECLINLINE(CGRect) darwinFlipCGRect (CGRect aRect, int aTargetHeight) { aRect.origin.y = aTargetHeight - aRect.origin.y - aRect.size.height; return aRect; } 180 DECLINLINE(CGRect) darwinFlipCGRect (CGRect aRect, const CGRect &aTarget) { return darwinFlipCGRect (aRect, aTarget.size.height); } 181 DECLINLINE(CGRect) darwinCenterRectTo (CGRect aRect, const CGRect& aToRect) 182 { 183 aRect.origin.x = aToRect.origin.x + (aToRect.size.width - aRect.size.width) / 2.0; 184 aRect.origin.y = aToRect.origin.y + (aToRect.size.height - aRect.size.height) / 2.0; 185 return aRect; 186 } 187 188 189 190 191 192 /******************************************************************************** 193 * 194 * Old carbon stuff. Have to be converted soon! 195 * 196 ********************************************************************************/ 197 198 #include <QWidget> 187 199 188 200 # ifndef QT_MAC_USE_COCOA -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r17301 r17340 4037 4037 if (!mPausedShot.isNull()) 4038 4038 { 4039 # ifdef QT_MAC_USE_COCOA4040 /** @todo Carbon -> Cocoa */4041 # else4042 4039 CGImageRef pauseImg = ::darwinToCGImageRef (&mPausedShot); 4043 4040 /* Use the pause image as background */ 4044 4041 mDockIconPreview->updateDockPreview (pauseImg); 4045 4042 CGImageRelease (pauseImg); 4046 # endif4047 4043 } 4048 4044 else … … 4072 4068 if (mDockIconEnabled && 4073 4069 (mLastState == KMachineState_Running || 4070 mLastState == KMachineState_Paused || 4074 4071 mLastState == KMachineState_Restoring || 4075 4072 mLastState == KMachineState_Saving)) -
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VBoxDockIconPreview.cpp
r17176 r17340 28 28 29 29 #include <QPixmap> 30 #ifndef Q_WS_MAC31 # error "Q_WS_MAC isn't defined"32 #endif33 30 34 31 #ifndef QT_MAC_USE_COCOA … … 45 42 VBoxDockIconPreview::VBoxDockIconPreview (VBoxConsoleWnd *aMainWnd, const QPixmap& aOverlayImage) 46 43 : mMainWnd (aMainWnd) 47 //#ifdef QT_MAC_USE_COCOA48 //#else49 44 , mDockIconRect (CGRectMake (0, 0, 128, 128)) 50 45 , mDockMonitor (NULL) … … 53 48 , mUpdateRect (CGRectMake (0, 0, 0, 0)) 54 49 , mMonitorRect (CGRectMake (0, 0, 0, 0)) 55 //#endif 56 { 57 #ifdef QT_MAC_USE_COCOA 58 #else /* !QT_MAC_USE_COCOA */ 50 { 59 51 mOverlayImage = ::darwinToCGImageRef (&aOverlayImage); 60 52 Assert (mOverlayImage); … … 66 58 mStateRestoring = ::darwinToCGImageRef ("state_restoring_16px.png"); 67 59 Assert (mStateRestoring); 68 #endif /* !QT_MAC_USE_COCOA */ 60 61 #ifdef QT_MAC_USE_COCOA 62 ::darwinCreateVBoxDockIconTileView(); 63 #endif /* QT_MAC_USE_COCOA */ 69 64 } 70 65 … … 72 67 { 73 68 #ifdef QT_MAC_USE_COCOA 74 #else /* !QT_MAC_USE_COCOA */ 69 ::darwinDestroyVBoxDockIconTileView(); 70 #endif /* QT_MAC_USE_COCOA */ 71 75 72 CGImageRelease (mOverlayImage); 76 73 if (mDockMonitor) … … 85 82 CGImageRelease (mStateSaving); 86 83 CGImageRelease (mStateRestoring); 87 #endif /* !QT_MAC_USE_COCOA */ 88 } 89 90 //#ifndef QT_MAC_USE_COCOA 84 } 91 85 92 86 void VBoxDockIconPreview::initPreviewImages() … … 158 152 } 159 153 160 //#endif /* !QT_MAC_USE_COCOA */161 162 154 void VBoxDockIconPreview::updateDockOverlay() 163 155 { 164 #ifdef QT_MAC_USE_COCOA165 #else /* !QT_MAC_USE_COCOA */166 167 156 /* Remove all previously set tile images */ 168 RestoreApplicationDockTileImage(); 157 #ifdef QT_MAC_USE_COCOA 158 ::darwinRestoreApplicationDockTileImage(); 159 #else /* QT_MAC_USE_COCOA */ 160 ::RestoreApplicationDockTileImage(); 161 #endif /* QT_MAC_USE_COCOA */ 169 162 170 163 CGColorSpaceRef cs = CGColorSpaceCreateDeviceRGB(); … … 200 193 201 194 /* Update the dock overlay icon */ 202 OverlayApplicationDockTileImage (overlayImage); 195 #ifdef QT_MAC_USE_COCOA 196 ::darwinOverlayApplicationDockTileImage (overlayImage); 197 #else /* QT_MAC_USE_COCOA */ 198 ::OverlayApplicationDockTileImage (overlayImage); 199 #endif /* QT_MAC_USE_COCOA */ 203 200 204 201 /* Release the temp image */ 205 202 CGImageRelease (overlayImage); 206 203 CGColorSpaceRelease (cs); 207 #endif /* !QT_MAC_USE_COCOA */208 204 } 209 205 210 206 void VBoxDockIconPreview::updateDockPreview (CGImageRef aVMImage) 211 207 { 212 #ifndef QT_MAC_USE_COCOA213 208 Assert (aVMImage); 209 210 #ifdef QT_MAC_USE_COCOA 211 /* Create the context to draw on */ 212 CGContextRef context = ::darwinBeginCGContextForApplicationDockTile(); 213 updateDockPreviewImpl (context, aVMImage); 214 /* This flush updates the dock icon */ 215 CGContextFlush (context); 216 ::darwinEndCGContextForApplicationDockTile (context); 217 #else /* QT_MAC_USE_COCOA */ 218 /* Create the context to draw on */ 219 CGContextRef context = BeginCGContextForApplicationDockTile (); 220 updateDockPreviewImpl (context, aVMImage); 221 /* This flush updates the dock icon */ 222 CGContextFlush (context); 223 EndCGContextForApplicationDockTile (context); 224 #endif /* QT_MAC_USE_COCOA */ 225 } 226 227 void VBoxDockIconPreview::updateDockPreviewImpl (CGContextRef aContext, CGImageRef aVMImage) 228 { 229 Assert (aContext); 214 230 215 231 /* Init all dependend images in the case it wasn't done already */ … … 219 235 Assert (cs); 220 236 221 /* Create the context to draw on */222 CGContextRef context = BeginCGContextForApplicationDockTile();223 Assert (context);224 225 237 /* Clear the background to be transparent */ 226 CGContextSetBlendMode ( context, kCGBlendModeNormal);227 CGContextClearRect ( context, flipRect (mDockIconRect));238 CGContextSetBlendMode (aContext, kCGBlendModeNormal); 239 CGContextClearRect (aContext, flipRect (mDockIconRect)); 228 240 229 241 /* Draw the monitor as the background */ 230 CGContextDrawImage ( context, flipRect (mMonitorRect), mDockMonitor);242 CGContextDrawImage (aContext, flipRect (mMonitorRect), mDockMonitor); 231 243 232 244 /* Calc the size of the dock icon image and fit it into 128x128 */ … … 249 261 mUpdateRect); 250 262 /* Draw the VM content */ 251 CGContextDrawImage (context, flipRect (iconRect), aVMImage); 252 263 CGContextDrawImage (aContext, flipRect (iconRect), aVMImage); 264 265 #ifndef QT_MAC_USE_COCOA 253 266 /* Process the content of any external OpenGL window. */ 254 267 WindowRef w = darwinToNativeWindow (mMainWnd); … … 258 271 float a1 = iconRect.size.width / static_cast <float> (CGImageGetWidth (aVMImage)); 259 272 float a2 = iconRect.size.height / static_cast <float> (CGImageGetHeight (aVMImage)); 260 HIViewRef mainView = HIViewGetRoot (w);261 273 Rect tmpR; 262 274 GetWindowBounds (w, kWindowContentRgn, &tmpR); … … 289 301 * around with gPixelRead or something like that. */ 290 302 CGSWindowID wid = GetNativeWindowFromWindowRef (wc); 291 CGContextCopyWindowCaptureContentsToRect( context, flipRect (rect), CGSMainConnectionID(), wid, 0);303 CGContextCopyWindowCaptureContentsToRect(aContext, flipRect (rect), CGSMainConnectionID(), wid, 0); 292 304 } 293 305 } 294 306 } 307 #endif /* QT_MAC_USE_COCOA */ 295 308 296 309 /* Draw the glossy overlay */ 297 CGContextDrawImage ( context, flipRect (mMonitorRect), mDockMonitorGlossy);310 CGContextDrawImage (aContext, flipRect (mMonitorRect), mDockMonitorGlossy); 298 311 299 312 /* Draw the state image & the overlay image */ 300 drawOverlayIcons (context); 301 302 /* This flush updates the dock icon */ 303 CGContextFlush (context); 304 EndCGContextForApplicationDockTile (context); 313 drawOverlayIcons (aContext); 305 314 306 315 CGColorSpaceRelease (cs); 307 #endif /* QT_MAC_USE_COCOA */ 308 } 309 //#endif /* !QT_MAC_USE_COCOA */ 316 } 310 317 311 318 void VBoxDockIconPreview::updateDockPreview (VBoxFrameBuffer *aFrameBuffer) 312 319 { 313 //#ifdef QT_MAC_USE_COCOA314 //#else /* !QT_MAC_USE_COCOA */315 320 CGColorSpaceRef cs = CGColorSpaceCreateDeviceRGB(); 316 321 Assert (cs); … … 330 335 CGDataProviderRelease (dp); 331 336 CGColorSpaceRelease (cs); 332 //#endif /* !QT_MAC_USE_COCOA */ 333 } 334 337 } 338 -
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VBoxUtils-darwin-cocoa.m
r17201 r17340 24 24 #include "VBoxUtils-darwin.h" 25 25 26 #include <iprt/assert.h> 27 26 28 #import <AppKit/NSWindow.h> 27 29 #import <AppKit/NSView.h> … … 29 31 #import <AppKit/NSToolbar.h> 30 32 #import <AppKit/NSColor.h> 33 #import <AppKit/NSGraphicsContext.h> 34 #import <AppKit/NSApplication.h> 35 #import <AppKit/NSImageView.h> 31 36 32 37 NativeWindowRef darwinToNativeWindowImpl (NativeViewRef aView) -
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VBoxUtils-darwin.cpp
r17201 r17340 140 140 } 141 141 142 CGContextRef darwinToCGContextRef (QWidget *aWidget) 143 { 144 return static_cast<CGContext *> (aWidget->macCGHandle()); 145 } 142 146 143 147 /* Proxy icon creation */
Note:
See TracChangeset
for help on using the changeset viewer.