summaryrefslogtreecommitdiffstats
path: root/InfoScreen.c
AgeCommit message (Collapse)Author
2020-12-03Common order for ESC/q/F10Benny Baumann
2020-11-28Hide process selection on ESCChristian Göttsche
Do not highlight the current process line after pressing ESC in the main screen. Restore after pressing any key.
2020-11-02Embracing branchesBenny Baumann
2020-11-02Spacing around operatorsBenny Baumann
2020-10-20Drop tabs in source indentionsChristian Göttsche
2020-10-18Make all required includes explicitBenny Baumann
Information as seen by IWYU 0.12 + clang 9 on Linux
2020-10-16Rename StringUtils.[ch] to XUtils.[ch]Benny Baumann
2020-10-09Mark process argument of Process_isThread constChristian Göttsche
2020-10-05limit max screen title length to window widthryenus
Applies screen title truncating to all InfoScreen classes.
2020-10-02InfoScreen: update content on resizeChristian Göttsche
2020-09-29Drop redundant casts to the same typeChristian Göttsche
2020-09-03Axe automated header generation.Zev Weiss
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.
2020-08-28Ignore wmove return valueChristian Göttsche
Found by Coverity
2020-08-25Avoid discarding const qualifiersChristian Göttsche
2020-08-20Merge branch 'hishamhm-pull-1010'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-960'Nathan Scott
2020-08-19Resolve compilation warning relating to dangling else in InfoScreen_runNathan Scott
2020-06-11Fix misleading indentationJorge Pereira
2019-10-31Clean up existing whitespaceDaniel Flanagan
2019-01-29fix a bug about use of unitialised variable. refer to ↵wurongxin
https://github.com/hishamhm/htop/issues/882
2018-02-18Replace size_t with int/void* unionHisham Muhammad
I was occasionally passing negative values to size_t. Plus, this better reflects the intent of the variant argument. Reported by Coverity: https://scan8.coverity.com/reports.htm#v13253/p10402/fileInstanceId=22093891&defectInstanceId=7543346&mergedDefectId=174179&fileStart=251&fileEnd=500
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-06-23Refresh whole panel on Ctrl+L in infoscreen.Hisham
Closes #520.
2016-05-19Use set_escdelay() to avoid problems with ESCDELAY as a macro.Hisham
2016-02-19Fix behavior of ESC key, getting rid of the annoying delay.Hisham
Thank you @Explorer09 for the push! Closes #417.
2016-01-12refactor *Screen classes, add InfoScreen superclassHisham Muhammad