File: ComboBoxDialog_text.py

package info (click to toggle)
python-pmw 2.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,968 kB
  • sloc: python: 42,737; makefile: 4
file content (51 lines) | stat: -rw-r--r-- 1,288 bytes parent folder | download | duplicates (2)
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
complete = 1
reviewdate = "18 May 2002"

name = """
    selection dialog displaying a list and an entry field
"""

description = """
    A combobox dialog is a dialog window which displays a list and
    an entry field which can be used to prompt the user for a value.

"""

text = {}
text['options'] = {}

text['options']['borderx'] = """
    The padding to the left and right of the combobox.

"""

text['options']['bordery'] = """
    The padding above and below the combobox.

"""

text['components'] = {}

text['components']['combobox'] = """
    The combobox for the user to enter a value.  By default it is
    created using the option /dropdown = 0/.

"""

text['methods'] = {}

text['methods']['bbox'] = """
    This method is explicitly forwarded to the *combobox* component's
    /bbox()/ method.  Without this explicit forwarding, the /bbox()/
    method (aliased to /grid_bbox()/) of the *hull* would be invoked,
    which is probably not what the programmer intended.

"""

text['methods']['size'] = """
    This method is explicitly forwarded to the *combobox* component's
    /size()/ method.  Without this explicit forwarding, the /size()/
    method (aliased to /grid_size()/) of the *hull* would be invoked,
    which is probably not what the programmer intended.

"""