~ubuntu-branches/ubuntu/intrepid/htop/intrepid

« back to all changes in this revision

Viewing changes to CheckItem.h

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2008-04-26 13:57:14 UTC
  • mfrom: (1.1.10 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20080426135714-teunz1rh1mda44w1
Tags: 0.7-1
* New upstrem version. (Closes: #452634)
* Move URL to homepage header.
* Bumped Standards-Version (no changes needed).
* Fixed watch file. (Closes: #449631)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
typedef struct CheckItem_ {
19
19
   Object super;
20
20
   char* text;
21
 
   bool* value;
 
21
   bool value;
 
22
   bool* ref;
22
23
} CheckItem;
23
24
 
24
25
 
28
29
#define CHECKITEM_CLASS NULL
29
30
#endif
30
31
 
31
 
CheckItem* CheckItem_new(char* text, bool* value);
 
32
CheckItem* CheckItem_new(char* text, bool* ref, bool value);
32
33
 
33
34
void CheckItem_delete(Object* cast);
34
35
 
 
36
void CheckItem_set(CheckItem* this, bool value);
 
37
 
 
38
bool CheckItem_get(CheckItem* this);
 
39
 
35
40
void CheckItem_display(Object* cast, RichString* out);
36
41
 
37
42
#endif