Revision: 661
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=661&view=rev
Author: frlan
Date: 2009-05-22 20:03:56 +0000 (Fri, 22 May 2009)
Log Message:
-----------
GeanyLaTeX: Minor extension of documentation
Modified Paths:
--------------
trunk/geanylatex/doc/geanylatex.tex
Modified: trunk/geanylatex/doc/geanylatex.tex
===================================================================
--- trunk/geanylatex/doc/geanylatex.tex 2009-05-22 20:03:23 UTC (rev 660)
+++ trunk/geanylatex/doc/geanylatex.tex 2009-05-22 20:03:56 UTC (rev 661)
@@ -52,6 +52,13 @@
\date{\today}
\begin{document}
+
+\newpage
+\dedication{\normalsize \textbf{Note:} Please note the document has been created on
+\today. If you are using devel version from SVN, please compile and check
+\texttt{doc/geanylatex.tex} from sources. Please check page \pageref
+{sec:compiling_of_documentation}, section \ref{sec:compiling_of_documentation}}
+
\pagenumbering{Roman}
\maketitle
\tableofcontents
@@ -104,6 +111,7 @@
all systems Geany is able to run.
\section{Installation}
+\subsection{Compiling the plugin itself}
Compiling and installing the code is done by the following three
commands:
@@ -122,7 +130,15 @@
authors\footnote{Contact data can be found at chapter \ref{contact},
page \pageref{contact}.}
+\subsection{Compiling of documentation}
+\label{sec:compiling_of_documentation}
+Sources of this documentation are available throught
+\texttt{doc/geanylatex.tex} inside source tree. To compile the sources
+usage of \texttt{pdflatex} which should be delivered with your favorite
+\LaTeX{} distribution is recommended. For compiling into HTML format
+might use \texttt{htlatex}.
+
\section{Usage}
\begin{figure}[h!]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 660
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=660&view=rev
Author: frlan
Date: 2009-05-22 20:03:23 +0000 (Fri, 22 May 2009)
Log Message:
-----------
GeanyLaTeX: Use gtk_widget_hide()/gtk_widget_show() instead of destroying widget for saving some CPU time on possible reactivating of toolbar.
Modified Paths:
--------------
trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2009-05-22 20:02:56 UTC (rev 659)
+++ trunk/geanylatex/src/geanylatex.c 2009-05-22 20:03:23 UTC (rev 660)
@@ -196,15 +196,21 @@
/* Apply changes to Geany */
/* Add toolbar if requested */
- if (glatex_set_toolbar_active == TRUE && glatex_toolbar == NULL)
+ if (glatex_set_toolbar_active == TRUE)
{
- init_toolbar();
+ if (glatex_toolbar == NULL)
+ {
+ init_toolbar();
+ }
+ else
+ {
+ gtk_widget_show(glatex_toolbar);
+ }
}
- /* Destroy toolbar if there is any in case of its not needed anymore */
+ /* Hide toolbar */
else if (glatex_set_toolbar_active == FALSE && glatex_toolbar != NULL)
{
- gtk_widget_destroy(glatex_toolbar);
- glatex_toolbar = NULL;
+ gtk_widget_hide(glatex_toolbar);
}
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 657
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=657&view=rev
Author: frlan
Date: 2009-05-22 20:01:53 +0000 (Fri, 22 May 2009)
Log Message:
-----------
GeanySendMail: Remove some unused and maybe confusing comment
Modified Paths:
--------------
trunk/geanysendmail/src/geanysendmail.c
Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c 2009-05-19 17:30:21 UTC (rev 656)
+++ trunk/geanysendmail/src/geanysendmail.c 2009-05-22 20:01:53 UTC (rev 657)
@@ -360,11 +360,9 @@
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pref_widgets.checkbox_icon_to_toolbar), icon_in_toolbar);
gtk_widget_show(pref_widgets.checkbox_icon_to_toolbar);
- pref_widgets.checkbox_use_addressdialog = gtk_check_button_new_with_label(_("Using dialog for entering email address of recipients"));
- /*gtk_tooltips_set_tip(tooltip, checkbox_use_addressdialog,
- _
- ("Shows a icon in the toolbar to send file more easy."),
- NULL);*/
+ pref_widgets.checkbox_use_addressdialog = gtk_check_button_new_with_label(_
+ ("Using dialog for entering email address of recipients"));
+
gtk_button_set_focus_on_click(GTK_BUTTON(pref_widgets.checkbox_use_addressdialog), FALSE);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pref_widgets.checkbox_use_addressdialog), use_address_dialog);
gtk_widget_show(pref_widgets.checkbox_use_addressdialog);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.