From 2f629ee68675c097bf8c8d80f8a2712e6518d1b0 Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 5 May 2014 23:16:33 +0200 Subject: Split the windows.py module into a subdirectory --- src/windows/__init__.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/windows/__init__.py (limited to 'src/windows/__init__.py') diff --git a/src/windows/__init__.py b/src/windows/__init__.py new file mode 100644 index 00000000..9d7172c5 --- /dev/null +++ b/src/windows/__init__.py @@ -0,0 +1,17 @@ +""" +Module exporting all the Windows, which are wrappers around curses wins +used to display information on the screen +""" +from . base_wins import Win, g_lock +from . info_bar import GlobalInfoBar, VerticalGlobalInfoBar +from . info_wins import InfoWin, XMLInfoWin, PrivateInfoWin, MucListInfoWin, \ + ConversationInfoWin, DynamicConversationInfoWin, MucInfoWin, \ + ConversationStatusMessageWin +from . input_placeholders import HelpText, YesNoInput +from . inputs import Input, HistoryInput, MessageInput, CommandInput +from . list import ListWin, ColumnHeaderWin +from . misc import VerticalSeparator +from . muc import UserList, Topic +from . roster_win import RosterWin, ContactInfoWin +from . text_win import TextWin + -- cgit v1.2.3