summaryrefslogtreecommitdiffstats
path: root/AvailableMetersPanel.c
Commit message (Collapse)AuthorAgeFilesLines
* Rework drawing of FunctionBarChristian Göttsche2020-12-201-1/+0
| | | | | | | | | | | Draw the FunctionBar within Panel_draw instead of manually throughout the code. Add an optional PanelClass function drawFunctionBar, to allow specific panels to override the default FunctionBar_draw call. Rework the code on color change, to really change all colors (selection markers and panel headers). Closes: #402
* Update even more snprintfsChristian Göttsche2020-11-281-1/+1
| | | | Use size of actual buffers instead of magic numbers
* Make all required includes explicitBenny Baumann2020-10-181-4/+9
| | | | Information as seen by IWYU 0.12 + clang 9 on Linux
* Rename StringUtils.[ch] to XUtils.[ch]Benny Baumann2020-10-161-1/+1
|
* Move xAsprintf, xSnprintf and xStrdup to StringUtils.hBenny Baumann2020-10-161-0/+1
|
* Add key to pause process list updatesChristian Göttsche2020-10-121-1/+1
|
* Mark Object instances constChristian Göttsche2020-10-071-4/+4
|
* Handle Panel_getSelected() returning NULLChristian Göttsche2020-10-061-1/+4
| | | | | | | | | | | | | | | | | | | | | Found by compiling with LTO: ColumnsPanel.c: In function ‘ColumnsPanel_eventHandler’: ColumnsPanel.c:46:59: error: potential null pointer dereference [-Werror=null-dereference] 46 | ((ListItem*)Panel_getSelected(super))->moving = this->moving; | ^ AvailableColumnsPanel.c: In function ‘AvailableColumnsPanel_eventHandler’: AvailableColumnsPanel.c:31:8: error: potential null pointer dereference [-Werror=null-dereference] 31 | int key = ((ListItem*) Panel_getSelected(super))->key; | ^ AvailableMetersPanel.c: In function ‘AvailableMetersPanel_eventHandler’: AvailableMetersPanel.c:40:24: error: potential null pointer dereference [-Werror=null-dereference] 40 | int param = selected->key & 0xff; | ^ linux/IOPriorityPanel.c: In function ‘IOPriorityPanel_getIOPriority’: linux/IOPriorityPanel.c:37:11: error: potential null pointer dereference [-Werror=null-dereference] 37 | return (IOPriority) ( ((ListItem*) Panel_getSelected(this))->key ); | ^
* Update License consistently to GPLv2 as per COPYING fileDaniel Lange2020-10-051-1/+1
|
* Drop redundant casts to the same typeChristian Göttsche2020-09-291-1/+1
|
* Axe automated header generation.Zev Weiss2020-09-031-17/+0
| | | | | | | | | | | | | | Reasoning: - implementation was unsound -- broke down when I added a fairly basic macro definition expanding to a struct initializer in a *.c file. - made it way too easy (e.g. via otherwise totally innocuous git commands) to end up with timestamps such that it always ran MakeHeader.py but never used its output, leading to overbuild noise when running what should be a null 'make'. - but mostly: it's just an awkward way of dealing with C code.
* Merge branch 'hishamhm-pull-960'Nathan Scott2020-08-201-2/+2
|\
| * Clean up existing whitespaceDaniel Flanagan2019-10-311-2/+2
| |
* | Honour setting of counting CPUs from 0/1 when presenting metersRicardo Nabinger Sanchez2019-02-071-1/+1
|/ | | | | | | In the listing of Available Meters for CPUs, the list of CPUs is always presented by counting them from one. However, if the user prefers to count CPUs from zero, this is sometimes confusing when fine-tuning the meters.
* Security review: check results of snprintf.Hisham Muhammad2017-07-271-1/+1
| | | | | Calls marked with xSnprintf shouldn't fail. Abort program cleanly if any of them does.
* Assert (Platform_meterTypes[0]==&CPUMeter_class)Explorer092016-03-191-5/+7
| | | | | | | | | | | | Just assume Platform_meterTypes[0] is always &CPUMeter_class for every platform. This removes a conditional in AvailableMetersPanel_new(). Also adds some comments about the logic here. Without assuming Platform_meterTypes[0], the (int i=1) clause in this for loop will not make sense. (I.e. Why not (int i=0)? ) Also replaced a sprintf() call with safer snprintf() in code further below.
* Improve feedback when moving meters.Hisham Muhammad2015-08-271-2/+2
|
* Simplify constructors.Hisham Muhammad2015-03-231-5/+1
|
* Move FunctionBar inside PanelHisham Muhammad2015-03-231-1/+6
|
* Fix saving of header states, motion in Setup screen.Hisham Muhammad2015-03-161-1/+1
|
* Complete cursor-based movement of headers.Hisham Muhammad2015-02-031-2/+12
|
* Add longer descriptions to available meters.Hisham Muhammad2015-02-031-1/+2
|
* Sorry about the mega-patch.Hisham Muhammad2015-01-211-8/+11
| | | | | This is a work-in-progress, code is currently broken. (Some actions, and notably, the header, are missing.)
* Move UptimeMeter into platform-dependent area.Hisham Muhammad2014-11-271-4/+5
| | | | Set up environment to move other meters.
* Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad2012-12-051-8/+14
| | | | UTF-8 display of big numbers.
* Remove old memory debugging routines. We have Valgrind nowadays.Hisham Muhammad2011-12-261-1/+0
|
* major header cleanupHisham Muhammad2011-12-261-6/+14
|
* add support for steal/guest CPU time measurementHisham Muhammad2010-08-241-3/+3
| | | | | | simplify processor data accounting (add CPUData structure) remove Process_clone trick
* Clean up headers by using 'static' whenever possible.Hisham Muhammad2008-03-091-36/+36
| | | | | Reduces resulting code size.
* Updates for new version of the MakeHeader.py script.Hisham Muhammad2006-06-061-2/+2
|
* Remove references to ListBoxHisham Muhammad2006-05-301-8/+8
|
* Rename ListBox'es to Panel's, matching dit.Hisham Muhammad2006-05-301-0/+106

© 2014-2024 Faster IT GmbH | imprint | privacy policy