From ae78dbbff81196f1d7bc8fabf84d05e6b9f3ca03 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Tue, 28 Apr 2026 15:42:50 +0900 Subject: updates --- fedora/.local/bin/htop-vim/SignalsPanel.c | 48 ------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 fedora/.local/bin/htop-vim/SignalsPanel.c (limited to 'fedora/.local/bin/htop-vim/SignalsPanel.c') diff --git a/fedora/.local/bin/htop-vim/SignalsPanel.c b/fedora/.local/bin/htop-vim/SignalsPanel.c deleted file mode 100644 index 7e21ce9..0000000 --- a/fedora/.local/bin/htop-vim/SignalsPanel.c +++ /dev/null @@ -1,48 +0,0 @@ -/* -htop - SignalsPanel.c -(C) 2004-2011 Hisham H. Muhammad -Released under the GNU GPLv2+, see the COPYING file -in the source distribution for its full text. -*/ - -#include "SignalsPanel.h" -// the above contains #include so do not add that here again (breaks Solaris build) - -#include - -#include "FunctionBar.h" -#include "ListItem.h" -#include "Object.h" -#include "Panel.h" -#include "Platform.h" -#include "XUtils.h" - - -Panel* SignalsPanel_new(int preSelectedSignal) { - Panel* this = Panel_new(1, 1, 1, 1, Class(ListItem), true, FunctionBar_newEnterEsc("Send ", "Cancel ")); - int defaultPosition = 15; - unsigned int i; - for (i = 0; i < Platform_numberOfSignals; i++) { - Panel_set(this, i, (Object*) ListItem_new(Platform_signals[i].name, Platform_signals[i].number)); - // signal 15 is not always the 15th signal in the table - if (Platform_signals[i].number == preSelectedSignal) { - defaultPosition = i; - } - } - #if (defined(SIGRTMIN) && defined(SIGRTMAX)) - if (SIGRTMAX - SIGRTMIN <= 100) { - static char buf[16]; - for (int sig = SIGRTMIN; sig <= SIGRTMAX; i++, sig++) { - int n = sig - SIGRTMIN; - xSnprintf(buf, sizeof(buf), "%2d SIGRTMIN%-+3d", sig, n); - if (n == 0) { - buf[11] = '\0'; - } - Panel_set(this, i, (Object*) ListItem_new(buf, sig)); - } - } - #endif - Panel_setHeader(this, "Send signal:"); - Panel_setSelected(this, defaultPosition); - return this; -} -- cgit v1.2.3