summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-12-31 13:05:06 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-12-31 13:05:06 +0000
commit61245f40eb33545257c34d24701febf35be47690 (patch)
treedbbe2c9731a51a6a09fedc4171dfe0a47adf3c23 /src
parentc3597c425786d9f45aefe8a026b5a3d6ad25bc37 (diff)
downloadpoezio-61245f40eb33545257c34d24701febf35be47690.tar.gz
poezio-61245f40eb33545257c34d24701febf35be47690.tar.bz2
poezio-61245f40eb33545257c34d24701febf35be47690.tar.xz
poezio-61245f40eb33545257c34d24701febf35be47690.zip
fix InfoTab, fixed #2087
Diffstat (limited to 'src')
-rw-r--r--src/core.py2
-rw-r--r--src/tabs.py149
2 files changed, 88 insertions, 63 deletions
diff --git a/src/core.py b/src/core.py
index c8354e52..c3132665 100644
--- a/src/core.py
+++ b/src/core.py
@@ -91,7 +91,7 @@ class Core(object):
# information window.
self.information_buffer = TextBuffer()
self.information_win_size = config.get('info_win_height', 2, 'var')
- default_tab = tabs.InfoTab(self, "Info") if self.xmpp.anon\
+ default_tab = tabs.InfoTab(self) if self.xmpp.anon\
else tabs.RosterInfoTab(self)
default_tab.on_gain_focus()
self.tabs = [default_tab]
diff --git a/src/tabs.py b/src/tabs.py
index c7dddca5..d6b4d6d9 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -187,68 +187,6 @@ class Tab(object):
"""
pass
-class InfoTab(Tab):
- """
- The information tab, used to display global informations
- when using a anonymous account
- """
- def __init__(self, core):
- Tab.__init__(self, core)
- self.tab_win = windows.GlobalInfoBar()
- self.info_win = windows.TextWin()
- self.core.information_buffer.add_window(self.info_win)
- self.input = windows.Input()
- self.name = "Info"
- self.color_state = theme.COLOR_TAB_NORMAL
- self.resize()
-
- def resize(self):
- Tab.resize(self)
- self.tab_win.resize(1, self.width, self.height-2, 0, self.core.stdscr)
- self.text_win.resize(self.height-2, self.width, 0, 0, self.core.stdscr)
- self.input.resize(1, self.width, self.height-1, 0, self.core.stdscr)
-
- def refresh(self, tabs, informations, _):
- if not self.visible:
- return
- self.text_win.refresh(informations)
- self.tab_win.refresh(tabs, tabs[0])
- self.input.refresh()
-
- def get_name(self):
- return self.name
-
- def get_color_state(self):
- return self.color_state
-
- def set_color_state(self, color):
- return
-
- def on_input(self, key):
- return self.input.do_command(key)
-
- def on_lose_focus(self):
- self.color_state = theme.COLOR_TAB_NORMAL
-
- def on_gain_focus(self):
- self.color_state = theme.COLOR_TAB_CURRENT
- curses.curs_set(0)
-
- def on_scroll_up(self):
- pass
-
- def on_scroll_down(self):
- pass
-
- def on_info_win_size_changed(self):
- return
-
- def just_before_refresh(self):
- return
-
- def on_close(self):
- return
-
class ChatTab(Tab):
"""
A tab containing a chat of any type.
@@ -306,6 +244,93 @@ class ChatTab(Tab):
def command_say(self, line):
raise NotImplementedError
+class InfoTab(ChatTab):
+ """
+ The information tab, used to display global informations
+ when using a anonymous account
+ """
+ def __init__(self, core):
+ Tab.__init__(self, core)
+ self.tab_win = windows.GlobalInfoBar()
+ self.info_win = windows.TextWin()
+ self.core.information_buffer.add_window(self.info_win)
+ self.input = windows.Input()
+ self.name = "Info"
+ self.color_state = theme.COLOR_TAB_NORMAL
+ self.key_func['^J'] = self.on_enter
+ self.key_func['^M'] = self.on_enter
+ self.key_func['\n'] = self.on_enter
+ self.key_func['^I'] = self.completion
+ self.key_func['M-i'] = self.completion
+ self.resize()
+
+ def resize(self):
+ Tab.resize(self)
+ self.tab_win.resize(1, self.width, self.height-2, 0, self.core.stdscr)
+ self.info_win.resize(self.height-2, self.width, 0, 0, self.core.stdscr)
+ self.input.resize(1, self.width, self.height-1, 0, self.core.stdscr)
+
+ def refresh(self, tabs, informations, _):
+ if not self.visible:
+ return
+ self.info_win.refresh(informations)
+ self.tab_win.refresh(tabs, tabs[0])
+ self.input.refresh()
+
+ def on_enter(self):
+ txt = self.input.get_text()
+ if txt.startswith('/') and not txt.startswith('//') and\
+ not txt.startswith('/me '):
+ command = txt.strip().split()[0][1:]
+ arg = txt[2+len(command):] # jump the '/' and the ' '
+ if command in self.core.commands: # check global commands
+ self.core.commands[command][0](arg)
+ elif command in self.commands: # check tab-specific commands
+ self.commands[command][0](arg)
+ else:
+ self.core.information(_("Unknown command (%s)") % (command), _('Error'))
+
+ def completion(self):
+ self.complete_commands(self.input)
+
+ def get_name(self):
+ return self.name
+
+ def get_color_state(self):
+ return self.color_state
+
+ def set_color_state(self, color):
+ return
+
+ def on_input(self, key):
+ if key in self.key_func:
+ self.key_func[key]()
+ return False
+ self.input.do_command(key)
+ return False
+
+ def on_lose_focus(self):
+ self.color_state = theme.COLOR_TAB_NORMAL
+
+ def on_gain_focus(self):
+ self.color_state = theme.COLOR_TAB_CURRENT
+ curses.curs_set(1)
+
+ def on_scroll_up(self):
+ pass
+
+ def on_scroll_down(self):
+ pass
+
+ def on_info_win_size_changed(self):
+ return
+
+ def just_before_refresh(self):
+ return
+
+ def on_close(self):
+ return
+
class MucTab(ChatTab):
"""
The tab containing a multi-user-chat room.