File: __init__.py

package info (click to toggle)
jython 2.5.3-16%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 43,772 kB
  • ctags: 106,434
  • sloc: python: 351,322; java: 216,349; xml: 1,584; sh: 330; perl: 114; ansic: 102; makefile: 45
file content (35 lines) | stat: -rw-r--r-- 1,039 bytes parent folder | download | duplicates (8)
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
import sys
from java import awt

def test(panel, size=None, name='AWT Tester'):
    f = awt.Frame(name, windowClosing=lambda event: sys.exit(0))
    if hasattr(panel, 'init'):
        panel.init()

    f.add('Center', panel)
    f.pack()
    if size is not None:
        f.setSize(apply(awt.Dimension, size))
    f.setVisible(1)
    return f

class GridBag:
    def __init__(self, frame, **defaults):
        self.frame = frame
        self.gridbag = awt.GridBagLayout()
        self.defaults = defaults
        frame.setLayout(self.gridbag)

    def addRow(self, widget, **kw):
        kw['gridwidth'] = 'REMAINDER'
        apply(self.add, (widget, ), kw)

    def add(self, widget, **kw):
        constraints = awt.GridBagConstraints()

        for key, value in self.defaults.items()+kw.items():
            if isinstance(value, type('')):
                value = getattr(awt.GridBagConstraints, value)
            setattr(constraints, key, value)
        self.gridbag.setConstraints(widget, constraints)
        self.frame.add(widget)