mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
Regenerated all headers.
This commit is contained in:
23
Panel.h
23
Panel.h
@ -1,9 +1,9 @@
|
||||
/* Do not edit this file. It was automatically genarated. */
|
||||
/* Do not edit this file. It was automatically generated. */
|
||||
|
||||
#ifndef HEADER_Panel
|
||||
#define HEADER_Panel
|
||||
/*
|
||||
htop
|
||||
htop - Panel.h
|
||||
(C) 2004-2006 Hisham H. Muhammad
|
||||
Released under the GNU GPL, see the COPYING file
|
||||
in the source distribution for its full text.
|
||||
@ -15,7 +15,6 @@ in the source distribution for its full text.
|
||||
#include "RichString.h"
|
||||
|
||||
#include <math.h>
|
||||
#include <sys/param.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "debug.h"
|
||||
@ -48,10 +47,16 @@ struct Panel_ {
|
||||
Panel_EventHandler eventHandler;
|
||||
};
|
||||
|
||||
|
||||
#ifndef MIN
|
||||
#define MIN(a,b) ((a)<(b)?(a):(b))
|
||||
#endif
|
||||
#ifndef MAX
|
||||
#define MAX(a,b) ((a)>(b)?(a):(b))
|
||||
#endif
|
||||
|
||||
extern char* PANEL_CLASS;
|
||||
|
||||
|
||||
|
||||
Panel* Panel_new(int x, int y, int w, int h, char* type, bool owner);
|
||||
|
||||
void Panel_delete(Object* cast);
|
||||
@ -60,12 +65,12 @@ void Panel_init(Panel* this, int x, int y, int w, int h, char* type, bool owner)
|
||||
|
||||
void Panel_done(Panel* this);
|
||||
|
||||
inline void Panel_setRichHeader(Panel* this, RichString header);
|
||||
|
||||
inline void Panel_setHeader(Panel* this, char* header);
|
||||
|
||||
void Panel_setEventHandler(Panel* this, Panel_EventHandler eh);
|
||||
|
||||
void Panel_setRichHeader(Panel* this, RichString header);
|
||||
|
||||
void Panel_setHeader(Panel* this, char* header);
|
||||
|
||||
void Panel_move(Panel* this, int x, int y);
|
||||
|
||||
void Panel_resize(Panel* this, int w, int h);
|
||||
|
Reference in New Issue
Block a user