<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/gtk, branch rel-3-5-2</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>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>
<entry>
<title>GTK: Fix auto-completion popup row height computation on GTK 3.14</title>
<updated>2014-09-24T16:25:51+00:00</updated>
<author>
<name>Colomban Wendling</name>
<email>ban@herbesfolles.org</email>
</author>
<published>2014-09-24T16:25:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=f6f890b4f6735d346417067987e826734a245e11'/>
<id>f6f890b4f6735d346417067987e826734a245e11</id>
<content type='text'>
GTK 3.14 changed how the cell padding is calculated, and I can't seem
to understand the new logic yet.  So, use the correct API for computing
the row size, which unfortunately doesn't work for us on GTK2, but
otherwise is a better way to go anyway.

Tested with GTK 3.2, 3.8, 3.10, 3.12 and 3.14.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GTK 3.14 changed how the cell padding is calculated, and I can't seem
to understand the new logic yet.  So, use the correct API for computing
the row size, which unfortunately doesn't work for us on GTK2, but
otherwise is a better way to go anyway.

Tested with GTK 3.2, 3.8, 3.10, 3.12 and 3.14.
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK: Don't hardcode auto-completion popup frame border width</title>
<updated>2014-09-16T21:06:36+00:00</updated>
<author>
<name>Colomban Wendling</name>
<email>ban@herbesfolles.org</email>
</author>
<published>2014-09-16T21:06:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=36bdf44890352a398436cdda8849754d86846e74'/>
<id>36bdf44890352a398436cdda8849754d86846e74</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK: Fix auto-completion popup sizing on some themes</title>
<updated>2014-09-12T16:09:18+00:00</updated>
<author>
<name>Colomban Wendling</name>
<email>ban@herbesfolles.org</email>
</author>
<published>2014-09-12T16:09:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=69507f9069e122240a38036ee0d29fe7b3458a88'/>
<id>69507f9069e122240a38036ee0d29fe7b3458a88</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK: Allow the auto-completion popup to be as small as needed</title>
<updated>2014-09-12T15:08:34+00:00</updated>
<author>
<name>Colomban Wendling</name>
<email>ban@herbesfolles.org</email>
</author>
<published>2014-09-12T15:08:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=7f4b273f07b8bc49260adfd599bec5a7c6cc0ba8'/>
<id>7f4b273f07b8bc49260adfd599bec5a7c6cc0ba8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK: Fix auto-completion popup width to better fit contents</title>
<updated>2014-09-11T12:37:20+00:00</updated>
<author>
<name>Colomban Wendling</name>
<email>ban@herbesfolles.org</email>
</author>
<published>2014-09-11T12:37:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=0f7bc838c7267ab304b17d538dc251fff32f58ce'/>
<id>0f7bc838c7267ab304b17d538dc251fff32f58ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
