VirtualBox

Changeset 54805 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Mar 17, 2015 11:05:43 AM (10 years ago)
Author:
vboxsync
Message:

Release log prefixes.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/runtime
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp

    r54644 r54805  
    414414        if (m_fUnused)
    415415        {
    416             LogRel2(("ProcessVHWACommand: Postponed!\n"));
     416            LogRel2(("GUI: ProcessVHWACommand: Postponed!\n"));
    417417            /* Unlock access to frame-buffer: */
    418418            UIFrameBufferPrivate::unlock();
     
    444444        if (m_fUnused)
    445445        {
    446             LogRel2(("NotifyUpdate: Ignored!\n"));
     446            LogRel2(("GUI: NotifyUpdate: Ignored!\n"));
    447447            mOverlay.onNotifyUpdateIgnore (aX, aY, aW, aH);
    448448            /* Unlock access to frame-buffer: */
     
    532532HRESULT UIFrameBufferPrivate::init(UIMachineView *pMachineView)
    533533{
    534     LogRel2(("UIFrameBufferPrivate::init %p\n", this));
     534    LogRel2(("GUI: UIFrameBufferPrivate::init %p\n", this));
    535535
    536536    /* Assign mahine-view: */
     
    566566UIFrameBufferPrivate::~UIFrameBufferPrivate()
    567567{
    568     LogRel2(("UIFrameBufferPrivate::~UIFrameBufferPrivate %p\n", this));
     568    LogRel2(("GUI: UIFrameBufferPrivate::~UIFrameBufferPrivate %p\n", this));
    569569
    570570    /* Disconnect handlers: */
     
    724724    if (m_fUnused)
    725725    {
    726         LogRel(("UIFrameBufferPrivate::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
     726        LogRel(("GUI: UIFrameBufferPrivate::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
    727727                (unsigned long)uScreenId,
    728728                (unsigned long)uX, (unsigned long)uY,
     
    751751    /* Widget resize is NOT thread-safe and *probably* never will be,
    752752     * We have to notify machine-view with the async-signal to perform resize operation. */
    753     LogRel(("UIFrameBufferPrivate::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
     753    LogRel(("GUI: UIFrameBufferPrivate::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
    754754            (unsigned long)uScreenId,
    755755            (unsigned long)uX, (unsigned long)uY,
     
    775775    if (m_fUnused)
    776776    {
    777         LogRel2(("UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
     777        LogRel2(("GUI: UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
    778778                 (unsigned long)uX, (unsigned long)uY,
    779779                 (unsigned long)uWidth, (unsigned long)uHeight));
     
    788788    /* Widget update is NOT thread-safe and *seems* never will be,
    789789     * We have to notify machine-view with the async-signal to perform update operation. */
    790     LogRel2(("UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
     790    LogRel2(("GUI: UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
    791791             (unsigned long)uX, (unsigned long)uY,
    792792             (unsigned long)uWidth, (unsigned long)uHeight));
     
    813813    if (m_fUnused)
    814814    {
    815         LogRel2(("UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
     815        LogRel2(("GUI: UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
    816816                 (unsigned long)uX, (unsigned long)uY,
    817817                 (unsigned long)uWidth, (unsigned long)uHeight));
     
    840840        /* Widget update is NOT thread-safe and *seems* never will be,
    841841         * We have to notify machine-view with the async-signal to perform update operation. */
    842         LogRel2(("UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
     842        LogRel2(("GUI: UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
    843843                 (unsigned long)uX, (unsigned long)uY,
    844844                 (unsigned long)uWidth, (unsigned long)uHeight));
     
    858858    if (!pfSupported)
    859859    {
    860         LogRel2(("UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Invalid pfSupported pointer!\n",
     860        LogRel2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Invalid pfSupported pointer!\n",
    861861                 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight));
    862862
     
    870870    if (m_fUnused)
    871871    {
    872         LogRel2(("UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Ignored!\n",
     872        LogRel2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Ignored!\n",
    873873                 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight));
    874874
     
    891891        && (uHeight > (ULONG)height()))
    892892        *pfSupported = FALSE;
    893     LogRel2(("UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Supported=%s\n",
     893    LogRel2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Supported=%s\n",
    894894             (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight, *pfSupported ? "TRUE" : "FALSE"));
    895895
     
    919919    if (!pRectangles)
    920920    {
    921         LogRel2(("UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Invalid pRectangles pointer!\n",
     921        LogRel2(("GUI: UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Invalid pRectangles pointer!\n",
    922922                 (unsigned long)uCount));
    923923
     
    931931    if (m_fUnused)
    932932    {
    933         LogRel2(("UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Ignored!\n",
     933        LogRel2(("GUI: UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Ignored!\n",
    934934                 (unsigned long)uCount));
    935935
     
    966966        m_syncVisibleRegion = region;
    967967        /* And send async-signal to update asynchronous one: */
    968         LogRel2(("UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Sending to async-handler\n",
     968        LogRel2(("GUI: UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Sending to async-handler\n",
    969969                 (unsigned long)uCount));
    970970        emit sigSetVisibleRegion(region);
     
    974974        /* Save the region. */
    975975        m_pendingSyncVisibleRegion = region;
    976         LogRel2(("UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Saved\n",
     976        LogRel2(("GUI: UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Saved\n",
    977977                 (unsigned long)uCount));
    978978    }
     
    999999    if (m_fUnused)
    10001000    {
    1001         LogRel2(("UIFrameBufferPrivate::Notify3DEvent: Ignored!\n"));
     1001        LogRel2(("GUI: UIFrameBufferPrivate::Notify3DEvent: Ignored!\n"));
    10021002
    10031003        /* Unlock access to frame-buffer: */
     
    10161016             * about 3D overlay visibility change: */
    10171017            BOOL fVisible = eventData[0];
    1018             LogRel2(("UIFrameBufferPrivate::Notify3DEvent: Sending to async-handler: "
     1018            LogRel2(("GUI: UIFrameBufferPrivate::Notify3DEvent: Sending to async-handler: "
    10191019                     "(VBOX3D_NOTIFY_EVENT_TYPE_VISIBLE_3DDATA = %s)\n",
    10201020                     fVisible ? "TRUE" : "FALSE"));
     
    10481048void UIFrameBufferPrivate::handleNotifyChange(int iWidth, int iHeight)
    10491049{
    1050     LogRel(("UIFrameBufferPrivate::handleNotifyChange: Size=%dx%d\n", iWidth, iHeight));
     1050    LogRel(("GUI: UIFrameBufferPrivate::handleNotifyChange: Size=%dx%d\n", iWidth, iHeight));
    10511051
    10521052    /* Make sure machine-view is assigned: */
     
    10601060    {
    10611061        /* Do nothing, change-event already processed: */
    1062         LogRel2(("UIFrameBufferPrivate::handleNotifyChange: Already processed.\n"));
     1062        LogRel2(("GUI: UIFrameBufferPrivate::handleNotifyChange: Already processed.\n"));
    10631063        /* Unlock access to frame-buffer: */
    10641064        unlock();
     
    10811081void UIFrameBufferPrivate::handlePaintEvent(QPaintEvent *pEvent)
    10821082{
    1083     LogRel2(("UIFrameBufferPrivate::handlePaintEvent: Origin=%lux%lu, Size=%dx%d\n",
     1083    LogRel2(("GUI: UIFrameBufferPrivate::handlePaintEvent: Origin=%lux%lu, Size=%dx%d\n",
    10841084             pEvent->rect().x(), pEvent->rect().y(),
    10851085             pEvent->rect().width(), pEvent->rect().height()));
     
    11401140void UIFrameBufferPrivate::performResize(int iWidth, int iHeight)
    11411141{
    1142     LogRel(("UIFrameBufferPrivate::performResize: Size=%dx%d\n", iWidth, iHeight));
     1142    LogRel(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d\n", iWidth, iHeight));
    11431143
    11441144    /* Make sure machine-view is assigned: */
     
    11581158    if (m_sourceBitmap.isNull())
    11591159    {
    1160         LogRel(("UIFrameBufferPrivate::performResize: "
     1160        LogRel(("GUI: UIFrameBufferPrivate::performResize: "
    11611161                "Using FALLBACK buffer due to source-bitmap is not provided..\n"));
    11621162
     
    11721172    else
    11731173    {
    1174         LogRel(("UIFrameBufferPrivate::performResize: "
     1174        LogRel(("GUI: UIFrameBufferPrivate::performResize: "
    11751175                "Directly using source-bitmap content\n"));
    11761176
     
    12281228
    12291229        /* And send async-signal to update asynchronous one: */
    1230         LogRel2(("UIFrameBufferPrivate::performResize: Rectangle count=%lu, Sending to async-handler\n",
     1230        LogRel2(("GUI: UIFrameBufferPrivate::performResize: Rectangle count=%lu, Sending to async-handler\n",
    12311231                 (unsigned long)m_syncVisibleRegion.rectCount()));
    12321232        emit sigSetVisibleRegion(m_syncVisibleRegion);
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.cpp

    r54459 r54805  
    6565void UIMachineLogicNormal::sltCheckForRequestedVisualStateType()
    6666{
    67     LogRel(("UIMachineLogicNormal::sltCheckForRequestedVisualStateType: Requested-state=%d, Machine-state=%d\n",
     67    LogRel(("GUI: UIMachineLogicNormal::sltCheckForRequestedVisualStateType: Requested-state=%d, Machine-state=%d\n",
    6868            uisession()->requestedVisualState(), uisession()->machineState()));
    6969
     
    8181            if (uisession()->isGuestSupportsSeamless())
    8282            {
    83                 LogRel(("UIMachineLogicNormal::sltCheckForRequestedVisualStateType: "
     83                LogRel(("GUI: UIMachineLogicNormal::sltCheckForRequestedVisualStateType: "
    8484                        "Going 'seamless' as requested...\n"));
    8585                uisession()->setRequestedVisualState(UIVisualStateType_Invalid);
     
    8787            }
    8888            else
    89                 LogRel(("UIMachineLogicNormal::sltCheckForRequestedVisualStateType: "
     89                LogRel(("GUI: UIMachineLogicNormal::sltCheckForRequestedVisualStateType: "
    9090                        "Rejecting 'seamless' as is it not yet supported...\n"));
    9191            break;
Note: See TracChangeset for help on using the changeset viewer.

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