GTK+ IOStream
Beta
<< GTK+ >> add C++ IOStream operators to GTK+. Now with extra abilities ... like network serialisation
|
#include <Container.H>
Public Member Functions | |
GtkWidget * | getWidget (void) |
GtkWidget * | show (void) |
GtkWidget * | hide (void) |
void | setBorder (unsigned int size) |
unsigned int | getBorder (void) |
Container & | operator<< (Container &b) |
Container & | operator<< (Container *b) |
virtual Container & | operator<< (GtkWidget *b) |
Container & | operator<< (LinkList< GtkWidget * > &ll) |
Container & | operator>> (GtkWidget *b) |
Container & | operator>> (Container *b) |
Container & | operator>> (Container &b) |
![]() | |
virtual | ~Widget () |
Destructor. More... | |
GtkWidget * | ref (void) |
void | unref (void) |
Protected Member Functions | |
virtual void | pack (GtkWidget *obj) |
Additional Inherited Members | |
![]() | |
GtkWidget * | widget |
The container based widget. More... | |
Container
Base class for those which inherit from the Container
Definition at line 28 of file Container.H.
|
inline |
Get the border size of the container class
Definition at line 70 of file Container.H.
|
inline |
Method to get the GtkWidget
Definition at line 41 of file Container.H.
|
inline |
Method to hide the box.
Definition at line 55 of file Container.H.
Operator to pack a different box in this box
b | The box to add. |
Definition at line 78 of file Container.H.
Operator to pack a pointed to box in this box
b | A pointer to the box to add. |
Definition at line 86 of file Container.H.
|
inlinevirtual |
Pack a GtkWidget into the box.
b | A pointer to the GtkWidget to pack. |
Reimplemented in Box, and Table.
Definition at line 94 of file Container.H.
Pack a GtkWidget into the box.
ll | A LinkList of GtkWidget* for packing from the first to the last |
Definition at line 103 of file Container.H.
|
inline |
Unpack a widget from the box. Note that removal of the widget can destroy it if the only reference is the box.
b | The widget to be unpacked from the box. |
Definition at line 115 of file Container.H.
Unpack a box pointer from the box. Note that removal of the widget can destroy it if the only reference is the box.
b | The pointer to the box to be unpacked from the box. |
Definition at line 125 of file Container.H.
Unpack a box from the box. Note that removal of the widget can destroy it if the only reference is the box.
b | The pointer to the box to be unpacked from the box. |
Definition at line 135 of file Container.H.
|
inlineprotectedvirtual |
|
inline |
Set the border size of the container class
size | the size of the border |
Definition at line 63 of file Container.H.
|
inline |
Method to show the box.
Definition at line 48 of file Container.H.