SF.net SVN: geany-plugins:[787] trunk/geanylatex/src/geanylatex.c
frlan at users.sourceforge.net
frlan at xxxxx
Sat Jun 27 08:25:18 UTC 2009
Revision: 787
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=787&view=rev
Author: frlan
Date: 2009-06-27 08:25:17 +0000 (Sat, 27 Jun 2009)
Log Message:
-----------
GeanyLaTeX: Added item for wizard to toolbar
Modified Paths:
--------------
trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2009-06-26 22:22:53 UTC (rev 786)
+++ trunk/geanylatex/src/geanylatex.c 2009-06-27 08:25:17 UTC (rev 787)
@@ -92,6 +92,7 @@
const GtkActionEntry format_icons[] =
{
+ { "Wizard", GTK_STOCK_NEW, NULL, NULL, N_("Runs LaTeX wizard"), G_CALLBACK(glatex_kbwizard) },
{ "Italic", GTK_STOCK_ITALIC, NULL, NULL, N_("Marks selected text as italic"), G_CALLBACK(glatex_kb_format_bold) },
{ "Bold", GTK_STOCK_BOLD, NULL, NULL, N_("Marks selected text as bold"), G_CALLBACK(glatex_kb_format_bold) },
{ "Underline", GTK_STOCK_UNDERLINE, NULL, NULL, N_("Underlines selected text"), G_CALLBACK(glatex_kb_format_bold) },
@@ -107,13 +108,15 @@
const gchar *toolbar_markup =
"<ui>"
"<toolbar name='glatex_format_toolbar'>"
- "<toolitem action='Italic'/>"
- "<toolitem action='Bold'/>"
- "<toolitem action='Underline'/>"
- "<separator/>"
- "<toolitem action='Centered' />"
- "<toolitem action='Left' />"
- "<toolitem action='Right'/>"
+ "<toolitem action='Wizard'/>"
+ "<separator/>"
+ "<toolitem action='Italic'/>"
+ "<toolitem action='Bold'/>"
+ "<toolitem action='Underline'/>"
+ "<separator/>"
+ "<toolitem action='Centered' />"
+ "<toolitem action='Left' />"
+ "<toolitem action='Right'/>"
"</toolbar>"
"</ui>";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Plugins-Commits
mailing list