<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sciteco/interface-ncurses.h, branch v2.3.0</title>
<subtitle>Scintilla-based Text Editor and COrrector</subtitle>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/'/>
<entry>
<title>autoconf preparation: move everything into src/ subdir</title>
<updated>2012-12-04T21:07:08+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-12-04T16:29:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=d8a316514c03d85b771a9dce4a8a51b875d955b3'/>
<id>d8a316514c03d85b771a9dce4a8a51b875d955b3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>support auto-completion of symbols in the scintilla command (ES)</title>
<updated>2012-11-24T18:57:07+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-24T18:57:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=71f84c2ca051fb3f4e0e98faaba05e9449598b81'/>
<id>71f84c2ca051fb3f4e0e98faaba05e9449598b81</id>
<content type='text'>
 * does not yet handle case-insensitive completions
 * does not handle omitting of the SCI_ prefix
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * does not yet handle case-insensitive completions
 * does not handle omitting of the SCI_ prefix
</pre>
</div>
</content>
</entry>
<entry>
<title>support PDCurses/Win32A</title>
<updated>2012-11-22T22:01:14+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-22T22:01:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=9da8a507121377b64a13c3fe2398cf6dc95d6aaa'/>
<id>9da8a507121377b64a13c3fe2398cf6dc95d6aaa</id>
<content type='text'>
 * terminal resizing must be enabled explicitly
 * endwin() does not work as expected, so don't use it
 * messages may always be sent to stdout/stderr
 * patching Scinterm was necessary: it did not expect COLORS &gt; 8. will still build
   with unpatched versions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * terminal resizing must be enabled explicitly
 * endwin() does not work as expected, so don't use it
 * messages may always be sent to stdout/stderr
 * patching Scinterm was necessary: it did not expect COLORS &gt; 8. will still build
   with unpatched versions
</pre>
</div>
</content>
</entry>
<entry>
<title>PDCurses compatibility changes</title>
<updated>2012-11-22T12:51:30+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-22T12:51:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=7ac3c26c927d636c0f2331f00d5a5c11aec8a2ff'/>
<id>7ac3c26c927d636c0f2331f00d5a5c11aec8a2ff</id>
<content type='text'>
standard curses implementation on Windows (MinGW32)
 * may also be used on Unix, to build X11 versions using XCurses
 * cannot do the avoid-screen-refresh thing on PDCurses
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
standard curses implementation on Windows (MinGW32)
 * may also be used on Unix, to build X11 versions using XCurses
 * cannot do the avoid-screen-refresh thing on PDCurses
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed clearing message line: do not display an empty message line (which can mean an empty line sent to stdout)</title>
<updated>2012-11-16T18:19:48+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-16T18:19:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=bd3b16c660e763f32f390ea35c38f7c1e0addd95'/>
<id>bd3b16c660e763f32f390ea35c38f7c1e0addd95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>keep a buffer dirty flag and display infos about the current buffer in the interfaces (including the dirty flag)</title>
<updated>2012-11-16T13:42:47+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-16T13:42:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=f6ff327f0b7b50b74328e448ce862f7212dcae23'/>
<id>f6ff327f0b7b50b74328e448ce862f7212dcae23</id>
<content type='text'>
 * was a bit tricky because the Scintilla SAVEPOINTS cannot be (fully) used
 * when a file is loaded or saved, a Scintilla SAVEPOINT is set
 * SAVEPOINTLEFT notifications are used to set a buffer dirty
 * SAVEPOINTREACHED notifications are useless since Scintilla does not consider the saves themselves to be undoable
 * GTK interface displays infos in window title bar
 * NCURSES interface has also been updated and cleaned up a bit. Infos are displayed in a new info line.
 * NCURSES: fixed popup display after terminal resizing
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * was a bit tricky because the Scintilla SAVEPOINTS cannot be (fully) used
 * when a file is loaded or saved, a Scintilla SAVEPOINT is set
 * SAVEPOINTLEFT notifications are used to set a buffer dirty
 * SAVEPOINTREACHED notifications are useless since Scintilla does not consider the saves themselves to be undoable
 * GTK interface displays infos in window title bar
 * NCURSES interface has also been updated and cleaned up a bit. Infos are displayed in a new info line.
 * NCURSES: fixed popup display after terminal resizing
</pre>
</div>
</content>
</entry>
<entry>
<title>NCurses interface: support terminal resizing</title>
<updated>2012-11-15T20:03:25+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-15T20:03:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=eb51ff93c5c54dfb82e607b4843f9160523076b7'/>
<id>eb51ff93c5c54dfb82e607b4843f9160523076b7</id>
<content type='text'>
 * currently, the message line is not remembered and reset on termresize
 * any open popup window will be drawn over by the other windows
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * currently, the message line is not remembered and reset on termresize
 * any open popup window will be drawn over by the other windows
</pre>
</div>
</content>
</entry>
<entry>
<title>support stdio for curses interface</title>
<updated>2012-11-15T18:52:31+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-15T18:52:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=51e123544bff3ca0bdd8f6ba6a1c507b57071ca4'/>
<id>51e123544bff3ca0bdd8f6ba6a1c507b57071ca4</id>
<content type='text'>
 * ./sciteco commandline help works now
 * messages issued during batch-mode macro processing are written to stdout/stderr
 * output can be redirected
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * ./sciteco commandline help works now
 * messages issued during batch-mode macro processing are written to stdout/stderr
 * output can be redirected
</pre>
</div>
</content>
</entry>
<entry>
<title>added NCurses user interface (based on Scinterm)</title>
<updated>2012-11-15T07:28:49+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-15T07:28:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=7d68fdafcd42e42c8bceeb384af7be1b5dfd3a65'/>
<id>7d68fdafcd42e42c8bceeb384af7be1b5dfd3a65</id>
<content type='text'>
 * terminal resizing not yet supported
 * file popups are sort of a hack
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * terminal resizing not yet supported
 * file popups are sort of a hack
</pre>
</div>
</content>
</entry>
</feed>
