Changeset 7610 in vbox for trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleView.cpp
- Timestamp:
- Mar 27, 2008 10:48:00 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29110
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleView.cpp
r7590 r7610 83 83 #endif /* defined (Q_WS_MAC) */ 84 84 85 #if defined (VBOX_GUI_USE_REFRESH_TIMER)86 enum { UPDATE_FREQ = 1000 / 60 }; // a-la 60Hz87 #endif88 89 85 #if defined (Q_WS_WIN32) 90 86 … … 581 577 setAttribute (Qt::WA_OpaquePaintEvent); 582 578 } 583 virtual QPaintEngine * paintEngine() const 584 { 579 virtual QPaintEngine * paintEngine() const 580 { 585 581 if (testAttribute (Qt::WA_PaintOnScreen)) 586 return NULL; 587 else 582 return NULL; 583 else 588 584 return QWidget::paintEngine(); 589 } 585 } 590 586 }; 591 587 … … 681 677 Assert (!display.isNull()); 682 678 683 #if defined (VBOX_GUI_USE_REFRESH_TIMER)684 tid = 0;685 #endif686 679 mFrameBuf = 0; 687 680 … … 690 683 switch (mode) 691 684 { 692 #if defined (VBOX_GUI_USE_REFRESH_TIMER)693 case VBoxDefs::TimerMode:694 display.SetupInternalFramebuffer (32);695 tid = startTimer (UPDATE_FREQ);696 break;697 #endif698 685 #if defined (VBOX_GUI_USE_QIMAGE) 699 686 case VBoxDefs::QImageMode: … … 703 690 #if defined (VBOX_GUI_USE_SDL) 704 691 case VBoxDefs::SDLMode: 705 /* Indicate that we are doing all 692 /* Indicate that we are doing all 706 693 * drawing stuff ourself */ 707 694 pViewport->setAttribute (Qt::WA_PaintOnScreen); … … 809 796 #endif 810 797 811 #if defined (VBOX_GUI_USE_REFRESH_TIMER)812 if (tid)813 killTimer (tid);814 #endif815 798 if (mFrameBuf) 816 799 { … … 836 819 QSize VBoxConsoleView::sizeHint() const 837 820 { 838 #if defined (VBOX_GUI_USE_REFRESH_TIMER) 839 if (mode == VBoxDefs::TimerMode) 840 { 841 CDisplay display = mConsole.GetDisplay(); 842 return QSize (display.GetWidth() + frameWidth() * 2, 843 display.GetHeight() + frameWidth() * 2); 844 } 845 else 846 #endif 847 { 848 return QSize (mFrameBuf->width() + frameWidth() * 2, 849 mFrameBuf->height() + frameWidth() * 2); 850 } 821 return QSize (mFrameBuf->width() + frameWidth() * 2, 822 mFrameBuf->height() + frameWidth() * 2); 851 823 } 852 824 … … 1076 1048 1077 1049 if (mToggleFSModeTimer->isActive()) 1078 mToggleFSModeTimer->stop(); 1050 mToggleFSModeTimer->stop(); 1079 1051 1080 1052 /* do frame buffer dependent resize */ … … 2917 2889 void VBoxConsoleView::doRefresh() 2918 2890 { 2919 #if defined (VBOX_GUI_USE_REFRESH_TIMER) 2920 if (mode == VBoxDefs::TimerMode) 2921 { 2922 FRAMEBUF_DEBUG_START (xxx); 2923 QSize last_sz = pm.size(); 2924 bool rc = display_to_pixmap (mConsole, pm); 2925 if (rc) 2926 { 2927 if (pm.size() != last_sz) 2928 { 2929 int pw = pm.width(), ph = pm.height(); 2930 viewport()->resize (pw, ph); 2931 updateGeometry(); 2932 setMaximumSize (sizeHint()); 2933 /* let our toplevel widget calculate its sizeHint properly */ 2934 QApplication::sendPostedEvents (0, QEvent::LayoutRequest); 2935 normalizeGeometry(); 2891 viewport()->repaint(); 2892 } 2893 2894 void VBoxConsoleView::resizeEvent (QResizeEvent *) 2895 { 2896 updateSliders(); 2897 } 2898 2899 void VBoxConsoleView::paintEvent (QPaintEvent *pe) 2900 { 2901 if (mPausedShot.isNull()) 2902 { 2903 /* delegate the paint function to the VBoxFrameBuffer interface */ 2904 mFrameBuf->paintEvent (pe); 2905 #ifdef Q_WS_MAC 2906 /* Update the dock icon if we are in the running state */ 2907 if (isRunning()) 2908 { 2909 # if defined (VBOX_GUI_USE_QUARTZ2D) 2910 if (mode == VBoxDefs::Quartz2DMode) 2911 { 2912 /* If the render mode is Quartz2D we could use the 2913 * CGImageRef of the framebuffer for the dock icon creation. 2914 * This saves some conversion time. */ 2915 CGImageRef ir = 2916 static_cast <VBoxQuartz2DFrameBuffer *> (mFrameBuf)->imageRef(); 2917 ::DarwinUpdateDockPreview (ir, mVirtualBoxLogo); 2936 2918 } 2937 2919 else 2938 { 2939 /* the alternative is to update, so we will be repainted 2940 * on the next event loop iteration. currently disabled. 2941 * updateContents(); */ 2942 viewport()->repaint(); 2943 } 2944 } 2945 if (rc) 2946 FRAMEBUF_DEBUG_STOP (xxx, pm.width(), pm.height()); 2947 } 2948 else 2949 #endif 2950 viewport()->repaint(); 2951 } 2952 2953 void VBoxConsoleView::resizeEvent (QResizeEvent *) 2954 { 2955 updateSliders(); 2956 } 2957 2958 void VBoxConsoleView::paintEvent (QPaintEvent *pe) 2959 { 2960 #if defined (VBOX_GUI_USE_REFRESH_TIMER) 2961 #warning "port me: Is this needed anymore?" 2962 // if (mode == VBoxDefs::TimerMode) 2963 // { 2964 // if (!pm.isNull()) 2965 // { 2966 // /* draw a part of vbuf */ 2967 // const QRect &r = pe->rect(); 2968 // ::bitBlt (viewport(), r.x(), r.y(), 2969 // &pm, r.x() + contentsX(), r.y() + contentsY(), 2970 // r.width(), r.height(), 2971 // CopyROP, TRUE); 2972 // } 2973 // else 2974 // { 2975 // viewport()->erase (pe->rect()); 2976 // } 2977 // } 2978 // else 2979 #endif 2980 { 2981 if (mPausedShot.isNull()) 2982 { 2983 /* delegate the paint function to the VBoxFrameBuffer interface */ 2984 mFrameBuf->paintEvent (pe); 2920 # endif 2921 ::DarwinUpdateDockPreview (mFrameBuf, mVirtualBoxLogo); 2922 } 2923 #endif 2924 return; 2925 } 2926 2927 /* we have a snapshot for the paused state */ 2928 QRect r = pe->rect().intersect (viewport()->rect()); 2929 QPainter pnt (viewport()); 2930 pnt.drawPixmap (r.x(), r.y(), mPausedShot, 2931 r.x() + contentsX(), r.y() + contentsY(), 2932 r.width(), r.height()); 2933 2985 2934 #ifdef Q_WS_MAC 2986 /* Update the dock icon if we are in the running state */ 2987 if (isRunning()) 2988 { 2989 # if defined (VBOX_GUI_USE_QUARTZ2D) 2990 if (mode == VBoxDefs::Quartz2DMode) 2991 { 2992 /* If the render mode is Quartz2D we could use the 2993 * CGImageRef of the framebuffer for the dock icon creation. 2994 * This saves some conversion time. */ 2995 CGImageRef ir = 2996 static_cast <VBoxQuartz2DFrameBuffer *> (mFrameBuf)->imageRef(); 2997 ::DarwinUpdateDockPreview (ir, mVirtualBoxLogo); 2998 } 2999 else 3000 # endif 3001 ::DarwinUpdateDockPreview (mFrameBuf, mVirtualBoxLogo); 3002 } 3003 #endif 3004 return; 3005 } 3006 3007 /* we have a snapshot for the paused state */ 3008 QRect r = pe->rect().intersect (viewport()->rect()); 3009 QPainter pnt (viewport()); 3010 pnt.drawPixmap (r.x(), r.y(), mPausedShot, 3011 r.x() + contentsX(), r.y() + contentsY(), 3012 r.width(), r.height()); 3013 3014 #ifdef Q_WS_MAC 3015 ::DarwinUpdateDockPreview (DarwinQPixmapToCGImage (&mPausedShot), 3016 mVirtualBoxLogo, 3017 mMainWnd->dockImageState()); 3018 #endif 3019 } 3020 } 3021 3022 #ifdef VBOX_GUI_USE_REFRESH_TIMER 3023 void VBoxConsoleView::timerEvent( QTimerEvent * ) 3024 { 3025 doRefresh(); 3026 } 3027 #endif 2935 ::DarwinUpdateDockPreview (DarwinQPixmapToCGImage (&mPausedShot), 2936 mVirtualBoxLogo, 2937 mMainWnd->dockImageState()); 2938 #endif 2939 } 3028 2940 3029 2941 /** … … 3605 3517 setDesktopGeometry(0, 0); 3606 3518 } 3607 3519 3608 3520 /** 3609 3521 * Set the maximum size allowed for the guest desktop to the available area … … 3649 3561 h = str.section (',', 1, 1).toInt (&ok); 3650 3562 QRect screen = QApplication::desktop()->screenGeometry (this); 3651 if (ok && w <= screen.width() && h <= screen.height()) 3563 if (ok && w <= screen.width() && h <= screen.height()) 3652 3564 { 3653 3565 LogFlowFunc (("Will suggest %d x %d\n", w, h)); … … 3678 3590 } 3679 3591 3680 int VBoxConsoleView::contentsWidth() const 3681 { 3682 return mFrameBuf->width(); 3683 } 3684 3685 int VBoxConsoleView::contentsHeight() const 3686 { 3687 return mFrameBuf->height(); 3592 int VBoxConsoleView::contentsWidth() const 3593 { 3594 return mFrameBuf->width(); 3595 } 3596 3597 int VBoxConsoleView::contentsHeight() const 3598 { 3599 return mFrameBuf->height(); 3688 3600 } 3689 3601
Note:
See TracChangeset
for help on using the changeset viewer.