gnome-app-util

gnome-app-util

Functions

Types and Values

Includes

#include <libgnomeui/libgnomeui.h>

Description

Functions

gnome_app_message ()

GtkWidget *
gnome_app_message (GnomeApp *app,
                   const gchar *message);

gnome_app_message is deprecated and should not be used in newly-written code.

A simple message, in an OK dialog or the status bar. Requires confirmation from the user before it goes away.

Parameters

app

Pointer to GNOME app object

 

message

Text of message to be displayed

 

Returns

Pointer to dialog widget, or NULL if error or message in status bar.


gnome_app_flash ()

void
gnome_app_flash (GnomeApp *app,
                 const gchar *flash);

gnome_app_flash is deprecated and should not be used in newly-written code.

Flash the message in the statusbar for a few moments; if no statusbar, do nothing (?). For trivial little status messages, e.g. "Auto saving..."

Parameters

app

Pointer to GNOME app object

 

flash

Text of message to be flashed

 

gnome_app_error ()

GtkWidget *
gnome_app_error (GnomeApp *app,
                 const gchar *error);

gnome_app_error is deprecated and should not be used in newly-written code.

An important fatal error; if it appears in the statusbar, it might gdk_beep() and require acknowledgement.

Parameters

app

Pointer to GNOME app object

 

error

Text of error message to be displayed

 

Returns

Pointer to dialog widget, or NULL if error or message in status bar.


gnome_app_warning ()

GtkWidget *
gnome_app_warning (GnomeApp *app,
                   const gchar *warning);

gnome_app_warning is deprecated and should not be used in newly-written code.

A not-so-important error, but still marked better than a flash

Parameters

app

Pointer to GNOME app object

 

warning

Text of warning message to be displayed

 

Returns

Pointer to dialog widget, or NULL if error or message in status bar.


gnome_app_question ()

GtkWidget *
gnome_app_question (GnomeApp *app,
                    const gchar *question,
                    GnomeReplyCallback callback,
                    gpointer data);

gnome_app_question is deprecated and should not be used in newly-written code.

Ask a yes or no question, and call the callback when it's answered.

Parameters

app

Pointer to GNOME app object

 

question

Text of question to be displayed

 

Returns

Pointer to dialog widget, or NULL if error or message in status bar.


gnome_app_question_modal ()

GtkWidget *
gnome_app_question_modal (GnomeApp *app,
                          const gchar *question,
                          GnomeReplyCallback callback,
                          gpointer data);

gnome_app_question_modal is deprecated and should not be used in newly-written code.

Ask a yes or no question, and call the callback when it's answered.

Parameters

app

Pointer to GNOME app object

 

question

Text of question to be displayed

 

Returns

Pointer to dialog widget, or NULL if error or message in status bar.


gnome_app_ok_cancel ()

GtkWidget *
gnome_app_ok_cancel (GnomeApp *app,
                     const gchar *message,
                     GnomeReplyCallback callback,
                     gpointer data);

gnome_app_ok_cancel is deprecated and should not be used in newly-written code.

Parameters

app

Pointer to GNOME app object

 

message

Text of message to be displayed

 

Returns

Pointer to dialog widget, or NULL if error or message in status bar.


gnome_app_ok_cancel_modal ()

GtkWidget *
gnome_app_ok_cancel_modal (GnomeApp *app,
                           const gchar *message,
                           GnomeReplyCallback callback,
                           gpointer data);

gnome_app_ok_cancel_modal is deprecated and should not be used in newly-written code.

Parameters

app

Pointer to GNOME app object

 

message

Text of message to be displayed

 

Returns

Pointer to dialog widget, or NULL if error or message in status bar.


gnome_app_request_string ()

GtkWidget *
gnome_app_request_string (GnomeApp *app,
                          const gchar *prompt,
                          GnomeStringCallback callback,
                          gpointer data);

gnome_app_request_string is deprecated and should not be used in newly-written code.

Parameters

app

Pointer to GNOME app object

 

prompt

Text of prompt to be displayed

 

Returns

Pointer to dialog widget, or NULL if error or message in status bar.


gnome_app_request_password ()

GtkWidget *
gnome_app_request_password (GnomeApp *app,
                            const gchar *prompt,
                            GnomeStringCallback callback,
                            gpointer data);

gnome_app_request_password is deprecated and should not be used in newly-written code.

Parameters

app

Pointer to GNOME app object

 

prompt

Text of prompt to be displayed

 

Returns

Pointer to dialog widget, or NULL if error or message in status bar.


GnomeAppProgressFunc ()

gdouble
(*GnomeAppProgressFunc) (gpointer data);

GnomeAppProgressFunc is deprecated and should not be used in newly-written code.


GnomeAppProgressCancelFunc ()

void
(*GnomeAppProgressCancelFunc) (gpointer data);

GnomeAppProgressCancelFunc is deprecated and should not be used in newly-written code.


gnome_app_progress_timeout ()

GnomeAppProgressKey
gnome_app_progress_timeout (GnomeApp *app,
                            const gchar *description,
                            guint32 interval,
                            GnomeAppProgressFunc percentage_cb,
                            GnomeAppProgressCancelFunc cancel_cb,
                            gpointer data);

gnome_app_progress_timeout is deprecated and should not be used in newly-written code.


gnome_app_progress_manual ()

GnomeAppProgressKey
gnome_app_progress_manual (GnomeApp *app,
                           const gchar *description,
                           GnomeAppProgressCancelFunc cancel_cb,
                           gpointer data);

gnome_app_progress_manual is deprecated and should not be used in newly-written code.


gnome_app_set_progress ()

void
gnome_app_set_progress (GnomeAppProgressKey key,
                        gdouble percent);

gnome_app_set_progress is deprecated and should not be used in newly-written code.


gnome_app_progress_done ()

void
gnome_app_progress_done (GnomeAppProgressKey key);

gnome_app_progress_done is deprecated and should not be used in newly-written code.

Types and Values

GnomeAppProgressKey

typedef gpointer GnomeAppProgressKey;

GnomeAppProgressKey is deprecated and should not be used in newly-written code.