GNOME UI Library Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
struct GnomeDruidPagePrivate; GtkWidget* gnome_druid_page_new (void); gboolean gnome_druid_page_next (GnomeDruidPage *druid_page); void gnome_druid_page_prepare (GnomeDruidPage *druid_page); gboolean gnome_druid_page_back (GnomeDruidPage *druid_page); gboolean gnome_druid_page_cancel (GnomeDruidPage *druid_page); void gnome_druid_page_finish (GnomeDruidPage *druid_page); |
GObject +----GtkObject +----GtkWidget +----GtkContainer +----GtkBin +----GnomeDruidPage |
"back" gboolean user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); "cancel" gboolean user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); "finish" void user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); "next" gboolean user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); "prepare" void user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); |
GtkWidget* gnome_druid_page_new (void); |
Creates a new GnomeDruidPage.
Returns : | The newly created GnomeDruidPage. |
gboolean gnome_druid_page_next (GnomeDruidPage *druid_page); |
This will emit the "next" signal for that particular page. It is called by gnome-druid exclusively. It is expected that non-linear Druid's will override this signal and return TRUE if it handles changing pages.
void gnome_druid_page_prepare (GnomeDruidPage *druid_page); |
This emits the "prepare" signal for the page. It is called by gnome-druid exclusively.
gboolean gnome_druid_page_back (GnomeDruidPage *druid_page); |
This will emit the "back" signal for that particular page. It is called by gnome-druid exclusively. It is expected that non-linear Druid's will override this signal and return TRUE if it handles changing pages.
gboolean gnome_druid_page_cancel (GnomeDruidPage *druid_page); |
This will emit the "cancel" signal for that particular page. It is called by gnome-druid exclusively. It is expected that a Druid will override this signal and return TRUE if it does not want to exit.
void gnome_druid_page_finish (GnomeDruidPage *druid_page); |
This emits the "finish" signal for the page. It is called by gnome-druid exclusively.
gboolean user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); |
gboolean user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); |
void user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); |
gboolean user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); |
void user_function (GnomeDruidPage *druidpage, GtkWidget *widget, gpointer user_data); |