summaryrefslogtreecommitdiffstats
path: root/Panel.h
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers to explicitly say GPLv2+Daniel Lange2021-09-221-1/+1
|
* IWYU updateChristian Göttsche2021-08-251-0/+3
|
* Abstract resize handling by adding a new Htop reactionChristian Göttsche2021-08-221-1/+2
|
* Mark several non-modified pointer variables constChristian Göttsche2021-01-111-2/+2
|
* Panel_new: reorder argumentsChristian Göttsche2021-01-041-1/+1
| | | | Reorder owner and type so they match the order of Panel_init
* Add option to hide the Function BarChristian Göttsche2021-01-041-9/+9
| | | | | | | | | | Support three settings: - Always show Function Bar - Always hide the Function Bar, except in Infoscreens (Env/Locks...) and when editing the search and filter mode - Hide the Function Bar on ESC until the next user input Closes: #439
* Restore highlighted header of current sorted process columnChristian Göttsche2020-12-231-2/+4
|
* Rework drawing of FunctionBarChristian Göttsche2020-12-201-10/+17
| | | | | | | | | | | 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
* Hide process selection on ESCChristian Göttsche2020-11-281-1/+1
| | | | | | Do not highlight the current process line after pressing ESC in the main screen. Restore after pressing any key.
* Spacing around operatorsBenny Baumann2020-11-021-1/+1
|
* Spacing after keywords (while)Benny Baumann2020-11-021-1/+1
|
* Spacing after keywords (#define)Benny Baumann2020-11-021-1/+1
|
* Enclose macro arguments in parenthesesChristian Göttsche2020-10-281-4/+4
|
* Make all required includes explicitBenny Baumann2020-10-181-0/+5
| | | | Information as seen by IWYU 0.12 + clang 9 on Linux
* Mark Object instances constChristian Göttsche2020-10-071-1/+1
|
* Mark Object classes and Object class fields constChristian Göttsche2020-10-071-3/+3
|
* Update License consistently to GPLv2 as per COPYING fileDaniel Lange2020-10-051-1/+1
|
* Sort headers/includesBenny Baumann2020-09-291-1/+1
|
* Drop unused variableChristian Göttsche2020-09-181-1/+0
|
* Consolidate repeated macro definitions into one headerNathan Scott2020-09-091-7/+0
| | | | | | | | The MIN, MAX, CLAMP, MINIMUM, and MAXIMUM macros appear throughout the codebase with many re-definitions. Make a single copy of each in a common header file, and use the BSD variants of MINIMUM/MAXIMUM due to conflicts in the system <sys/param.h> headers.
* Further, minor cleanups to headers post-MakeHeadersNathan Scott2020-09-081-3/+0
| | | | | Remove leftover empty ifdef/endif pairs, whitespace. The generated htop.h file was also unused - removed.
* Remove superfluous 'extern's from function declarations.Zev Weiss2020-09-031-25/+25
| | | | | | | | Applied via: $ find * -name '*.h' -exec sed -i -r 's/^extern (.+\()/\1/;' {} + Suggested-by: Bert Wesarg <bert.wesarg@googlemail.com>
* Axe automated header generation.Zev Weiss2020-09-031-2/+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 'ci-hwloc-job' of https://github.com/bertwesarg/htop into ↵Nathan Scott2020-08-261-0/+2
| | | | bertwesarg-ci-hwloc-job
* Re-generate all headers with latest scripts/MakeHeader.pyNathan Scott2020-08-181-23/+23
| | | | Sync-up missing extern declarations for many functions.
* Added Ctrl+A and Ctrl+E to go to beginning and end of line.Hisham2016-06-151-4/+2
| | | | | (Also, '^' and '$') Closes #508.
* Visual tweaks: change color when following, add Broken Gray theme.Hisham Muhammad2015-04-091-0/+3
|
* Merge branch 'master' into wipHisham Muhammad2015-04-021-1/+0
|\ | | | | | | | | | | | | | | | | | | Conflicts: Process.c Process.h htop.c linux/LinuxProcess.c linux/LinuxProcess.h test_spec.lua
| * Cleanup unused field.Hisham Muhammad2015-03-311-1/+0
| |
* | handle clicks on panel header lineHisham Muhammad2015-03-241-1/+5
| |
* | incremental search and filter reintegrated!Hisham Muhammad2015-03-231-0/+2
| |
* | Move FunctionBar inside PanelHisham Muhammad2015-03-231-2/+5
| |
* | Refactor state control variables.Hisham Muhammad2015-03-221-2/+2
| |
* | Complete cursor-based movement of headers.Hisham Muhammad2015-02-031-0/+1
| |
* | Another mega-patch for the refactoring process.Hisham Muhammad2015-01-231-5/+5
| | | | | | | | | | Kinda runs, but functionality from the original main loop is still missing. Patience.
* | Sorry about the mega-patch.Hisham Muhammad2015-01-211-4/+6
|/ | | | | This is a work-in-progress, code is currently broken. (Some actions, and notably, the header, are missing.)
* alignment improvementsHisham Muhammad2014-02-271-3/+3
|
* Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad2012-12-051-11/+14
| | | | UTF-8 display of big numbers.
* major header cleanupHisham Muhammad2011-12-261-14/+2
|
* Mega-commit with features and tweaks for 1.0:Hisham Muhammad2011-11-181-0/+3
| | | | | | | | | | | * Performance improvements * Support for splitting CPU meters into two or four columns (thanks to Wim Heirman) * Switch from PLPA, which is now deprecated, to HWLOC. * Bring back support for native Linux sched_setaffinity, so we don't have to use HWLOC where we don't need to. * Support for typing in user names and column fields in selection panels.
* Allow typing to select items in various panels (sort, user, signal).Hisham Muhammad2011-11-051-0/+1
| | | | | | Factored code from the SignalsPanel to apply to all selections from main screen. Closes feature request #3425304.
* Tempus fugit.Hisham Muhammad2011-05-261-1/+1
|
* Remove arbitrary limit from rich stringsHisham Muhammad2010-11-221-1/+1
| | | | | | | | | Fix subtree hiding Fix reading of CPU values in hidden threads Fix hiding of zombie processes as kernel threads Remove "debug proc" code Code cleanup in processElements
* * Add Bash/emacs style navigation keysHisham Muhammad2010-03-031-0/+4
| | | | | (thanks to Daniel Schuler)
* Tempus fugit.Hisham Muhammad2010-02-251-1/+1
|
* warning fixesHisham Muhammad2010-02-251-1/+1
|
* changes for htop 0.8.2Hisham Muhammad2009-06-021-2/+2
|
* Make clicks on leftmost panel in the Setup screen change setup pages,Hisham Muhammad2008-03-051-0/+2
| | | | | | like the keyboard navigation does. Fixes bug reported by Tero Keinanen. https://sourceforge.net/tracker/index.php?func=detail&aid=1754735&group_id=108839&atid=651633
* Fix GCC 4.3 issues: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=416852Hisham Muhammad2007-08-101-2/+2
|
* Horizontally scroll in larger increments when on theHisham Muhammad2006-07-231-0/+2
| | | | | Linux console because of slow update of unaccelerated fb

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