Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/waxy/frame.py
blob: c98e932c06ea1da7eed3531bc9f3f24d3c9973ac (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# frame.py

import wx
import containers
import styles

class Frame(wx.Frame, containers.Container):
    """ Top-level frame (window) with built-in sizer. """

    __events__ = {
        'Close': wx.EVT_CLOSE,
        'Iconize': wx.EVT_ICONIZE,
        'Show': wx.EVT_SHOW,
        'Activate': wx.EVT_ACTIVATE,
        'Idle': wx.EVT_IDLE,
        # some of these might be better off in events.py?

        'MenuHighlight': wx.EVT_MENU_HIGHLIGHT,
    }

    def __init__(self, parent=None, title="", direction="H", size=None, **kwargs):
        style = 0
        style |= self._params(kwargs)
        style |= styles.window(kwargs)

        wx.Frame.__init__(self, parent, wx.NewId(), title, size=size or (-1,-1),
         style=style)

        self.BindEvents()

        self._create_sizer(direction)
        styles.properties(self, kwargs)
        self.Body()

    def SetIcon(self, obj):
        """ Like wx.Frame.SetIcon, but also accepts a path to an icon file. """
        if isinstance(obj, str) or isinstance(obj, unicode):
            obj = wx.Icon(obj, wx.BITMAP_TYPE_ICO)    # FIXME
        wx.Frame.SetIcon(self, obj)

    #
    # style parameters

    def _params(self, kwargs):
        flags = wx.DEFAULT_FRAME_STYLE

        # REMOVE this flag if resize=0:
        flags &= ~(styles.styleboolexclude('resize', wx.RESIZE_BORDER, kwargs, reverse=1))
        flags &= ~(styles.styleboolexclude('close_box', wx.CLOSE_BOX, kwargs, reverse=1))
        flags &= ~(styles.styleboolexclude('minimize_box', wx.MINIMIZE_BOX, kwargs, reverse=1))
        flags &= ~(styles.styleboolexclude('maximize_box', wx.MAXIMIZE_BOX, kwargs, reverse=1))

        flags |= styles.stylebool('shaped', wx.FRAME_SHAPED, kwargs)
        flags |= styles.stylebool('stayontop', wx.STAY_ON_TOP, kwargs)
        flags |= styles.stylebool('stay_on_top', wx.STAY_ON_TOP, kwargs)
        return flags



class HorizontalFrame(Frame):
    def __init__(self, parent=None, title="", *args, **kwargs):
        Frame.__init__(self, parent=parent, title=title, direction='h', *args, **kwargs)

class VerticalFrame(Frame):
    def __init__(self, parent=None, title="", *args, **kwargs):
        Frame.__init__(self, parent=parent, title=title, direction='v', *args, **kwargs)