VirtualBox

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


Ignore:
Timestamp:
Apr 21, 2010 2:19:22 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
60385
Message:

FE/Qt: show the IPs of the active network card in the network tooltip

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

Legend:

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

    r28215 r28565  
    226226    /* LED Update Timer */
    227227    , mIdleTimer (new QTimer (this))
     228    , mNetworkTimer (new QTimer (this))
    228229    /* LEDs */
    229230    , mHDLed (0)
     
    946947    connect (mIdleTimer, SIGNAL (timeout()), SLOT (updateDeviceLights()));
    947948    mIdleTimer->start (50);
     949    connect (mNetworkTimer, SIGNAL (timeout()), SLOT (updateNetworkIPs()));
     950    mNetworkTimer->start (5000);
    948951
    949952    connect (mConsole, SIGNAL (mouseStateChanged (int)), this, SLOT (updateMouseState (int)));
     
    14821485        mIdleTimer->stop();
    14831486        mIdleTimer->disconnect (SIGNAL (timeout()), this, SLOT (updateDeviceLights()));
     1487        /* Stop Network timer: */
     1488        mNetworkTimer->stop();
     1489        mNetworkTimer->disconnect (SIGNAL (timeout()), this, SLOT (updateNetworkIPs()));
    14841490
    14851491        /* Hide console window: */
     
    25292535        }
    25302536    }
     2537}
     2538
     2539void VBoxConsoleWnd::updateNetworkIPs()
     2540{
     2541    updateAppearanceOf(NetworkStuff);
    25312542}
    25322543
     
    31183129        {
    31193130            CNetworkAdapter adapter = machine.GetNetworkAdapter (slot);
     3131            QString ip;
     3132            ULONG64 timestamp;
     3133            RTTIMESPEC time;
    31203134            if (adapter.GetEnabled())
    3121                 info += tr ("<br><nobr><b>Adapter %1 (%2)</b>: cable %3</nobr>", "Network adapters tooltip")
     3135            {
     3136                uint64_t u64Now = RTTimeSpecGetNano(RTTimeNow(&time));
     3137                QString flags;
     3138                machine.GetGuestProperty(QString("/VirtualBox/GuestInfo/Net/%1/V4/IP").arg(slot),
     3139                                        ip, timestamp, flags);
     3140                info += tr ("<br><nobr><b>Adapter %1 (%2)</b>: %3 cable %4</nobr>", "Network adapters tooltip")
    31223141                    .arg (slot + 1)
    31233142                    .arg (vboxGlobal().toString (adapter.GetAttachmentType()))
     3143                    .arg (ip.isEmpty() || (u64Now - timestamp > UINT64_C(20000000000)) ? "" : "IP=" + ip + " - ")
    31243144                    .arg (adapter.GetCableConnected() ?
    31253145                          tr ("connected", "Network adapters tooltip") :
    31263146                          tr ("disconnected", "Network adapters tooltip"));
     3147            }
    31273148        }
    31283149
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.h

    r27695 r28565  
    166166
    167167    void updateDeviceLights();
     168    void updateNetworkIPs();
    168169    void updateMachineState (KMachineState aState);
    169170    void updateMouseState (int aState);
     
    322323    /* Timer to update LEDs */
    323324    QTimer *mIdleTimer;
     325    QTimer *mNetworkTimer;
    324326
    325327    /* LEDs */
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