summaryrefslogtreecommitdiff
path: root/mateweather/mateweather-about.c
diff options
context:
space:
mode:
Diffstat (limited to 'mateweather/mateweather-about.c')
-rw-r--r--mateweather/mateweather-about.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/mateweather/mateweather-about.c b/mateweather/mateweather-about.c
new file mode 100644
index 00000000..7cdb82e5
--- /dev/null
+++ b/mateweather/mateweather-about.c
@@ -0,0 +1,55 @@
+/* $Id$ */
+
+/*
+ * Papadimitriou Spiros <[email protected]>
+ *
+ * This code released under the GNU GPL.
+ * Read the file COPYING for more information.
+ *
+ * About box
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <assert.h>
+
+#define MATEWEATHER_I_KNOW_THIS_IS_UNSTABLE
+
+#include "mateweather.h"
+#include "mateweather-about.h"
+
+void mateweather_about_run(MateWeatherApplet* gw_applet)
+{
+ static const gchar* authors[] = {
+ "Todd Kulesza <[email protected]>",
+ "Philip Langdale <[email protected]>",
+ "Ryan Lortie <[email protected]>",
+ "Davyd Madeley <[email protected]>",
+ "Spiros Papadimitriou <[email protected]>",
+ "Kevin Vandersloot <[email protected]>",
+ NULL
+ };
+
+ const gchar* documenters[] = {
+ "Dan Mueth <[email protected]>",
+ "Spiros Papadimitriou <[email protected]>",
+ "Sun MATE Documentation Team <[email protected]>",
+ "Davyd Madeley <[email protected]>",
+ NULL
+ };
+
+ gtk_show_about_dialog(NULL,
+ "version", VERSION,
+ "copyright", _("\xC2\xA9 1999-2005 by S. Papadimitriou and others"),
+ "comments", _("A panel application for monitoring local weather conditions."),
+ "authors", authors,
+ "documenters", documenters,
+ "translator-credits", _("translator-credits"),
+ "logo-icon-name", "weather-storm",
+ NULL);
+}