summaryrefslogtreecommitdiffstats
path: root/DisplayOptionsPanel.c
AgeCommit message (Collapse)Author
2018-08-24Introduce screen tabsHisham Muhammad
2018-02-26Add support for multiple screens, switchable using TabHisham Muhammad
2017-07-22Mark some things as constRichard
Several string pointer arrays pointed to const strings but were not const themselves. A few various structures and arrays were also marked const.
2016-02-02Try to make threads less confusing.Hisham
2016-02-02Check for failure in allocations.Hisham
2015-08-27Handle KEY_RECLICK events generated by ScreenManagerHisham Muhammad
2015-08-12Avoid future confusions with how default values are set.Hisham Muhammad
2015-08-07New setting: "Show program path"Tobias Geerinckx-Rice
Add a setting to hide all but the last component from the programme path, leaving only the "basename". Makes htop more usable on smaller screens, or systems with longer than average paths. Off by default. "Highlight program basename" will still be respected, to further visually separate process names from their arguments.
2015-03-23Move FunctionBar inside PanelHisham Muhammad
2015-01-21Sorry about the mega-patch.Hisham Muhammad
This is a work-in-progress, code is currently broken. (Some actions, and notably, the header, are missing.)
2013-12-18Make CPU meter optionally account guest time in its percentagesHisham Muhammad
2012-12-05Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad
UTF-8 display of big numbers.
2012-10-20Option to update process names on every refreshHisham Muhammad
(thanks to Rob Hoelz)
2011-12-26Remove old memory debugging routines. We have Valgrind nowadays.Hisham Muhammad
2011-12-26major header cleanupHisham Muhammad
2011-12-25Use strdup explicitlyHisham Muhammad
2011-03-22* Option for counting CPUs from zeroHisham Muhammad
(thanks to Sean Noonan) * Meters update in every screen (no longer halting while on Setup, etc.)
2010-11-20Use a more correct name for memory option.Hisham Muhammad
User 'sworddragon' in sf.net points out that highlighting '90' in '90000' is not highlighting a "megabyte", since 90000 is not 90MB. Closes #3094939.
2010-08-24add support for steal/guest CPU time measurementHisham Muhammad
simplify processor data accounting (add CPUData structure) remove Process_clone trick
2010-02-25show custom thread namesHisham Muhammad
2008-05-07Let mouseclicks tick/untick checkboxesHisham Muhammad
2008-03-09Clean up headers by using 'static' whenever possible.Hisham Muhammad
Reduces resulting code size.
2008-03-08BUGFIX: Fix display of CPU count for threaded processes.Hisham Muhammad
When user threads are hidden, process now shows the sum of processor usage for all processors. When user threads are displayed, each thread shows its own processor usage, including the root thread. (thanks to Bert Wesarg for the report) Also, add option to display thread colors differently.
2007-11-09IO-wait time now counts as idle time, which is a moreHisham Muhammad
accurate description. It is still available in split time, now called detailed CPU time. (thanks to Samuel Thibault for the report)
2007-11-08Improve construction of tree view, properly nesting threads.Hisham Muhammad
Add CPU affinity screen ('a' key). BUGFIX: Correct display of TPGID field. Add TGID field.
2006-10-04Contribution by Philipp Richter: Display IO-Wait, IRQ and Soft-IRQ values in ↵Hisham Muhammad
status bar (minor modifications: default to false, add help)
2006-05-30Rename ListBox'es to Panel's, matching dit.Hisham Muhammad