summaryrefslogtreecommitdiffstats
path: root/SignalsPanel.h
AgeCommit message (Collapse)Author
2020-10-18Make all required includes explicitBenny Baumann
Information as seen by IWYU 0.12 + clang 9 on Linux
2020-10-05Update License consistently to GPLv2 as per COPYING fileDaniel Lange
2020-09-18Use strict function prototypesChristian Göttsche
int foo(); declares a function taking any number of arguments.
2020-09-08Further, minor cleanups to headers post-MakeHeadersNathan Scott
Remove leftover empty ifdef/endif pairs, whitespace. The generated htop.h file was also unused - removed.
2020-09-03Remove superfluous 'extern's from function declarations.Zev Weiss
Applied via: $ find * -name '*.h' -exec sed -i -r 's/^extern (.+\()/\1/;' {} + Suggested-by: Bert Wesarg <bert.wesarg@googlemail.com>
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-18Re-generate all headers with latest scripts/MakeHeader.pyNathan Scott
Sync-up missing extern declarations for many functions.
2012-12-05Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad
UTF-8 display of big numbers.
2011-12-26major header cleanupHisham Muhammad
2011-11-05reduce codeHisham Muhammad
2011-11-05Allow typing to select items in various panels (sort, user, signal).Hisham Muhammad
Factored code from the SignalsPanel to apply to all selections from main screen. Closes feature request #3425304.
2008-03-09Clean up headers by using 'static' whenever possible.Hisham Muhammad
Reduces resulting code size.
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-06-06Regenerated all headers.Hisham Muhammad
2006-05-30Rename ListBox'es to Panel's, matching dit.Hisham Muhammad