diff options
| author | Maxime Coste <mawww@kakoune.org> | 2016-12-30 07:01:13 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2016-12-30 07:01:13 +0000 |
| commit | 190a04d6c8de9cb8c5ef73f1bec03a904c7e11cf (patch) | |
| tree | e2c6e40e8f7119f20d9d44ec2b5c894f1f792a5e /src | |
| parent | ea6994dd3b3056b981f13ebb39072fd3dff485bd (diff) | |
Add a ncurses_change_colors option that can disable color palette change
Closes #1057
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.cc | 5 | ||||
| -rw-r--r-- | src/ncurses_ui.cc | 63 | ||||
| -rw-r--r-- | src/ncurses_ui.hh | 3 |
3 files changed, 45 insertions, 26 deletions
diff --git a/src/main.cc b/src/main.cc index cc27f953..88646230 100644 --- a/src/main.cc +++ b/src/main.cc @@ -272,10 +272,9 @@ void register_options() " ncurses_status_on_top bool\n" " ncurses_set_title bool\n" " ncurses_enable_mouse bool\n" + " ncurses_change_colors bool\n" " ncurses_wheel_up_button int\n" - " ncurses_wheel_down_button int\n" - " ncurses_buffer_padding_str str\n" - " ncurses_buffer_padding_type fill|single|off\n", + " ncurses_wheel_down_button int\n", UserInterface::Options{}); reg.declare_option("modelinefmt", "format string used to generate the modeline", "%val{bufname} %val{cursor_line}:%val{cursor_char_column} "_str); diff --git a/src/ncurses_ui.cc b/src/ncurses_ui.cc index 64f9a82a..1c57172d 100644 --- a/src/ncurses_ui.cc +++ b/src/ncurses_ui.cc @@ -133,7 +133,7 @@ int NCursesUI::get_color(Color color) auto it = m_colors.find(color); if (it != m_colors.end()) return it->second; - else if (can_change_color() and COLORS > 16) + else if (m_change_colors and can_change_color() and COLORS > 16) { kak_assert(color.color == Color::RGB); if (m_next_color > COLORS) @@ -168,26 +168,22 @@ int NCursesUI::get_color(Color color) int NCursesUI::get_color_pair(const Face& face) { - static int next_pair = 1; - ColorPair colors{face.fg, face.bg}; auto it = m_colorpairs.find(colors); if (it != m_colorpairs.end()) return it->second; else { - init_pair(next_pair, get_color(face.fg), get_color(face.bg)); - m_colorpairs[colors] = next_pair; - return next_pair++; + init_pair(m_next_pair, get_color(face.fg), get_color(face.bg)); + m_colorpairs[colors] = m_next_pair; + return m_next_pair++; } } void NCursesUI::set_face(NCursesWin* window, Face face, const Face& default_face) { - static int current_pair = -1; - - if (current_pair != -1) - wattroff(window, COLOR_PAIR(current_pair)); + if (m_active_pair != -1) + wattroff(window, COLOR_PAIR(m_active_pair)); if (face.fg == Color::Default) face.fg = default_face.fg; @@ -196,8 +192,8 @@ void NCursesUI::set_face(NCursesWin* window, Face face, const Face& default_face if (face.fg != Color::Default or face.bg != Color::Default) { - current_pair = get_color_pair(face); - wattron(window, COLOR_PAIR(current_pair)); + m_active_pair = get_color_pair(face); + wattron(window, COLOR_PAIR(m_active_pair)); } set_attribute(window, A_UNDERLINE, face.attributes & Attribute::Underline); @@ -218,6 +214,19 @@ void on_term_resize(int) EventManager::instance().force_signal(0); } +static constexpr std::initializer_list<std::pair<const Kakoune::Color, int>> +default_colors = { + { Color::Default, -1 }, + { Color::Black, COLOR_BLACK }, + { Color::Red, COLOR_RED }, + { Color::Green, COLOR_GREEN }, + { Color::Yellow, COLOR_YELLOW }, + { Color::Blue, COLOR_BLUE }, + { Color::Magenta, COLOR_MAGENTA }, + { Color::Cyan, COLOR_CYAN }, + { Color::White, COLOR_WHITE }, +}; + NCursesUI::NCursesUI() : m_stdin_watcher{0, FdEvents::Read, [this](FDWatcher&, FdEvents, EventMode mode) { @@ -228,17 +237,7 @@ NCursesUI::NCursesUI() m_on_key(*key); }}, m_assistant(assistant_clippy), - m_colors{ - { Color::Default, -1 }, - { Color::Black, COLOR_BLACK }, - { Color::Red, COLOR_RED }, - { Color::Green, COLOR_GREEN }, - { Color::Yellow, COLOR_YELLOW }, - { Color::Blue, COLOR_BLUE }, - { Color::Magenta, COLOR_MAGENTA }, - { Color::Cyan, COLOR_CYAN }, - { Color::White, COLOR_WHITE }, - } + m_colors{default_colors} { initscr(); raw(); @@ -1016,6 +1015,24 @@ void NCursesUI::set_ui_options(const Options& options) } { + auto it = options.find("ncurses_change_colors"); + auto value = it == options.end() or + (it->value == "yes" or it->value == "true"); + + if (can_change_color() and m_change_colors != value) + { + fputs("\033]104;\007", stdout); // try to reset palette + fflush(stdout); + m_colorpairs.clear(); + m_colors = default_colors; + m_next_color = 16; + m_next_pair = 1; + m_active_pair = -1; + } + m_change_colors = value; + } + + { auto enable_mouse_it = options.find("ncurses_enable_mouse"); enable_mouse(enable_mouse_it == options.end() or enable_mouse_it->value == "yes" or diff --git a/src/ncurses_ui.hh b/src/ncurses_ui.hh index bd330627..a25dbd64 100644 --- a/src/ncurses_ui.hh +++ b/src/ncurses_ui.hh @@ -80,6 +80,8 @@ private: UnorderedMap<Color, int, MemoryDomain::Faces> m_colors; UnorderedMap<ColorPair, int, MemoryDomain::Faces> m_colorpairs; int m_next_color = 16; + int m_next_pair = 1; + int m_active_pair = -1; struct Window : Rect { @@ -130,6 +132,7 @@ private: int m_wheel_down_button = 5; bool m_set_title = true; + bool m_change_colors = true; bool m_dirty = false; }; |
