Revision: 3676
http://geany.svn.sourceforge.net/geany/?rev=3676&view=rev
Author: eht16
Date: 2009-03-31 19:01:31 +0000 (Tue, 31 Mar 2009)
Log Message:
-----------
When hiding the messages window, set the input focus back to the editor widget (part of #1910393).
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/msgwindow.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-03-31 17:39:17 UTC (rev 3675)
+++ trunk/ChangeLog 2009-03-31 19:01:31 UTC (rev 3676)
@@ -2,6 +2,9 @@
* doc/geany.txt, doc/geany.html, src/main.c:
Add widget names for the menubar and toolbar.
+ * src/msgwindow.c:
+ When hiding the messages window, set the input focus back to the
+ editor widget (part of #1910393).
2009-03-30 Enrico Trƶger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/msgwindow.c
===================================================================
--- trunk/src/msgwindow.c 2009-03-31 17:39:17 UTC (rev 3675)
+++ trunk/src/msgwindow.c 2009-03-31 19:01:31 UTC (rev 3676)
@@ -42,6 +42,7 @@
#include "navqueue.h"
#include "editor.h"
#include "msgwindow.h"
+#include "keybindings.h"
#include <string.h>
#include <stdlib.h>
@@ -281,6 +282,8 @@
show);
ignore_callback = FALSE;
ui_widget_show_hide(ui_lookup_widget(main_widgets.window, "scrolledwindow1"), show);
+ /* set the input focus back to the editor */
+ keybindings_send_command(GEANY_KEY_GROUP_FOCUS, GEANY_KEYS_FOCUS_EDITOR);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3675
http://geany.svn.sourceforge.net/geany/?rev=3675&view=rev
Author: eht16
Date: 2009-03-31 17:39:17 +0000 (Tue, 31 Mar 2009)
Log Message:
-----------
Add widget names for the menubar and toolbar.
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/geany.html
trunk/doc/geany.txt
trunk/src/main.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-03-31 15:11:58 UTC (rev 3674)
+++ trunk/ChangeLog 2009-03-31 17:39:17 UTC (rev 3675)
@@ -1,3 +1,9 @@
+2009-03-31 Enrico Trƶger <enrico(dot)troeger(at)uvena(dot)de>
+
+ * doc/geany.txt, doc/geany.html, src/main.c:
+ Add widget names for the menubar and toolbar.
+
+
2009-03-30 Enrico Trƶger <enrico(dot)troeger(at)uvena(dot)de>
* scintilla/LexOthers.cxx, src/highlighting.c, tagmanager/conf.c:
Modified: trunk/doc/geany.html
===================================================================
--- trunk/doc/geany.html 2009-03-31 15:11:58 UTC (rev 3674)
+++ trunk/doc/geany.html 2009-03-31 17:39:17 UTC (rev 3675)
@@ -6,7 +6,7 @@
<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/" />
<title>Geany</title>
<meta name="authors" content="Enrico Trƶger Nick Treleaven Frank Lanitz" />
-<meta name="date" content="2009-03-16" />
+<meta name="date" content="2009-03-29" />
<style type="text/css">
/*
@@ -139,7 +139,7 @@
<br />Nick Treleaven
<br />Frank Lanitz</td></tr>
<tr><th class="docinfo-name">Date:</th>
-<td>2009-03-16</td></tr>
+<td>2009-03-29</td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>0.17</td></tr>
</tbody>
@@ -757,7 +757,7 @@
<p>To get a defined style get noticed by Geany you must it assign to
one of Geany's widgets. To do so, use the following line:</p>
<pre class="literal-block">
-widget "Geany*" style "geany_style"
+widget "Geany*" style "geanyStyle"
</pre>
<p>This would assign your already defined style "geany_style" to all Geany
widgets. You can also assign styles only to specific widgets. At the
@@ -770,6 +770,8 @@
<li>GeanyDialogPrefs</li>
<li>GeanyDialogProject</li>
<li>GeanyDialogSearch</li>
+<li>GeanyMenubar</li>
+<li>GeanyToolbar</li>
</ul>
<p>Example of a simple <tt class="docutils literal"><span class="pre">.gtkrc-2.0</span></tt>:</p>
<pre class="literal-block">
@@ -1811,7 +1813,7 @@
<dd>Whether to show the toolbar.</dd>
<dt>Append Toolbar to the Menu</dt>
<dd>Allows to append the toolbar to the main menu bar instead of placing it below.
-This is useful to save horizontal space.</dd>
+This is useful to save vertical space.</dd>
</dl>
</div>
<div class="section" id="appearance">
@@ -4715,7 +4717,7 @@
<div class="footer">
<hr class="footer" />
<a class="reference external" href="geany.txt">View document source</a>.
-Generated on: 2009-03-29 16:08 UTC.
+Generated on: 2009-03-31 17:37 UTC.
Generated by <a class="reference external" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference external" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
</div>
Modified: trunk/doc/geany.txt
===================================================================
--- trunk/doc/geany.txt 2009-03-31 15:11:58 UTC (rev 3674)
+++ trunk/doc/geany.txt 2009-03-31 17:39:17 UTC (rev 3675)
@@ -376,7 +376,7 @@
To get a defined style get noticed by Geany you must it assign to
one of Geany's widgets. To do so, use the following line::
- widget "Geany*" style "geany_style"
+ widget "Geany*" style "geanyStyle"
This would assign your already defined style "geany_style" to all Geany
widgets. You can also assign styles only to specific widgets. At the
@@ -389,6 +389,8 @@
* GeanyDialogPrefs
* GeanyDialogProject
* GeanyDialogSearch
+* GeanyMenubar
+* GeanyToolbar
Example of a simple ``.gtkrc-2.0``::
Modified: trunk/src/main.c
===================================================================
--- trunk/src/main.c 2009-03-31 15:11:58 UTC (rev 3674)
+++ trunk/src/main.c 2009-03-31 17:39:17 UTC (rev 3675)
@@ -292,6 +292,8 @@
gtk_widget_set_name(main_widgets.window, "GeanyMainWindow");
gtk_widget_set_name(ui_widgets.toolbar_menu, "GeanyToolbarMenu");
gtk_widget_set_name(main_widgets.editor_menu, "GeanyEditMenu");
+ gtk_widget_set_name(ui_lookup_widget(main_widgets.window, "menubar1"), "GeanyMenubar");
+ gtk_widget_set_name(main_widgets.toolbar, "GeanyToolbar");
#if ! GTK_CHECK_VERSION(2, 10, 0)
/* hide Page setup menu item, it isn't supported with non-GTK printing */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3674
http://geany.svn.sourceforge.net/geany/?rev=3674&view=rev
Author: ntrel
Date: 2009-03-31 15:11:58 +0000 (Tue, 31 Mar 2009)
Log Message:
-----------
Fix wording & typo.
Modified Paths:
--------------
branches/reorder-filetypes/doc/geany.txt
Modified: branches/reorder-filetypes/doc/geany.txt
===================================================================
--- branches/reorder-filetypes/doc/geany.txt 2009-03-31 15:07:27 UTC (rev 3673)
+++ branches/reorder-filetypes/doc/geany.txt 2009-03-31 15:11:58 UTC (rev 3674)
@@ -3378,8 +3378,8 @@
Then edit it and add any of the available elements listed in the file or remove
any of the existing elements. Of course, you can also reorder the elements as
you wish and add or remove additional separators.
-This file must be valid XML unless it can't be loaded and the global toolbar
-UI definition is used.
+This file must be valid XML, otherwise the global toolbar UI definition
+will be used instead.
.. note::
(1) You cannot add new actions which are not listed below.
@@ -3423,7 +3423,7 @@
Search Find the entered text in the current file (only useful if you also
use 'SearchEntry')
GotoEntry The goto field belonging to the 'Goto' element (can be used alone)
-Goto Jump to the entered line number (only useful if you also use 'SearchEntry')
+Goto Jump to the entered line number (only useful if you also use 'GotoEntry')
Preferences Show the preferences dialog
Quit Quit Geany
================== ==============================================================================
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3670
http://geany.svn.sourceforge.net/geany/?rev=3670&view=rev
Author: eht16
Date: 2009-03-30 18:13:31 +0000 (Mon, 30 Mar 2009)
Log Message:
-----------
Update/fix ActionScript keywords (patch by Chris Macksey, thanks).
Modified Paths:
--------------
trunk/ChangeLog
trunk/data/filetypes.actionscript
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-03-30 17:49:40 UTC (rev 3669)
+++ trunk/ChangeLog 2009-03-30 18:13:31 UTC (rev 3670)
@@ -4,6 +4,8 @@
Backport recent changes from Scintilla CVS to add partial support
for RFC2822 styled text using the Properties lexer.
Ignore leading whitespace for config files and RFC2822 text.
+ * data/filetypes.actionscript:
+ Update/fix ActionScript keywords (patch by Chris Macksey, thanks).
2009-03-29 Enrico Trƶger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/data/filetypes.actionscript
===================================================================
--- trunk/data/filetypes.actionscript 2009-03-30 17:49:40 UTC (rev 3669)
+++ trunk/data/filetypes.actionscript 2009-03-30 18:13:31 UTC (rev 3670)
@@ -24,9 +24,9 @@
[keywords]
# all items must be in one line
-primary=break case catch class const continue default do dynamic each else extends false final finally for function get if implements import in include Infinity int interface internal label namespace NaN native new null override package private protected public return set static super switch this throw true try typeof uint undefined var while with void
-secondary=arguments decodeURI decodeURIcomponent encodeURI encodeURIcomponent escape isFinite isNaN isXMLName parseFloat parseInt trace unescape
-classes=ArgumentError Array Boolean Class Date DefinitionError Error EvalError Function Math NameSpace Null Number Object QName RangeError ReferenceError RegExp SecurityError String SyntaxError TypeError URIError Vector VerifyError XML XMLList
+primary=arguments break case catch class const continue default do dynamic each else extends false final finally for function get if implements import in include Infinity interface internal label namespace NaN native new null override package private protected public return set static super switch this throw true try typeof undefined var while with
+secondary=decodeURI decodeURIcomponent encodeURI encodeURIcomponent escape isFinite isNaN isXMLName parseFloat parseInt trace unescape
+classes=ArgumentError Array Boolean Class Date DefinitionError Error EvalError Function int Math NameSpace Null Number Object QName RangeError ReferenceError RegExp SecurityError String SyntaxError TypeError uint URIError Vector VerifyError void XML XMLList
[settings]
# default extension used when saving files
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 3667
http://geany.svn.sourceforge.net/geany/?rev=3667&view=rev
Author: eht16
Date: 2009-03-27 16:42:57 +0000 (Fri, 27 Mar 2009)
Log Message:
-----------
Ignore errors when trying to delete the icon cache file even if it doesn't exist.
Modified Paths:
--------------
trunk/geany.spec.in
Modified: trunk/geany.spec.in
===================================================================
--- trunk/geany.spec.in 2009-03-27 16:25:57 UTC (rev 3666)
+++ trunk/geany.spec.in 2009-03-27 16:42:57 UTC (rev 3667)
@@ -49,7 +49,7 @@
# try uncommenting the following line to workaround the problem (and add sed to BuildRequires)
#sed -i "s@libdir='.*'@libdir='%{_libdir}/%{name}'@g" $RPM_BUILD_ROOT%{_libdir}/%{name}/*.la
-%__rm $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
+%__rm -f $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
%clean
%__rm -Rf $RPM_BUILD_ROOT
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.