2006-03-04 18:16:49 +00:00
|
|
|
#ifndef HEADER_ListItem
|
|
|
|
#define HEADER_ListItem
|
|
|
|
/*
|
2006-06-06 20:28:42 +00:00
|
|
|
htop - ListItem.h
|
2011-05-26 16:35:07 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2006-03-04 18:16:49 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Object.h"
|
2006-06-06 20:28:42 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct ListItem_ {
|
|
|
|
Object super;
|
|
|
|
char* value;
|
|
|
|
int key;
|
2015-01-22 01:27:31 +00:00
|
|
|
bool moving;
|
2006-03-04 18:16:49 +00:00
|
|
|
} ListItem;
|
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
extern const ObjectClass ListItem_class;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
ListItem* ListItem_new(const char* value, int key);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ListItem_append(ListItem* this, const char* text);
|
2006-06-06 20:28:42 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
const char* ListItem_getRef(ListItem* this);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
long ListItem_compare(const void* cast1, const void* cast2);
|
2006-06-06 20:28:42 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#endif
|