19 #ifndef _MFORMS_TABLE_H_
20 #define _MFORMS_TABLE_H_
46 #ifndef DOXYGEN_SHOULD_SKIP_THIS
50 bool (*create)(Table*);
52 void (*set_row_count)(Table *
self, int);
53 void (*set_column_count)(Table *
self, int);
55 void (*add)(Table *
self,View*, int, int, int, int, int);
56 void (*
remove)(Table *
self, View*);
58 void (*set_row_spacing)(Table *
self, int);
59 void (*set_column_spacing)(Table *
self, int);
61 void (*set_homogeneous)(Table *
self, bool);
74 void set_row_count(
int c);
76 void set_column_count(
int c);
79 void set_row_spacing(
int s);
81 void set_column_spacing(
int s);
84 void set_homogeneous(
bool value);
97 virtual void remove(
View *sv);