Changeset 28565 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 21, 2010 2:19:22 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60385
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r28215 r28565 226 226 /* LED Update Timer */ 227 227 , mIdleTimer (new QTimer (this)) 228 , mNetworkTimer (new QTimer (this)) 228 229 /* LEDs */ 229 230 , mHDLed (0) … … 946 947 connect (mIdleTimer, SIGNAL (timeout()), SLOT (updateDeviceLights())); 947 948 mIdleTimer->start (50); 949 connect (mNetworkTimer, SIGNAL (timeout()), SLOT (updateNetworkIPs())); 950 mNetworkTimer->start (5000); 948 951 949 952 connect (mConsole, SIGNAL (mouseStateChanged (int)), this, SLOT (updateMouseState (int))); … … 1482 1485 mIdleTimer->stop(); 1483 1486 mIdleTimer->disconnect (SIGNAL (timeout()), this, SLOT (updateDeviceLights())); 1487 /* Stop Network timer: */ 1488 mNetworkTimer->stop(); 1489 mNetworkTimer->disconnect (SIGNAL (timeout()), this, SLOT (updateNetworkIPs())); 1484 1490 1485 1491 /* Hide console window: */ … … 2529 2535 } 2530 2536 } 2537 } 2538 2539 void VBoxConsoleWnd::updateNetworkIPs() 2540 { 2541 updateAppearanceOf(NetworkStuff); 2531 2542 } 2532 2543 … … 3118 3129 { 3119 3130 CNetworkAdapter adapter = machine.GetNetworkAdapter (slot); 3131 QString ip; 3132 ULONG64 timestamp; 3133 RTTIMESPEC time; 3120 3134 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") 3122 3141 .arg (slot + 1) 3123 3142 .arg (vboxGlobal().toString (adapter.GetAttachmentType())) 3143 .arg (ip.isEmpty() || (u64Now - timestamp > UINT64_C(20000000000)) ? "" : "IP=" + ip + " - ") 3124 3144 .arg (adapter.GetCableConnected() ? 3125 3145 tr ("connected", "Network adapters tooltip") : 3126 3146 tr ("disconnected", "Network adapters tooltip")); 3147 } 3127 3148 } 3128 3149 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.h
r27695 r28565 166 166 167 167 void updateDeviceLights(); 168 void updateNetworkIPs(); 168 169 void updateMachineState (KMachineState aState); 169 170 void updateMouseState (int aState); … … 322 323 /* Timer to update LEDs */ 323 324 QTimer *mIdleTimer; 325 QTimer *mNetworkTimer; 324 326 325 327 /* LEDs */
Note:
See TracChangeset
for help on using the changeset viewer.