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/DynamicMeter.c | 131 ------------------------------ 1 file changed, 131 deletions(-) delete mode 100644 fedora/.local/bin/htop-vim/DynamicMeter.c (limited to 'fedora/.local/bin/htop-vim/DynamicMeter.c') diff --git a/fedora/.local/bin/htop-vim/DynamicMeter.c b/fedora/.local/bin/htop-vim/DynamicMeter.c deleted file mode 100644 index a8cd76c..0000000 --- a/fedora/.local/bin/htop-vim/DynamicMeter.c +++ /dev/null @@ -1,131 +0,0 @@ -/* -htop - DynamicMeter.c -(C) 2021 htop dev team -(C) 2021 Red Hat, Inc. All Rights Reserved. -Released under the GNU GPLv2+, see the COPYING file -in the source distribution for its full text. -*/ - -#include "config.h" // IWYU pragma: keep - -#include "DynamicMeter.h" - -#include -#include -#include - -#include "CRT.h" -#include "Object.h" -#include "Platform.h" -#include "ProcessList.h" -#include "RichString.h" -#include "XUtils.h" - - -static const int DynamicMeter_attributes[] = { - DYNAMIC_GRAY, - DYNAMIC_DARKGRAY, - DYNAMIC_RED, - DYNAMIC_GREEN, - DYNAMIC_BLUE, - DYNAMIC_CYAN, - DYNAMIC_MAGENTA, - DYNAMIC_YELLOW, - DYNAMIC_WHITE -}; - -Hashtable* DynamicMeters_new(void) { - return Platform_dynamicMeters(); -} - -void DynamicMeters_delete(Hashtable* dynamics) { - if (dynamics) { - Platform_dynamicMetersDone(dynamics); - Hashtable_delete(dynamics); - } -} - -typedef struct { - unsigned int key; - const char* name; - bool found; -} DynamicIterator; - -static void DynamicMeter_compare(ht_key_t key, void* value, void* data) { - const DynamicMeter* meter = (const DynamicMeter*)value; - DynamicIterator* iter = (DynamicIterator*)data; - if (String_eq(iter->name, meter->name)) { - iter->found = true; - iter->key = key; - } -} - -bool DynamicMeter_search(Hashtable* dynamics, const char* name, unsigned int* key) { - DynamicIterator iter = { .key = 0, .name = name, .found = false }; - if (dynamics) - Hashtable_foreach(dynamics, DynamicMeter_compare, &iter); - if (key) - *key = iter.key; - return iter.found; -} - -const char* DynamicMeter_lookup(Hashtable* dynamics, unsigned int key) { - const DynamicMeter* meter = Hashtable_get(dynamics, key); - return meter ? meter->name : NULL; -} - -static void DynamicMeter_init(Meter* meter) { - Platform_dynamicMeterInit(meter); -} - -static void DynamicMeter_updateValues(Meter* meter) { - Platform_dynamicMeterUpdateValues(meter); -} - -static void DynamicMeter_display(const Object* cast, RichString* out) { - const Meter* meter = (const Meter*)cast; - Platform_dynamicMeterDisplay(meter, out); -} - -static const char* DynamicMeter_getCaption(const Meter* this) { - const ProcessList* pl = this->pl; - const DynamicMeter* meter = Hashtable_get(pl->dynamicMeters, this->param); - if (meter) - return meter->caption ? meter->caption : meter->name; - return this->caption; -} - -static void DynamicMeter_getUiName(const Meter* this, char* name, size_t length) { - const ProcessList* pl = this->pl; - const DynamicMeter* meter = Hashtable_get(pl->dynamicMeters, this->param); - if (meter) { - const char* uiName = meter->caption; - if (uiName) { - int len = strlen(uiName); - if (len > 2 && uiName[len - 2] == ':') - len -= 2; - xSnprintf(name, length, "%.*s", len, uiName); - } else { - xSnprintf(name, length, "%s", meter->name); - } - } -} - -const MeterClass DynamicMeter_class = { - .super = { - .extends = Class(Meter), - .delete = Meter_delete, - .display = DynamicMeter_display - }, - .init = DynamicMeter_init, - .updateValues = DynamicMeter_updateValues, - .getCaption = DynamicMeter_getCaption, - .getUiName = DynamicMeter_getUiName, - .defaultMode = TEXT_METERMODE, - .maxItems = 0, - .total = 100.0, - .attributes = DynamicMeter_attributes, - .name = "Dynamic", - .uiName = "Dynamic", - .caption = "", -}; -- cgit v1.2.3