<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/gtk, branch rel-3-5-3</title>
<subtitle>Git mirror of the Scintilla editor component. Referenced by the SciTECO repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/'/>
<entry>
<title>Make Japanese IME work in windowed mode.</title>
<updated>2015-01-14T02:45:27+00:00</updated>
<author>
<name>Neil Hodgson</name>
<email>devnull@localhost</email>
</author>
<published>2015-01-14T02:45:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=bf7156b2e354a855e4ad49078d2a2825b7a88d8e'/>
<id>bf7156b2e354a855e4ad49078d2a2825b7a88d8e</id>
<content type='text'>
From johnsonj.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From johnsonj.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use gtk_clipboard_request_contents() instead of gtk_selection_convert() for paste on GTK</title>
<updated>2015-01-01T23:59:53+00:00</updated>
<author>
<name>Jiří Techet</name>
<email>techet@gmail.com</email>
</author>
<published>2015-01-01T23:59:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=2c9c08c2f39b9daf5dc24abdea4318cbe2510846'/>
<id>2c9c08c2f39b9daf5dc24abdea4318cbe2510846</id>
<content type='text'>
When compiling Scintilla on OS X with GTK2 backend (and GTK2 with Quartz backend),
gtk_selection_convert() doesn't work. GtkClipboard seems to work fine though.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When compiling Scintilla on OS X with GTK2 backend (and GTK2 with Quartz backend),
gtk_selection_convert() doesn't work. GtkClipboard seems to work fine though.
</pre>
</div>
</content>
</entry>
<entry>
<title>More natural looping over visual attributes.</title>
<updated>2014-12-17T08:45:10+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-12-17T08:45:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=45c5276ca7081d0e99d8520b89e077d3015bdaee'/>
<id>45c5276ca7081d0e99d8520b89e077d3015bdaee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Using indicators for inline IME.</title>
<updated>2014-12-09T02:06:50+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-12-09T02:06:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=a3d0e52f8d1052b9b6658f5c2cdc56079485e375'/>
<id>a3d0e52f8d1052b9b6658f5c2cdc56079485e375</id>
<content type='text'>
From johnsonj.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From johnsonj.
</pre>
</div>
</content>
</entry>
<entry>
<title>Extract FillVirtualSpace so it is not repeated and can be made less complex in</title>
<updated>2014-12-05T09:36:01+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-12-05T09:36:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=bfad851459cb44308d42b5889b6495c986a19438'/>
<id>bfad851459cb44308d42b5889b6495c986a19438</id>
<content type='text'>
the future.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the future.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid warning about assiging pointer to integer.</title>
<updated>2014-10-19T06:54:02+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-10-19T06:54:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=29811496ab936b978e21f135dc67e4be192aa28c'/>
<id>29811496ab936b978e21f135dc67e4be192aa28c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK: Don't create widgets in the ::realize handler</title>
<updated>2014-10-11T13:21:59+00:00</updated>
<author>
<name>Colomban Wendling</name>
<email>ban@herbesfolles.org</email>
</author>
<published>2014-10-11T13:21:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=b74ecec127137116ed3ed2bcb8b40268abc438b4'/>
<id>b74ecec127137116ed3ed2bcb8b40268abc438b4</id>
<content type='text'>
Creating a widget may lead to a ::hierarchy-changed signal to be
emitted, which itself may lead a tooltip window to be unrealized.
This is problematic because it can lead to the ::unrealize handler to
be called during the ::realize handler, breaking most of the logic
there assuming the widget was properly realized.

This fixes adding a Scintilla widget inside a GTK2 tooltip.  GTK3
didn't seem to be affected.

Also properly destroy the preedit popup window with the widget.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Creating a widget may lead to a ::hierarchy-changed signal to be
emitted, which itself may lead a tooltip window to be unrealized.
This is problematic because it can lead to the ::unrealize handler to
be called during the ::realize handler, breaking most of the logic
there assuming the widget was properly realized.

This fixes adding a Scintilla widget inside a GTK2 tooltip.  GTK3
didn't seem to be affected.

Also properly destroy the preedit popup window with the widget.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid extra space when pasting from external application on Windows.</title>
<updated>2014-10-09T12:25:56+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-10-09T12:25:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=0b9e682fb858119b7985cd1d5f83185ba4622894'/>
<id>0b9e682fb858119b7985cd1d5f83185ba4622894</id>
<content type='text'>
From Mitchell Foral.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From Mitchell Foral.
</pre>
</div>
</content>
</entry>
<entry>
<title>Include &lt;stdexcept&gt; due to report of a problem with compiling Document.h.</title>
<updated>2014-10-06T08:18:59+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-10-06T08:18:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=2db50d56a5db2f17fec9f93ea8fb04e33d327da1'/>
<id>2db50d56a5db2f17fec9f93ea8fb04e33d327da1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow using C++11 &lt;regex&gt; for searches as a provisional feature.</title>
<updated>2014-10-02T08:17:13+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-10-02T08:17:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=d99936faf68f6caa3608f0c597a183febd399e14'/>
<id>d99936faf68f6caa3608f0c597a183febd399e14</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
