![]() |
![]() |
![]() |
MATE UI Library Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy |
#include <libmateui/libmateui.h> GtkWidget * (*MateMDIChildViewCreator) (MateMDIChild *Param1
,gpointer Param2
); GList * (*MateMDIChildMenuCreator) (MateMDIChild *Param1
,GtkWidget *Param2
,gpointer Param3
); gchar * (*MateMDIChildConfigFunc) (MateMDIChild *Param1
,gpointer Param2
); GtkWidget * (*MateMDIChildLabelFunc) (MateMDIChild *Param1
,GtkWidget *Param2
,gpointer Param3
); struct MateMDIChild; GtkWidget * mate_mdi_child_add_view (MateMDIChild *mdi_child
); void mate_mdi_child_remove_view (MateMDIChild *mdi_child
,GtkWidget *view
); void mate_mdi_child_set_name (MateMDIChild *mdi_child
,const gchar *name
); void mate_mdi_child_set_menu_template (MateMDIChild *mdi_child
,MateUIInfo *menu_tmpl
);
GObject +----GInitiallyUnowned +----GtkObject +----MateMDIChild +----MateMDIGenericChild
GtkWidget * (*MateMDIChildViewCreator) (MateMDIChild *Param1
,gpointer Param2
);
MateMDIChildViewCreator
is deprecated and should not be used in newly-written code.
|
|
|
|
Returns : |
GList * (*MateMDIChildMenuCreator) (MateMDIChild *Param1
,GtkWidget *Param2
,gpointer Param3
);
MateMDIChildMenuCreator
is deprecated and should not be used in newly-written code.
|
|
|
|
|
|
Returns : |
gchar * (*MateMDIChildConfigFunc) (MateMDIChild *Param1
,gpointer Param2
);
MateMDIChildConfigFunc
is deprecated and should not be used in newly-written code.
|
|
|
|
Returns : |
GtkWidget * (*MateMDIChildLabelFunc) (MateMDIChild *Param1
,GtkWidget *Param2
,gpointer Param3
);
MateMDIChildLabelFunc
is deprecated and should not be used in newly-written code.
|
|
|
|
|
|
Returns : |
struct MateMDIChild;
MateMDIChild
is deprecated and should not be used in newly-written code.
GtkWidget * mate_mdi_child_add_view (MateMDIChild *mdi_child
);
mate_mdi_child_add_view
is deprecated and should not be used in newly-written code.
Creates a new view of a child (a GtkWidget) adds it to the list of the views and returns a pointer to it. Virtual function that has to be specified for classes derived from MateMDIChild is used to create the new view.
|
A pointer to a MateMDIChild object. |
Returns : |
A pointer to the new view. |
void mate_mdi_child_remove_view (MateMDIChild *mdi_child
,GtkWidget *view
);
mate_mdi_child_remove_view
is deprecated and should not be used in newly-written code.
Removes view view
from the list of mdi_child
's views and
unrefs it.
|
A pointer to a MateMDIChild object. |
|
View to be removed. |
void mate_mdi_child_set_name (MateMDIChild *mdi_child
,const gchar *name
);
mate_mdi_child_set_name
is deprecated and should not be used in newly-written code.
Changes name of mdi_child
to name
. name
is duplicated and stored
in mdi_child
. If mdi_child
has already been added to MateMDI,
it also takes care of updating it.
|
A pointer to a MateMDIChild object. |
|
String containing the new name for the child. |
void mate_mdi_child_set_menu_template (MateMDIChild *mdi_child
,MateUIInfo *menu_tmpl
);
mate_mdi_child_set_menu_template
is deprecated and should not be used in newly-written code.
Sets the template for menus that are added and removed when differrent children get activated. This way, each child can modify the MDI menubar to suit its needs. If no template is set, the create_menus virtual function will be used for creating these menus (it has to return a GList of menu items). If no such function is specified, the menubar will be unchanged by MDI children.
|
A pointer to a MateMDIChild object. |
|
A MateUIInfo array describing the child specific menus. |