1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
%{C_TEMPLATE}
/*** gnomehello-app */
#include <config.h>
#include "%{APPNAMELC}.h"
#include "menus.h"
/* Keep a list of all open application windows */
static GSList* app_list = NULL;
static gint delete_event_cb(GtkWidget* w, GdkEventAny* e, gpointer data);
static void button_click_cb(GtkWidget* w, gpointer data);
GtkWidget*
hello_app_new(const gchar* message,
const gchar* geometry,
GSList* greet)
{
GtkWidget* app;
GtkWidget* button;
GtkWidget* label;
GtkWidget* status;
GtkWidget* frame;
/*** gnomehello-widgets */
app = gnome_app_new(PACKAGE, _("%{APPNAME}"));
frame = gtk_frame_new(NULL);
button = gtk_button_new();
label = gtk_label_new(message ? message : _("Hello, World!"));
gtk_window_set_policy(GTK_WINDOW(app), FALSE, TRUE, FALSE);
gtk_window_set_default_size(GTK_WINDOW(app), 250, 350);
gtk_window_set_wmclass(GTK_WINDOW(app), "hello", "%{APPNAME}");
gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN);
gtk_container_set_border_width(GTK_CONTAINER(button), 10);
gtk_container_add(GTK_CONTAINER(button), label);
gtk_container_add(GTK_CONTAINER(frame), button);
gnome_app_set_contents(GNOME_APP(app), frame);
status = gnome_appbar_new(FALSE, TRUE, GNOME_PREFERENCES_NEVER);
gnome_app_set_statusbar(GNOME_APP(app), status);
hello_install_menus_and_toolbar(app);
/* gnomehello-widgets ***/
/*** gnomehello-signals */
gtk_signal_connect(GTK_OBJECT(app),
"delete_event",
GTK_SIGNAL_FUNC(delete_event_cb),
NULL);
gtk_signal_connect(GTK_OBJECT(button),
"clicked",
GTK_SIGNAL_FUNC(button_click_cb),
label);
/* gnomehello-signals ***/
/*** gnomehello-geometry */
if (geometry != NULL)
{
gint x, y, w, h;
if ( gnome_parse_geometry( geometry,
&x, &y, &w, &h ) )
{
if (x != -1)
{
gtk_widget_set_uposition(app, x, y);
}
if (w != -1)
{
gtk_window_set_default_size(GTK_WINDOW(app), w, h);
}
}
else
{
g_error(_("Could not parse geometry string `%s'"), geometry);
}
}
/* gnomehello-geometry ***/
if (greet != NULL)
{
GtkWidget* dialog;
gchar* greetings = g_strdup(_("Special Greetings to:\n"));
GSList* tmp = greet;
while (tmp != NULL)
{
gchar* old = greetings;
greetings = g_strconcat(old,
(gchar*) tmp->data,
"\n",
NULL);
g_free(old);
tmp = g_slist_next(tmp);
}
dialog = gnome_ok_dialog(greetings);
g_free(greetings);
gnome_dialog_set_parent(GNOME_DIALOG(dialog), GTK_WINDOW(app));
}
app_list = g_slist_prepend(app_list, app);
return app;
}
void
hello_app_close(GtkWidget* app)
{
g_return_if_fail(GNOME_IS_APP(app));
app_list = g_slist_remove(app_list, app);
gtk_widget_destroy(app);
if (app_list == NULL)
{
/* No windows remaining */
gtk_main_quit();
}
}
/*** gnomehello-quit */
static gint
delete_event_cb(GtkWidget* window, GdkEventAny* e, gpointer data)
{
hello_app_close(window);
/* Prevent the window's destruction, since we destroyed it
* ourselves with hello_app_close()
*/
return TRUE;
}
/* gnomehello-quit ***/
static void
button_click_cb(GtkWidget* w, gpointer data)
{
GtkWidget* label;
gchar* text;
gchar* tmp;
label = GTK_WIDGET(data);
gtk_label_get(GTK_LABEL(label), &text);
tmp = g_strdup(text);
g_strreverse(tmp);
gtk_label_set_text(GTK_LABEL(label), tmp);
g_free(tmp);
}
/* gnomehello-app ***/
|