mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-05-01 03:31:33 +00:00
36 lines
681 B
C
36 lines
681 B
C
/** @file */
|
|
|
|
#ifndef __COMGTK_CONTAINER_H__
|
|
#define __COMGTK_CONTAINER_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
//
|
|
// PUBLIC FUNCTIONS
|
|
//
|
|
|
|
/**
|
|
* Destroys all child widgets of a container.
|
|
*
|
|
* @param container The container.
|
|
* @param destroy True to destroy, rather than just remove, the children.
|
|
*/
|
|
void wintc_container_clear(
|
|
GtkContainer* container,
|
|
gboolean destroy
|
|
);
|
|
|
|
/**
|
|
* Gets the nth child widget of a container.
|
|
*
|
|
* @param container The container.
|
|
* @param pos The index of the widget.
|
|
* @return The child widget at position N in the container.
|
|
*/
|
|
GtkWidget* wintc_container_get_nth_child(
|
|
GtkContainer* container,
|
|
gint pos
|
|
);
|
|
|
|
#endif
|