summaryrefslogtreecommitdiff
path: root/src/gui/curses/gui-curses-bar-window.c
AgeCommit message (Collapse)Author
2024-04-26core: remove check of NULL pointers before calling string_free_split() ↵Sébastien Helleu
(issue #865)
2024-04-25core: remove check of NULL pointers before calling free() (issue #865)Sébastien Helleu
2024-04-01core: fix print of pointer valuesSébastien Helleu
2024-03-12core: remove "wee-" prefix from source files in src/core and src/core/hookSébastien Helleu
2024-01-01core: update copyright datesSébastien Helleu
2023-07-08core: use type "enum" in optionsSébastien Helleu
2023-03-17core: split gui-curses.h into multiple headersSébastien Helleu
2023-01-01core: update copyright datesSébastien Helleu
2022-12-19core: return directly output of string_dyn_free without temporary variableSébastien Helleu
2022-12-10core: do not display non printable chars, fix function utf8_char_size_screenSébastien Helleu
Now the function utf8_char_size_screen can return -1 when the char is not printable. It has a specific behavior for some chars: - U+0009: value of option weechat.look.tab_width - U+0001 to U+001F (except U+0009): 1 - U+00AD (soft hyphen): -1 - U+200B (zero width space): -1
2022-12-10core: toggle reverse video attribute in bars for chars < 32 only if not ↵Sébastien Helleu
already enabled
2022-12-10core: expand tabulations as spaces in barsSébastien Helleu
2022-04-18core: add bar item "spacer"Sébastien Helleu
2022-01-17core: update copyright datesSébastien Helleu
2021-01-02core: update copyright datesSébastien Helleu
2020-06-21core: add bar option "color_bg_inactive" (issue #732)Sébastien Helleu
2020-05-10core: Don't collapse consecutive newlines in bar contentTrygve Aaberge
This allows blank lines to be displayed in the input bar when you input multiple consecutive newlines. Relates to #1498
2020-01-04core: update copyright datesSébastien Helleu
2019-06-15api: add argument "strip_items" in function string_splitSébastien Helleu
2019-03-10core: replace argument "keep_eol" by "flags" in function string_split ↵Sébastien Helleu
(closes #1322)
2019-01-01core: update copyright datesSébastien Helleu
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-01-05core: update copyright datesSébastien Helleu
2017-01-01core: update copyright datesSébastien Helleu
2016-01-01core: update copyright datesSébastien Helleu
2015-07-04api: fix type of value returned by functions utf8_prev_char, utf8_next_char ↵Sébastien Helleu
and utf8_add_offset
2015-06-27core: fix display of invalid UTF-8 chars in bars (issue #218)Sébastien Helleu
2015-01-01core: update copyright datesSébastien Helleu
2014-12-28core: check bar conditions in root bars and on each update of a bar itemSébastien Helleu
2014-03-30core: fix reset of attributes in bars when "resetcolor" is used (closes #41)Sebastien Helleu
2014-02-22core: remove dead assignment in function gui_bar_window_drawSebastien Helleu
2014-02-16core: add bare display mode (for easy text selection and click on URLs)Sebastien Helleu
New key: alt+"!", to swith to bare display (same key to come back to standard display). New options: - weechat.look.bare_display_exit_on_input (default: on): by default any changes in input will return to standard display - weechat.look.bare_display_time_format (default: "%H:%M"): the format of time used in bare display.
2014-01-01core: update copyright datesSebastien Helleu
2013-12-18core: add support of UTF-8 chars in horizontal/vertical separatorsSebastien Helleu
2013-12-11core: fix text emphasis with wide chars on screen like japanese (patch ↵Sebastien Helleu
#8253) (patch from Ryuunosuke Ayanokouzi)
2013-11-02core: add support of italic text (requires ncurses >= 5.9 patch 20130831)Sebastien Helleu
2013-09-23core: replace some calls to ncurses *printw functions by *addstrSebastien Helleu
2013-08-16core: add text emphasis in messages when searching text in bufferSebastien Helleu
New options: - weechat.look.emphasized_attributes - weechat.color.emphasized - weechat.color.emphasized_bg
2013-01-01core: update copyright datesSebastien Helleu
2012-12-15core: move comments with description of C file to top of filesSebastien Helleu
2012-12-13core: reformat comments for functionsSebastien Helleu
2012-11-30core: fix display of combining chars (patch from Nei) (bug #37775)Sebastien Helleu
2012-08-17core: fix display of "bar more down" char when text is truncated by size_max ↵Nils Görs
in bars with vertical filling (bug #37054)
2012-04-11core: fix display bugs and crashs with small windows (bug #36107)Sebastien Helleu
2012-01-08core: update copyright datesSebastien Helleu
2011-10-26core: remove unneeded whitespaceSebastien Helleu
2011-10-15core: add color attribute "|" and value "resetcolor" for function ↵Sebastien Helleu
weechat_color in plugin API (bug #34550)
2011-08-26core: add new options weechat.look.bar_more_left/right/up/downSebastien Helleu
2011-08-02core: stop horizontal bar scroll at the end of content (for bars with ↵Sebastien Helleu
horizontal filling) (bug #27908)
2011-07-26core: add mouse support (task #5435), free cursor movement, hook_focus, fix ↵Sebastien Helleu
bugs with key "^" (bug #32072, bug #21381), fix bugs with bar windows, completion and /buffer New features and bugs fixed: - mouse support: new command /mouse, new option weechat.look.mouse, new key context "mouse" - free movement of cursor: new command /cursor, new key context "cursor" - new hook_focus (used by cursor and mouse) - info "cursor_mode" - bugs fixed with key "^" - allow plugin name in /buffer name - fix bugs with bar windows: do not create bar windows for hidden bars - fix completion bug when two words for completion are equal but with different case - automatic scroll direction in /bar scroll (x/y is now optional)