mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-14 21:14:35 +03:00
Complete cursor-based movement of headers.
This commit is contained in:
@ -13,14 +13,18 @@ in the source distribution for its full text.
|
||||
#include "Settings.h"
|
||||
#include "ScreenManager.h"
|
||||
|
||||
typedef struct MetersPanel_ {
|
||||
typedef struct MetersPanel_ MetersPanel;
|
||||
|
||||
struct MetersPanel_ {
|
||||
Panel super;
|
||||
|
||||
Settings* settings;
|
||||
Vector* meters;
|
||||
ScreenManager* scr;
|
||||
MetersPanel* leftNeighbor;
|
||||
MetersPanel* rightNeighbor;
|
||||
bool moving;
|
||||
} MetersPanel;
|
||||
};
|
||||
|
||||
|
||||
extern PanelClass MetersPanel_class;
|
||||
|
Reference in New Issue
Block a user