marks static many functions and global variables. Contribution from
2005-07-08 Lucas Rocha <lucasr@cvs.gnome.org> * src/about.c, src/option.c, src/fileselection.c: marks static many functions and global variables. Contribution from Benoît Dejean.
This commit is contained in:
parent
0bc80a781d
commit
d6f1d76768
@ -1,3 +1,9 @@
|
|||||||
|
2005-07-08 Lucas Rocha <lucasr@cvs.gnome.org>
|
||||||
|
|
||||||
|
* src/about.c, src/option.c, src/fileselection.c:
|
||||||
|
marks static many functions and global variables.
|
||||||
|
Contribution from Benoît Dejean.
|
||||||
|
|
||||||
2005-07-06 Lucas Rocha <lucasr@cvs.gnome.org>
|
2005-07-06 Lucas Rocha <lucasr@cvs.gnome.org>
|
||||||
|
|
||||||
* THANKS, src/about.c: Update.
|
* THANKS, src/about.c: Update.
|
||||||
|
@ -45,7 +45,7 @@ static GtkWidget *cred_dialog;
|
|||||||
static void zenity_about_dialog_response (GtkWidget *widget, int response, gpointer data);
|
static void zenity_about_dialog_response (GtkWidget *widget, int response, gpointer data);
|
||||||
|
|
||||||
/* Sync with the people in the THANKS file */
|
/* Sync with the people in the THANKS file */
|
||||||
static const gchar *author_credits[] = {
|
static const gchar *const author_credits[] = {
|
||||||
"Authors",
|
"Authors",
|
||||||
"=======",
|
"=======",
|
||||||
"Glynn Foster <glynn foster sun com>",
|
"Glynn Foster <glynn foster sun com>",
|
||||||
@ -184,7 +184,7 @@ static const gchar *author_credits[] = {
|
|||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
gchar *translator_credits;
|
static gchar *translator_credits;
|
||||||
|
|
||||||
static gint
|
static gint
|
||||||
zenity_move_clothes_event (GnomeCanvasItem *item,
|
zenity_move_clothes_event (GnomeCanvasItem *item,
|
||||||
@ -242,7 +242,7 @@ typedef struct
|
|||||||
gdouble x, y;
|
gdouble x, y;
|
||||||
} MonkClothes;
|
} MonkClothes;
|
||||||
|
|
||||||
static MonkClothes monk_clothes[] = {
|
static const MonkClothes monk_clothes[] = {
|
||||||
{"gnome-tshirt.png", 30.0, 20.0},
|
{"gnome-tshirt.png", 30.0, 20.0},
|
||||||
{"sunglasses.png", ZENITY_CANVAS_X - 100.0 , ZENITY_CANVAS_Y - 150.0 },
|
{"sunglasses.png", ZENITY_CANVAS_X - 100.0 , ZENITY_CANVAS_Y - 150.0 },
|
||||||
{"surfboard.png", 30.0, ZENITY_CANVAS_Y - 200.0},
|
{"surfboard.png", 30.0, ZENITY_CANVAS_Y - 200.0},
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#include "zenity.h"
|
#include "zenity.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
ZenityData *zen_data;
|
static ZenityData *zen_data;
|
||||||
|
|
||||||
static void zenity_fileselection_dialog_response (GtkWidget *widget, int response, gpointer data);
|
static void zenity_fileselection_dialog_response (GtkWidget *widget, int response, gpointer data);
|
||||||
|
|
||||||
|
173
src/option.c
173
src/option.c
@ -30,72 +30,72 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
/* General Options */
|
/* General Options */
|
||||||
gchar *zenity_general_dialog_title;
|
static gchar *zenity_general_dialog_title;
|
||||||
gchar *zenity_general_window_icon;
|
static gchar *zenity_general_window_icon;
|
||||||
int zenity_general_width;
|
static int zenity_general_width;
|
||||||
int zenity_general_height;
|
static int zenity_general_height;
|
||||||
gchar *zenity_general_dialog_text;
|
static gchar *zenity_general_dialog_text;
|
||||||
gchar *zenity_general_separator;
|
static gchar *zenity_general_separator;
|
||||||
gboolean zenity_general_multiple;
|
static gboolean zenity_general_multiple;
|
||||||
gboolean zenity_general_editable;
|
static gboolean zenity_general_editable;
|
||||||
gchar *zenity_general_uri;
|
static gchar *zenity_general_uri;
|
||||||
gboolean zenity_general_dialog_no_wrap;
|
static gboolean zenity_general_dialog_no_wrap;
|
||||||
|
|
||||||
/* Calendar Dialog Options */
|
/* Calendar Dialog Options */
|
||||||
gboolean zenity_calendar_active;
|
static gboolean zenity_calendar_active;
|
||||||
int zenity_calendar_day;
|
static int zenity_calendar_day;
|
||||||
int zenity_calendar_month;
|
static int zenity_calendar_month;
|
||||||
int zenity_calendar_year;
|
static int zenity_calendar_year;
|
||||||
gchar *zenity_calendar_date_format;
|
static gchar *zenity_calendar_date_format;
|
||||||
|
|
||||||
/* Entry Dialog Options */
|
/* Entry Dialog Options */
|
||||||
gboolean zenity_entry_active;
|
static gboolean zenity_entry_active;
|
||||||
gchar *zenity_entry_entry_text;
|
static gchar *zenity_entry_entry_text;
|
||||||
gboolean zenity_entry_hide_text;
|
static gboolean zenity_entry_hide_text;
|
||||||
|
|
||||||
/* Error Dialog Options */
|
/* Error Dialog Options */
|
||||||
gboolean zenity_error_active;
|
static gboolean zenity_error_active;
|
||||||
|
|
||||||
/* Info Dialog Options */
|
/* Info Dialog Options */
|
||||||
gboolean zenity_info_active;
|
static gboolean zenity_info_active;
|
||||||
|
|
||||||
/* File Selection Dialog Options */
|
/* File Selection Dialog Options */
|
||||||
gboolean zenity_file_active;
|
static gboolean zenity_file_active;
|
||||||
gboolean zenity_file_directory;
|
static gboolean zenity_file_directory;
|
||||||
gboolean zenity_file_save;
|
static gboolean zenity_file_save;
|
||||||
|
|
||||||
/* List Dialog Options */
|
/* List Dialog Options */
|
||||||
gboolean zenity_list_active;
|
static gboolean zenity_list_active;
|
||||||
gchar **zenity_list_columns;
|
static gchar **zenity_list_columns;
|
||||||
gboolean zenity_list_checklist;
|
static gboolean zenity_list_checklist;
|
||||||
gboolean zenity_list_radiolist;
|
static gboolean zenity_list_radiolist;
|
||||||
gchar *zenity_list_print_column;
|
static gchar *zenity_list_print_column;
|
||||||
gchar *zenity_list_hide_column;
|
static gchar *zenity_list_hide_column;
|
||||||
|
|
||||||
/* Notification Dialog Options */
|
/* Notification Dialog Options */
|
||||||
gboolean zenity_notification_active;
|
static gboolean zenity_notification_active;
|
||||||
gboolean zenity_notification_listen;
|
static gboolean zenity_notification_listen;
|
||||||
|
|
||||||
/* Progress Dialog Options */
|
/* Progress Dialog Options */
|
||||||
gboolean zenity_progress_active;
|
static gboolean zenity_progress_active;
|
||||||
int zenity_progress_percentage;
|
static int zenity_progress_percentage;
|
||||||
gboolean zenity_progress_pulsate;
|
static gboolean zenity_progress_pulsate;
|
||||||
gboolean zenity_progress_auto_close;
|
static gboolean zenity_progress_auto_close;
|
||||||
|
|
||||||
/* Question Dialog Options */
|
/* Question Dialog Options */
|
||||||
gboolean zenity_question_active;
|
static gboolean zenity_question_active;
|
||||||
|
|
||||||
/* Text Dialog Options */
|
/* Text Dialog Options */
|
||||||
gboolean zenity_text_active;
|
static gboolean zenity_text_active;
|
||||||
|
|
||||||
/* Warning Dialog Options */
|
/* Warning Dialog Options */
|
||||||
gboolean zenity_warning_active;
|
static gboolean zenity_warning_active;
|
||||||
|
|
||||||
/* Miscelaneus Options */
|
/* Miscelaneus Options */
|
||||||
gboolean zenity_misc_about;
|
static gboolean zenity_misc_about;
|
||||||
gboolean zenity_misc_version;
|
static gboolean zenity_misc_version;
|
||||||
|
|
||||||
GOptionEntry general_options[] = {
|
static GOptionEntry general_options[] = {
|
||||||
{
|
{
|
||||||
"title",
|
"title",
|
||||||
'\0',
|
'\0',
|
||||||
@ -137,7 +137,7 @@ GOptionEntry general_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry calendar_options[] = {
|
static GOptionEntry calendar_options[] = {
|
||||||
{
|
{
|
||||||
"calendar",
|
"calendar",
|
||||||
'\0',
|
'\0',
|
||||||
@ -197,7 +197,7 @@ GOptionEntry calendar_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry entry_options[] = {
|
static GOptionEntry entry_options[] = {
|
||||||
{
|
{
|
||||||
"entry",
|
"entry",
|
||||||
'\0',
|
'\0',
|
||||||
@ -240,7 +240,7 @@ GOptionEntry entry_options[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
GOptionEntry error_options[] = {
|
static GOptionEntry error_options[] = {
|
||||||
{
|
{
|
||||||
"error",
|
"error",
|
||||||
'\0',
|
'\0',
|
||||||
@ -273,7 +273,7 @@ GOptionEntry error_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry info_options[] = {
|
static GOptionEntry info_options[] = {
|
||||||
{
|
{
|
||||||
"info",
|
"info",
|
||||||
'\0',
|
'\0',
|
||||||
@ -306,7 +306,7 @@ GOptionEntry info_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry file_selection_options[] = {
|
static GOptionEntry file_selection_options[] = {
|
||||||
{
|
{
|
||||||
"file-selection",
|
"file-selection",
|
||||||
'\0',
|
'\0',
|
||||||
@ -366,7 +366,7 @@ GOptionEntry file_selection_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry list_options[] = {
|
static GOptionEntry list_options[] = {
|
||||||
{
|
{
|
||||||
"list",
|
"list",
|
||||||
'\0',
|
'\0',
|
||||||
@ -462,7 +462,7 @@ GOptionEntry list_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry notification_options[] = {
|
static GOptionEntry notification_options[] = {
|
||||||
{
|
{
|
||||||
"notification",
|
"notification",
|
||||||
'\0',
|
'\0',
|
||||||
@ -495,7 +495,7 @@ GOptionEntry notification_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry progress_options[] = {
|
static GOptionEntry progress_options[] = {
|
||||||
{
|
{
|
||||||
"progress",
|
"progress",
|
||||||
'\0',
|
'\0',
|
||||||
@ -547,7 +547,7 @@ GOptionEntry progress_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry question_options[] = {
|
static GOptionEntry question_options[] = {
|
||||||
{
|
{
|
||||||
"question",
|
"question",
|
||||||
'\0',
|
'\0',
|
||||||
@ -580,7 +580,7 @@ GOptionEntry question_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry text_options[] = {
|
static GOptionEntry text_options[] = {
|
||||||
{
|
{
|
||||||
"text-info",
|
"text-info",
|
||||||
'\0',
|
'\0',
|
||||||
@ -613,7 +613,7 @@ GOptionEntry text_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry warning_options[] = {
|
static GOptionEntry warning_options[] = {
|
||||||
{
|
{
|
||||||
"warning",
|
"warning",
|
||||||
'\0',
|
'\0',
|
||||||
@ -646,7 +646,7 @@ GOptionEntry warning_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
GOptionEntry miscellaneous_options[] = {
|
static GOptionEntry miscellaneous_options[] = {
|
||||||
{
|
{
|
||||||
"about",
|
"about",
|
||||||
'\0',
|
'\0',
|
||||||
@ -670,10 +670,10 @@ GOptionEntry miscellaneous_options[] = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
ZenityParsingOptions *results;
|
static ZenityParsingOptions *results;
|
||||||
GOptionContext *ctx;
|
static GOptionContext *ctx;
|
||||||
|
|
||||||
void
|
static void
|
||||||
zenity_option_init (void) {
|
zenity_option_init (void) {
|
||||||
|
|
||||||
results = g_new0 (ZenityParsingOptions, 1);
|
results = g_new0 (ZenityParsingOptions, 1);
|
||||||
@ -719,7 +719,7 @@ zenity_option_free (void) {
|
|||||||
g_option_context_free (ctx);
|
g_option_context_free (ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
zenity_option_set_dialog_mode (gboolean is_active, ZenityDialogMode mode)
|
zenity_option_set_dialog_mode (gboolean is_active, ZenityDialogMode mode)
|
||||||
{
|
{
|
||||||
if (is_active == TRUE) {
|
if (is_active == TRUE) {
|
||||||
@ -730,7 +730,7 @@ zenity_option_set_dialog_mode (gboolean is_active, ZenityDialogMode mode)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
gchar *
|
static gchar *
|
||||||
zenity_option_get_name (GOptionEntry *entries, gpointer arg_data)
|
zenity_option_get_name (GOptionEntry *entries, gpointer arg_data)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
@ -743,7 +743,8 @@ zenity_option_get_name (GOptionEntry *entries, gpointer arg_data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Error callback */
|
/* Error callback */
|
||||||
void zenity_option_error_callback (GOptionContext *context,
|
static void
|
||||||
|
zenity_option_error_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
GError **error)
|
GError **error)
|
||||||
@ -753,7 +754,7 @@ void zenity_option_error_callback (GOptionContext *context,
|
|||||||
|
|
||||||
/* Pre parse callbacks set the default option values */
|
/* Pre parse callbacks set the default option values */
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_general_pre_callback (GOptionContext *context,
|
zenity_general_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -773,7 +774,7 @@ zenity_general_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_calendar_pre_callback (GOptionContext *context,
|
zenity_calendar_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -788,7 +789,7 @@ zenity_calendar_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_entry_pre_callback (GOptionContext *context,
|
zenity_entry_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -801,7 +802,7 @@ zenity_entry_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_error_pre_callback (GOptionContext *context,
|
zenity_error_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -812,7 +813,7 @@ zenity_error_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_info_pre_callback (GOptionContext *context,
|
zenity_info_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -823,7 +824,7 @@ zenity_info_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_file_pre_callback (GOptionContext *context,
|
zenity_file_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -836,7 +837,7 @@ zenity_file_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_list_pre_callback (GOptionContext *context,
|
zenity_list_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -852,7 +853,7 @@ zenity_list_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_notification_pre_callback (GOptionContext *context,
|
zenity_notification_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -864,7 +865,7 @@ zenity_notification_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_progress_pre_callback (GOptionContext *context,
|
zenity_progress_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -878,7 +879,7 @@ zenity_progress_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_question_pre_callback (GOptionContext *context,
|
zenity_question_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -889,7 +890,7 @@ zenity_question_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_text_pre_callback (GOptionContext *context,
|
zenity_text_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -900,7 +901,7 @@ zenity_text_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_warning_pre_callback (GOptionContext *context,
|
zenity_warning_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -911,7 +912,7 @@ zenity_warning_pre_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_misc_pre_callback (GOptionContext *context,
|
zenity_misc_pre_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -926,7 +927,7 @@ zenity_misc_pre_callback (GOptionContext *context,
|
|||||||
/* Post parse callbacks assign the option values to
|
/* Post parse callbacks assign the option values to
|
||||||
parsing result and makes some post condition tests */
|
parsing result and makes some post condition tests */
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_general_post_callback (GOptionContext *context,
|
zenity_general_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -940,7 +941,7 @@ zenity_general_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_calendar_post_callback (GOptionContext *context,
|
zenity_calendar_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -994,7 +995,7 @@ zenity_calendar_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_entry_post_callback (GOptionContext *context,
|
zenity_entry_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1019,7 +1020,7 @@ zenity_entry_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_error_post_callback (GOptionContext *context,
|
zenity_error_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1036,7 +1037,7 @@ zenity_error_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_info_post_callback (GOptionContext *context,
|
zenity_info_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1053,7 +1054,7 @@ zenity_info_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_file_post_callback (GOptionContext *context,
|
zenity_file_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1080,7 +1081,7 @@ zenity_file_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_list_post_callback (GOptionContext *context,
|
zenity_list_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1134,7 +1135,7 @@ zenity_list_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_notification_post_callback (GOptionContext *context,
|
zenity_notification_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1154,7 +1155,7 @@ zenity_notification_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_progress_post_callback (GOptionContext *context,
|
zenity_progress_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1184,7 +1185,7 @@ zenity_progress_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_question_post_callback (GOptionContext *context,
|
zenity_question_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1202,7 +1203,7 @@ zenity_question_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_text_post_callback (GOptionContext *context,
|
zenity_text_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1218,7 +1219,7 @@ zenity_text_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_warning_post_callback (GOptionContext *context,
|
zenity_warning_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1235,7 +1236,7 @@ zenity_warning_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
static gboolean
|
||||||
zenity_misc_post_callback (GOptionContext *context,
|
zenity_misc_post_callback (GOptionContext *context,
|
||||||
GOptionGroup *group,
|
GOptionGroup *group,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
@ -1247,7 +1248,7 @@ zenity_misc_post_callback (GOptionContext *context,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
GOptionContext *
|
static GOptionContext *
|
||||||
zenity_create_context (void)
|
zenity_create_context (void)
|
||||||
{
|
{
|
||||||
GOptionContext *tmp_ctx;
|
GOptionContext *tmp_ctx;
|
||||||
|
Reference in New Issue
Block a user