VirtualBox

Ignore:
Timestamp:
Mar 27, 2008 10:48:00 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
29110
Message:

FE/Qt: Dropped refresh timer rendering mode.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleView.cpp

    r7590 r7610  
    8383#endif /* defined (Q_WS_MAC) */
    8484
    85 #if defined (VBOX_GUI_USE_REFRESH_TIMER)
    86 enum { UPDATE_FREQ = 1000 / 60 }; // a-la 60Hz
    87 #endif
    88 
    8985#if defined (Q_WS_WIN32)
    9086
     
    581577        setAttribute (Qt::WA_OpaquePaintEvent);
    582578    }
    583     virtual QPaintEngine * paintEngine() const 
    584     { 
     579    virtual QPaintEngine * paintEngine() const
     580    {
    585581        if (testAttribute (Qt::WA_PaintOnScreen))
    586             return NULL; 
    587         else 
     582            return NULL;
     583        else
    588584            return QWidget::paintEngine();
    589     } 
     585    }
    590586};
    591587
     
    681677    Assert (!display.isNull());
    682678
    683 #if defined (VBOX_GUI_USE_REFRESH_TIMER)
    684     tid = 0;
    685 #endif
    686679    mFrameBuf = 0;
    687680
     
    690683    switch (mode)
    691684    {
    692 #if defined (VBOX_GUI_USE_REFRESH_TIMER)
    693         case VBoxDefs::TimerMode:
    694             display.SetupInternalFramebuffer (32);
    695             tid = startTimer (UPDATE_FREQ);
    696             break;
    697 #endif
    698685#if defined (VBOX_GUI_USE_QIMAGE)
    699686        case VBoxDefs::QImageMode:
     
    703690#if defined (VBOX_GUI_USE_SDL)
    704691        case VBoxDefs::SDLMode:
    705             /* Indicate that we are doing all 
     692            /* Indicate that we are doing all
    706693             * drawing stuff ourself */
    707694            pViewport->setAttribute (Qt::WA_PaintOnScreen);
     
    809796#endif
    810797
    811 #if defined (VBOX_GUI_USE_REFRESH_TIMER)
    812     if (tid)
    813         killTimer (tid);
    814 #endif
    815798    if (mFrameBuf)
    816799    {
     
    836819QSize VBoxConsoleView::sizeHint() const
    837820{
    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);
    851823}
    852824
     
    10761048
    10771049                if (mToggleFSModeTimer->isActive())
    1078                     mToggleFSModeTimer->stop(); 
     1050                    mToggleFSModeTimer->stop();
    10791051
    10801052                /* do frame buffer dependent resize */
     
    29172889void VBoxConsoleView::doRefresh()
    29182890{
    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
     2894void VBoxConsoleView::resizeEvent (QResizeEvent *)
     2895{
     2896    updateSliders();
     2897}
     2898
     2899void 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);
    29362918            }
    29372919            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
    29852934#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}
    30282940
    30292941/**
     
    36053517    setDesktopGeometry(0, 0);
    36063518}
    3607  
     3519
    36083520/**
    36093521 * Set the maximum size allowed for the guest desktop to the available area
     
    36493561        h = str.section (',', 1, 1).toInt (&ok);
    36503562    QRect screen = QApplication::desktop()->screenGeometry (this);
    3651     if (ok && w <= screen.width() && h <= screen.height()) 
     3563    if (ok && w <= screen.width() && h <= screen.height())
    36523564    {
    36533565        LogFlowFunc (("Will suggest %d x %d\n", w, h));
     
    36783590}
    36793591
    3680 int VBoxConsoleView::contentsWidth() const 
    3681 { 
    3682     return mFrameBuf->width(); 
    3683 }
    3684 
    3685 int VBoxConsoleView::contentsHeight() const 
    3686 { 
    3687     return mFrameBuf->height(); 
     3592int VBoxConsoleView::contentsWidth() const
     3593{
     3594    return mFrameBuf->width();
     3595}
     3596
     3597int VBoxConsoleView::contentsHeight() const
     3598{
     3599    return mFrameBuf->height();
    36883600}
    36893601
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette