mirror of
https://git.freebsd.org/ports.git
synced 2025-07-11 22:39:16 -04:00
KInfoCenter: * obey user's unit preferences (IEC vs JEDEC) when displaying PCI info * correct the units, someone forgot about terabytes KSysGuard: * make plotter obey user's unit preferences (status bar was correct) * change tooltip to use same or adjacent unit scale as the plot * support a description different from the sensor name for use as the label * add an additional step to label widths so horizontal resize is smoother * change status bar elements from fixed layout to proportional layout * space permitting, show more detailed memory stats in the status bar * replace simplistic (app) memory & swap graph with a detailed graph Plasma Desktop: * hide the Desktop Toolbox (aka "the cashew") when widgets are locked NB: KSysGuard caches the layouts, delete ~/.kde4/share/apps/ksysguard/* when upgrading so the new layout (detailed memory graph) is used Reviewed by: tcberner Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D9760
12 lines
455 B
C++
12 lines
455 B
C++
* Add the detailed setMemInfo used in ksysguard.cpp
|
|
*
|
|
--- ksysguard/gui/ksysguard.h.orig 2015-06-26 03:17:21 UTC
|
|
+++ ksysguard/gui/ksysguard.h
|
|
@@ -77,6 +77,7 @@ class TopLevel : public KXmlGuiWindow, p
|
|
void configureCurrentSheet();
|
|
|
|
private:
|
|
+ void setMemInfo( qlonglong, qlonglong, qlonglong, const QString& );
|
|
void setSwapInfo( qlonglong, qlonglong, const QString& );
|
|
void changeEvent( QEvent * event );
|
|
void retranslateUi();
|