gtkIOStream
1.7.0
GTK+ << C++ IOStream operators for GTK+. Now with ORBing, numerical computation, audio client and more ...
|
#include <Container.H>
Public Member Functions | |
void | setBorder (unsigned int size) |
unsigned int | getBorder (void) |
Container & | operator<< (Container &c) |
Container & | operator<< (Container *c) |
Container & | operator<< (Widget &w) |
Container & | operator<< (Widget *w) |
virtual Container & | operator<< (GtkWidget *w) |
Container & | operator<< (LinkList< GtkWidget *> &ll) |
Container & | operator>> (GtkWidget *w) |
Container & | operator>> (Container *c) |
Container & | operator>> (Container &c) |
Container & | operator>> (LinkList< GtkWidget *> &ll) |
void | setChildrensSensitivity (bool sens) |
bool | areAnyChildrensSensitive (void) |
unsigned int | size () |
Public Member Functions inherited from Widget | |
Widget () | |
Construcotr. More... | |
Widget (GtkWidget *w) | |
virtual | ~Widget () |
Destructor. More... | |
GtkWidget * | ref (void) |
void | unref (void) |
GtkWidget * | show (void) |
GtkWidget * | hide (void) |
bool | getVisible (void) |
GtkWidget * | getWidget (void) |
bool | getSensitive (void) |
void | setSensitive (bool sens) |
void | getSize (int &width, int &height) |
virtual void | setSize (int width, int height) |
void | getLocationSize (int &x, int &y, int &width, int &height) |
void | queueDraw () |
GdkWindow * | getWindow () |
void | connect (const char *event, GCallback callback, gpointer data) |
void | connectAfter (const char *event, GCallback callback, gpointer data) |
void | connectExposeEventCallback (GCallback callback, void *data) |
void | connectExposeEventCallback (GtkWidget *w, GCallback callback, void *data) |
void | connectConfigureEventCallback (GCallback callback, void *data) |
void | connectConfigureEventCallback (GtkWidget *w, GCallback callback, void *data) |
Widget & | operator<< (DragNDrop &dnd) |
Widget & | operator>> (DragNDrop &dnd) |
Protected Member Functions | |
virtual void | pack (GtkWidget *obj) |
Protected Member Functions inherited from Widget | |
virtual bool | checkDropValidity (GtkWidget *w, GtkWidget *sourceWidget, int info, const unsigned char *selectionStoredData) |
virtual bool | dragDataReceived (GtkWidget *w, GtkWidget *sourceWidget, int info, const unsigned char *selectionStoredData, int length) |
virtual void | dragLeave (GtkWidget *w, GtkWidget *sourceWidget) |
virtual bool | dragMotion (GtkWidget *w, GtkWidget *sourceWidget, int x, int y) |
virtual int | chooseTheTargetToUse (GtkWidget *w, GtkWidget *sourceWidget, DragNDrop &dnd) |
virtual void | dragDataGet (GtkWidget *w, GtkSelectionData *selectionData, guint info) |
virtual void | dragDataDelete (GtkWidget *w) |
virtual void | dragBegin (GtkWidget *w) |
virtual void | dragEnd (GtkWidget *w) |
Additional Inherited Members | |
Protected Attributes inherited from Widget | |
GtkWidget * | widget |
The container based widget. More... | |
Base class for those which inherit from the Container
Definition at line 28 of file Container.H.
|
inline |
Finds if any of the container's children are sensitive.
Definition at line 164 of file Container.H.
|
inline |
Get the border size of the container class
Definition at line 48 of file Container.H.
Operator to pack a different container in this container
c | The container to add. |
Definition at line 56 of file Container.H.
Operator to pack a pointed to container in this container
c | A pointer to the container to add. |
Definition at line 64 of file Container.H.
Operator to pack a Widget class
w | The widget to add. |
Definition at line 72 of file Container.H.
Operator to pack a Widget pointer
w | A pointer to the Widget to add. |
Definition at line 80 of file Container.H.
|
inlinevirtual |
Pack a GtkWidget into the container.
w | A pointer to the GtkWidget to pack. |
Reimplemented in Box, and Table.
Definition at line 88 of file Container.H.
Pack a LinkList of GtkWidget(s) into the container.
ll | A LinkList of GtkWidget* for packing from the first to the last |
Definition at line 97 of file Container.H.
|
inline |
Unpack a widget from the container. Note that removal of the widget can destroy it if the only reference is the container.
w | The widget to be unpacked from the container. |
Definition at line 109 of file Container.H.
Unpack a container pointer from the container. Note that removal of the widget can destroy it if the only reference is the container.
c | The pointer to the container to be unpacked from the container. |
Definition at line 119 of file Container.H.
Unpack a container from the container. Note that removal of the widget can destroy it if the only reference is the container.
c | The pointer to the container to be unpacked from the container. |
Definition at line 129 of file Container.H.
Unpack a LinkList of GtkWidget(s) from the container.
ll | A LinkList of GtkWidget* for un-packing from the first to the last |
Definition at line 138 of file Container.H.
|
inlineprotectedvirtual |
|
inline |
Set the border size of the container class
size | the size of the border |
Definition at line 41 of file Container.H.
|
inline |
Sets the sensitivity of the containers childeren.
sens | The sensitivity to set. |
Definition at line 151 of file Container.H.
|
inline |
Find out how many children are contained.
Definition at line 178 of file Container.H.
GTK+ IOStream
Beta
|