summaryrefslogtreecommitdiff
path: root/poezio/windows/confirm.py
blob: 591ff89aea9d2f941890f135ebc1d2c3a3313106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from poezio.windows.base_wins import Win

from poezio.theming import get_theme, to_curses_attr

class Dialog(Win):
    str_accept = " Accept "
    str_refuse = " Reject "
    def __init__(self, helper_text, critical=False):
        self.text = helper_text
        self.accept = False
        self.critical = critical

    def refresh(self):
        self._win.erase()
        self.addstr(self.text + "\n   ")

        if self.critical:
            col = to_curses_attr(get_theme().COLOR_WARNING_PROMPT)
        else:
            col = to_curses_attr(get_theme().COLOR_TAB_NORMAL)

        if self.accept:
            self.addstr(self.str_accept, col)
        else:
            self.addstr(self.str_accept)

        self.addstr("   ")

        if self.accept:
            self.addstr(self.str_refuse)
        else:
            self.addstr(self.str_refuse, col)

        self._refresh()

    def toggle_choice(self):
        self.accept = not self.accept