VirtualBox

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


Ignore:
Timestamp:
Aug 22, 2024 1:37:57 PM (8 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
164530
Message:

FE/Qt: bugref:9437: Reworking GUI part; No need to pass excessive event attributes if they are not used after all; Pass QString by const ref; Do not propagate COM stuff from UISession to UIMachine as latter isn't working with COM stuff; Fixing notification-center NLS tag; Fixing coding-style.

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.cpp

    r105266 r105817  
    619619        {
    620620            CClipboardErrorEvent comEventSpecific(pEvent);
    621             emit sigClipboardError(comEventSpecific.GetId(), comEventSpecific.GetMsg(), comEventSpecific.GetRcError());
     621            emit sigClipboardError(comEventSpecific.GetMsg());
    622622            break;
    623623        }
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.h

    r103803 r105817  
    210210        void sigClipboardModeChange(KClipboardMode enmClipboardMode);
    211211        /** Notifies about a clipboard error. */
    212         void sigClipboardError(QString strId, QString strMsg, long rcError);
     212        void sigClipboardError(const QString &strMsg);
    213213        /** Notifies about the drag and drop mode change. */
    214214        void sigDnDModeChange(KDnDMode enmDnDMode);
  • trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp

    r105804 r105817  
    149149
    150150/* static */
    151 void UINotificationMessage::showClipboardError(QString strId, QString strMsg, long rcError)
    152 {
    153     RT_NOREF(strId, rcError);
    154 
    155     UINotificationMessage::createMessage(
    156         QApplication::translate("UIMessageCenter", "Shared Clipboard Error"),
    157         QApplication::translate("UIMessageCenter", strMsg.toUtf8().constData()));
     151void UINotificationMessage::warnAboutClipboardError(const QString &strMsg)
     152{
     153    createMessage(
     154        QApplication::translate("UIMessageCenter", "Shared clipboard error ..."),
     155        strMsg.toUtf8().constData());
    158156}
    159157
  • trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.h

    r105558 r105817  
    110110        static void warnAboutInvalidEncryptionPassword(const QString &strPasswordId);
    111111        /** Notifies about a clipboard error. */
    112         static void showClipboardError(QString strId, QString strMsg, long rcError);
     112        static void warnAboutClipboardError(const QString &strMsg);
    113113
    114114#ifdef VBOX_GUI_WITH_NETWORK_MANAGER
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIConsoleEventHandler.cpp

    r105266 r105817  
    9797    void sigClipboardModeChange(KClipboardMode enmMode);
    9898    /** Notifies about a clipboard error. */
    99     void sigClipboardError(QString strId, QString strMsg, long rcError);
     99    void sigClipboardError(const QString &strMsg);
    100100    /** Notifies drag and drop mode change. */
    101101    void sigDnDModeChange(KDnDMode enmMode);
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIConsoleEventHandler.h

    r103803 r105817  
    107107    void sigClipboardModeChange(KClipboardMode enmMode);
    108108    /** Notifies about a clipboard error. */
    109     void sigClipboardError(QString strId, QString strMsg, long rcError);
     109    void sigClipboardError(const QString &strMsg);
    110110    /** Notifies drag and drop mode change. */
    111111    void sigDnDModeChange(KDnDMode enmMode);
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp

    r105546 r105817  
    11051105{
    11061106    uisession()->sltMountDVDAdHoc(strSource);
    1107 }
    1108 
    1109 void UIMachine::sltClipboardError(QString strId, QString strMsg, long rcError)
    1110 {
    1111     UINotificationMessage::showClipboardError(strId, strMsg, rcError);
    11121107}
    11131108
     
    15571552    connect(uisession(), &UISession::sigClipboardModeChange,
    15581553            this, &UIMachine::sigClipboardModeChange);
    1559     connect(uisession(), &UISession::sigClipboardError,
    1560             this, &UIMachine::sltClipboardError);
    15611554    connect(uisession(), &UISession::sigCPUExecutionCapChange,
    15621555            this, &UIMachine::sigCPUExecutionCapChange);
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.h

    r105265 r105817  
    9898        /** Notifies about clipboard mode change. */
    9999        void sigClipboardModeChange(KClipboardMode enmMode);
    100         /** Notifies about a clipboard error. */
    101         void sigClipboardError(QString strId, QString strMsg, long rcError);
    102100        /** Notifies about CPU execution cap change. */
    103101        void sigCPUExecutionCapChange();
     
    750748    /** @} */
    751749
    752     /** @name Clipboard stuff.
    753      ** @{ */
    754         /** Handles clipboard errors. */
    755         void sltClipboardError(QString strId, QString strMsg, long rcError);
    756     /** @} */
    757 
    758750    /** @name Keyboard stuff.
    759751     ** @{ */
     
    809801        /** Handles host-screen available-area change. */
    810802        void sltHandleHostScreenAvailableAreaChange();
     803
    811804#ifdef VBOX_WS_MAC
    812805        /** macOS X: Restarts display-reconfiguration watchdog timer from the beginning.
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp

    r105588 r105817  
    24772477}
    24782478
     2479void UISession::sltClipboardError(const QString &strMsg)
     2480{
     2481    UINotificationMessage::warnAboutClipboardError(strMsg);
     2482}
     2483
    24792484void UISession::sltHandleMachineStateSaved(bool fSuccess)
    24802485{
     
    25902595            this, &UISession::sigClipboardModeChange);
    25912596    connect(m_pConsoleEventhandler, &UIConsoleEventHandler::sigClipboardError,
    2592             this, &UISession::sigClipboardError);
     2597            this, &UISession::sltClipboardError);
    25932598    connect(m_pConsoleEventhandler, &UIConsoleEventHandler::sigCPUExecutionCapChange,
    25942599            this, &UISession::sigCPUExecutionCapChange);
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.h

    r105265 r105817  
    9595        /** Notifies about clipboard mode change. */
    9696        void sigClipboardModeChange(KClipboardMode enmMode);
    97         /** Notifies about a clipboard error. */
    98         void sigClipboardError(QString strId, QString strMsg, long rcError);
    9997        /** Notifies about CPU execution cap change. */
    10098        void sigCPUExecutionCapChange();
     
    647645    /** @} */
    648646
     647    /** @name Clipboard stuff.
     648     ** @{ */
     649        /** Handles clipboard errors. */
     650        void sltClipboardError(const QString &strMsg);
     651    /** @} */
     652
    649653    /** @name Close stuff.
    650654     ** @{ */
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