summaryrefslogtreecommitdiff
path: root/src/windows/__init__.py
blob: 9e165201d0a2a06e9c338491b52de2e73e086960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
Module exporting all the Windows, which are wrappers around curses wins
used to display information on the screen
"""

from . base_wins import Win
from . data_forms import FormWin
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