Andrzej Rybczak
07fc58015e
bindings: add support for defining and executing commands
14 years ago
Andrzej Rybczak
4d6ea660bc
make defining screens with main window type as non-pointer possible
14 years ago
Andrzej Rybczak
4b60214ed1
window: fix operators for const char/wchar_t *
14 years ago
Andrzej Rybczak
63413368c8
remove remaining exclamation marks from messages
14 years ago
Andrzej Rybczak
84326efc46
move wstring related functions to wide_char file
14 years ago
Andrzej Rybczak
226fbdd2c9
fix shadowing warnings
14 years ago
Andrzej Rybczak
af2cdca3d0
change naming conventions in NC namespace
14 years ago
Andrzej Rybczak
d47cad1d50
get rid of 'using namespace NCurses' directive
14 years ago
Andrzej Rybczak
0447b4e881
window: remove GetXY
14 years ago
Andrzej Rybczak
b06e620913
more cleanup and grouping functions logically together
14 years ago
Andrzej Rybczak
a270fc8402
rewrite MPD::Song object
14 years ago
Andrzej Rybczak
9e071b074c
display: rewrite Display::Columns and Display::SongsInColumns
14 years ago
Andrzej Rybczak
f6cae753e2
implement input character queue and add PushCharacters macro utility
14 years ago
Andrzej Rybczak
6313139566
window: properly ignore all non-printable char codes (ctrl-?, F?, etc.)
14 years ago
Andrzej Rybczak
7b8a286c49
window: interpret ctrl-h as backspace
14 years ago
Andrzej Rybczak
f21499ff55
fix compilation with gcc-4.7 (ticket #3478 )
...
thanks for strcat for the patch.
14 years ago
Andrzej Rybczak
f8151904f5
update copyright dates
14 years ago
Andrzej Rybczak
ca956c3da3
update copyright dates
15 years ago
Andrzej Rybczak
9adb762036
fix compilation with mingw32
16 years ago
Andrzej Rybczak
68fa910c78
handle invalid characters properly
16 years ago
Andrzej Rybczak
08daa61907
update copyright notices
16 years ago
Andrzej Rybczak
3365b066c3
window: store strings history in list instead of deque
17 years ago
Andrzej Rybczak
495ec25a0a
simplify Clear() in Window and its derivatives
...
it removes argument responsible for immediate refreshing.
since after all calls that were refreshing screen there was
call to Refresh() anyway, this switch doesn't make much sense.
17 years ago
Andrzej Rybczak
dd866e9337
fix visualizer
17 years ago
Andrzej Rybczak
dd04406ee5
poll both stdin and mpd using one select()
...
this allows for immediate reading mpd events
17 years ago
Andrzej Rybczak
35d776dfab
supress warnings about signedness if pdcurses is used
17 years ago
Andrzej Rybczak
70910b77ed
make ncmpcpp compile with -fno-exceptions
17 years ago
Andrzej Rybczak
14a774b8a3
window: move some members from protected to private section
17 years ago
Andrzej Rybczak
487b2fc1c9
reimplement Window::hasCoords if pdcurses is used
17 years ago
Andrzej Rybczak
0a2a7290f6
new feature: support for underlined text
17 years ago
Andrzej Rybczak
eee80427fe
change prototype of Window::Recreate() and throw away almost-duplicated code
17 years ago
Andrzej Rybczak
84418130fe
if Colors struct contains clEnd, remove current color set from stack
...
previously it just did nothing, which wasn't correct behaviour at all.
17 years ago
Andrzej Rybczak
f734b43229
remove GNUC_UNUSED from Window::Clear() argument
...
it's not needed since the variable is used.
17 years ago
Andrzej Rybczak
da4457a6e5
update copy contructor of NCurses::Window
17 years ago
Andrzej Rybczak
fc6d367f75
remove Clone() and EmptyClone() methods from NCurses::Window and derives
...
these functions served no purpose.
17 years ago
Andrzej Rybczak
21468d9537
document class NCurses::Window and remove some unused code from it
17 years ago
Andrzej Rybczak
c35deb3b94
move override wcwidth with 1 if WIN32 if defined to window.h
17 years ago
Andrzej Rybczak
b8c9d149b1
do not allocate mem for s in ToString on heap since it has const size
17 years ago
Andrzej Rybczak
bc1a8a2d1a
allow for unicode characters in progressbar_look
17 years ago
Andrzej Rybczak
26326de2c8
fix setting format flags in Window::operator<<(Format)
...
I though static variables are created for each class object,
but apparently they aren't, which makes the previous design
utterly broken. I'm suprised it somehow worked before.
17 years ago
Andrzej Rybczak
113e54c85c
Revert "cosider different size of size_t type on 32bits and 64bits arches"
...
This reverts commit 9faf3acf2f
and applies correct patch (thx for Damien Leone for pointing this)
Conflicts:
src/ncmpcpp.cpp
17 years ago
Andrzej Rybczak
df051bf674
remove using declarations
17 years ago
Andrzej Rybczak
9dab25e02c
use prefix ++ instead of postfix where available
17 years ago
Andrzej Rybczak
9faf3acf2f
cosider different size of size_t type on 32bits and 64bits arches
17 years ago
Andrzej Rybczak
d965f4e517
new feature: mouse support
17 years ago
Andrzej Rybczak
ecd4c8cc17
get rid of C style casts
17 years ago
Andrzej Rybczak
c22653fc38
pretend there is no history if input string is encrypted
17 years ago
Andrzej Rybczak
a0cbd8fc32
new feature: input text history
17 years ago
Andrzej Rybczak
f92b0101aa
use ctrl+u to clear text from input
17 years ago
Andrzej Rybczak
84a9af2ee9
make use of gcc's __attribute__ extension
17 years ago