[gnome-latex: 7/205] About dialog
- From: Sébastien Wilmet <swilmet src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-latex: 7/205] About dialog
- Date: Fri, 14 Dec 2018 10:47:28 +0000 (UTC)
commit 30dfa6986f2da2c2d5743f8529e946fe625f9af2
Author: Sébastien Wilmet <sebastien wilmet gmail com>
Date: Fri Jul 31 22:48:00 2009 +0200
About dialog
TODO | 2 +-
src/main.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++----------------
src/main.h | 6 ++++++
3 files changed, 62 insertions(+), 19 deletions(-)
---
diff --git a/TODO b/TODO
index 52b99d7..35702ce 100644
--- a/TODO
+++ b/TODO
@@ -2,7 +2,7 @@ TODO LaTeXila
Jul 31, 2009 to Aug 7, 2009
-[-] about
+[x] about
[-] files
- new (with tabs)
diff --git a/src/main.c b/src/main.c
index f48af8b..922a0d1 100644
--- a/src/main.c
+++ b/src/main.c
@@ -7,13 +7,6 @@
#include "main.h"
-static void
-menu_add_widget (GtkUIManager *ui_manager, GtkWidget *widget, GtkContainer *box)
-{
- gtk_box_pack_start (GTK_BOX (box), widget, FALSE, FALSE, 0);
- gtk_widget_show (widget);
-}
-
int
main (int argc, char *argv[])
{
@@ -30,8 +23,8 @@ main (int argc, char *argv[])
GtkActionEntry entries[] =
{
{"File", NULL, _("File"), NULL, NULL, NULL},
- {"FileNew", GTK_STOCK_NEW, _("New"), "<Control>N", _("New file"),
- NULL},
+ {"FileNew", GTK_STOCK_NEW, _("New"), "<Control>N",
+ _("New file"), NULL},
{"FileOpen", GTK_STOCK_OPEN, _("Open..."), "<Control>O",
_("Open a file"), NULL},
{"FileSave", GTK_STOCK_SAVE, _("Save..."), "<Control>S",
@@ -48,17 +41,18 @@ main (int argc, char *argv[])
_("Redo the last undone action"), NULL},
{"LaTeX", NULL, "LaTeX", NULL, NULL, NULL},
- {"compile_latex", GTK_STOCK_EXECUTE, _("Compile (latex)"),
- "<Release>F5", _("Produce the document in DVI format"), NULL},
+ {"compile_latex", GTK_STOCK_EXECUTE, _("Compile (latex)"), "<Release>F5",
+ _("Produce the document in DVI format"), NULL},
{"viewDVI", GTK_STOCK_FILE, _("View DVI"), "<Release>F6",
_("View the DVI file"), NULL},
- {"compile_pdflatex", GTK_STOCK_EXECUTE, _("Compile (pdflatex)"),
- "<Release>F7", _("Produce the document in PDF format"), NULL},
+ {"compile_pdflatex", GTK_STOCK_EXECUTE, _("Compile (pdflatex)"), "<Release>F7",
+ _("Produce the document in PDF format"), NULL},
{"viewPDF", GTK_STOCK_FILE, _("View PDF"), "<Release>F8",
_("View the PDF file"), NULL},
{"Help", NULL, _("Help"), NULL, NULL, NULL},
- {"HelpAbout", GTK_STOCK_ABOUT, _("About"), NULL, _("About LaTeXila"), NULL}
+ {"HelpAbout", GTK_STOCK_ABOUT, _("About"), NULL,
+ _("About LaTeXila"), about_dialog}
};
int nb_entries = sizeof (entries) / sizeof (entries[0]);
@@ -67,16 +61,16 @@ main (int argc, char *argv[])
gtk_init (&argc, &argv);
/* main window */
-
GtkWidget *window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
g_signal_connect (G_OBJECT (window), "destroy",
G_CALLBACK (gtk_main_quit), NULL);
g_signal_connect (G_OBJECT (window), "delete_event",
G_CALLBACK (gtk_main_quit), NULL);
- gtk_window_set_title (GTK_WINDOW (window), "LaTeXila");
+ gtk_window_set_title (GTK_WINDOW (window), PROGRAM_NAME);
+ gtk_window_set_position (GTK_WINDOW (window), GTK_WIN_POS_CENTER);
+ gtk_window_set_default_size (GTK_WINDOW (window), 500, 400);
/* boxes and panes */
-
GtkWidget *vbox1 = gtk_vbox_new (FALSE, 0);
gtk_container_add (GTK_CONTAINER (window), vbox1);
@@ -136,8 +130,51 @@ main (int argc, char *argv[])
gtk_widget_show_all (window);
-
gtk_main ();
return EXIT_SUCCESS;
}
+
+static void
+menu_add_widget (GtkUIManager *ui_manager, GtkWidget *widget, GtkContainer *box)
+{
+ gtk_box_pack_start (GTK_BOX (box), widget, FALSE, FALSE, 0);
+ gtk_widget_show (widget);
+}
+
+static void
+about_dialog (void)
+{
+ char *comments = _(PROGRAM_NAME " is a LaTeX development environment for the GNOME Desktop");
+ char *copyright = "Copyright © 2009 Sébastien Wilmet";
+
+ //TODO show the appropriate text for the GPL 3 licence (from a file?)
+ char *licence = "GPL 3 or later";
+
+ //TODO set the url hook
+ char *website = "http://latexila.sourceforge.net/";
+
+ //TODO list of translators
+ const char * const authors[] =
+ {
+ "Sébastien Wilmet <sebastien wilmet gmail com>",
+ NULL
+ };
+
+ gtk_show_about_dialog (
+ NULL,
+ "program-name", PROGRAM_NAME,
+ "authors", authors,
+ "comments", comments,
+ "copyright", copyright,
+ "license", licence,
+ "version", PROGRAM_VERSION,
+ "title", _("About " PROGRAM_NAME),
+ "website", website,
+ NULL
+ );
+}
+
+
+
+
diff --git a/src/main.h b/src/main.h
index 87e636f..64c53ce 100644
--- a/src/main.h
+++ b/src/main.h
@@ -3,4 +3,10 @@
#define _(STRING) gettext(STRING)
+#define PROGRAM_NAME "LaTeXila"
+#define PROGRAM_VERSION "0.0.1"
+
+static void menu_add_widget (GtkUIManager *ui_manager, GtkWidget *widget, GtkContainer *box);
+static void about_dialog (void);
+
#endif // MAIN_H
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]