File: TextBox.py

package info (click to toggle)
wxpython4.0 4.2.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 221,752 kB
  • sloc: cpp: 962,555; python: 230,573; ansic: 170,731; makefile: 51,756; sh: 9,342; perl: 1,564; javascript: 584; php: 326; xml: 200
file content (302 lines) | stat: -rw-r--r-- 12,863 bytes parent folder | download
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
#!/usr/bin/env python
"""

A test and demo of  the features of the ScaledTextBox

"""

import wx

## import the installed version
from wx.lib.floatcanvas import NavCanvas, FloatCanvas

## import the local version
#import sys
#sys.path.append("..")
#from floatcanvas import NavCanvas, FloatCanvas

import numpy as np

class DrawFrame(wx.Frame):

    """
    A frame used for the FloatCanvas Demo

    """

    def __init__(self,parent, id,title,position,size):
        wx.Frame.__init__(self,parent, id,title,position, size)

        # Add the Canvas
        self.CreateStatusBar()
        Canvas = NavCanvas.NavCanvas(self,-1,(500,500),
                                          ProjectionFun = None,
                                          Debug = 0,
                                          BackgroundColor = "DARK SLATE BLUE",
                                          ).Canvas

        self.Canvas = Canvas
        self.Canvas.Bind(FloatCanvas.EVT_MOTION, self.OnMove )

        Point = (45,40)
        Box = Canvas.AddScaledTextBox("A Two Line\nString",
                                      Point,
                                      2,
                                      Color = "Black",
                                      BackgroundColor = None,
                                      LineColor = "Red",
                                      LineStyle = "Solid",
                                      LineWidth = 1,
                                      Width = None,
                                      PadSize = 5,
                                      Family = wx.ROMAN,
                                      Style = wx.NORMAL,
                                      Weight = wx.NORMAL,
                                      Underlined = False,
                                      Position = 'br',
                                      Alignment = "left",
                                      InForeground = False)

        # All defaults
        Box = Canvas.AddScaledTextBox("A Two Line\nString",
                                      Point,
                                      2)

        Box = Canvas.AddScaledTextBox("A Two Line\nString",
                                      Point,
                                      2,
                                      BackgroundColor = "Yellow",
                                      LineColor = "Red",
                                      LineStyle = "Solid",
                                      PadSize = 5,
                                      Family = wx.TELETYPE,
                                      Position = 'bl')

        Box = Canvas.AddScaledTextBox("A Two Line\nString",
                                      Point,
                                      2,
                                      BackgroundColor = "Yellow",
                                      LineColor = "Red",
                                      LineStyle = "Solid",
                                      PadSize = 5,
                                      Family = wx.TELETYPE,
                                      Position = 'tr')




        Box.Bind(FloatCanvas.EVT_FC_LEFT_DOWN, self.binding2)

        Canvas.AddPoint(Point, Diameter = 4)

        Point = (45,15)
        Box = Canvas.AddScaledTextBox("A Two Line\nString",
                                      Point,
                                      2,
                                      Color = "Black",
                                      BackgroundColor = 'Red',
                                      LineColor = "Blue",
                                      LineStyle = "LongDash",
                                      LineWidth = 2,
                                      Width = None,
                                      PadSize = 5,
                                      Family = wx.TELETYPE,
                                      Style = wx.NORMAL,
                                      Weight = wx.NORMAL,
                                      Underlined = False,
                                      Position = 'cr',
                                      Alignment = "left",
                                      InForeground = False)

        Box = Canvas.AddScaledTextBox("A Two Line\nString",
                                      Point,
                                      1.5,
                                      Color = "Black",
                                      BackgroundColor = 'Red',
                                      LineColor = "Blue",
                                      LineStyle = "LongDash",
                                      LineWidth = 2,
                                      Width = None,
                                      PadSize = 5,
                                      Family = wx.TELETYPE,
                                      Style = wx.NORMAL,
                                      Weight = wx.NORMAL,
                                      Underlined = False,
                                      Position = 'cl',
                                      Alignment = "left",
                                      InForeground = False)

        Canvas.AddPoint(Point, Diameter = 4)

        Point = (45,-10)
        Box = Canvas.AddScaledTextBox("A Two Line\nString",
                                      Point,
                                      2,
                                      Color = "Black",
                                      BackgroundColor = 'Red',
                                      LineColor = "Blue",
                                      LineStyle = "LongDash",
                                      LineWidth = 2,
                                      Width = None,
                                      PadSize = 3,
                                      Family = wx.TELETYPE,
                                      Style = wx.NORMAL,
                                      Weight = wx.NORMAL,
                                      Underlined = False,
                                      Position = 'tc',
                                      Alignment = "left",
                                      InForeground = False)

        Box = Canvas.AddScaledTextBox("A three\nLine\nString",
                                      Point,
                                      1.5,
                                      Color = "Black",
                                      BackgroundColor = 'Red',
                                      LineColor = "Blue",
                                      LineStyle = "LongDash",
                                      LineWidth = 2,
                                      Width = None,
                                      PadSize = 0.5,
                                      Family = wx.TELETYPE,
                                      Style = wx.NORMAL,
                                      Weight = wx.NORMAL,
                                      Underlined = False,
                                      Position = 'bc',
                                      Alignment = "left",
                                      InForeground = False)


        Canvas.AddPoint(Point, Diameter = 4)

        Box = Canvas.AddScaledTextBox("Some Auto Wrapped Text. There is enough to do.",
                                      (80,40),
                                      2,
                                      BackgroundColor = 'White',
                                      LineWidth = 2,
                                      Width = 20,
                                      PadSize = 0.5,
                                      Family = wx.TELETYPE,
                                      )

        Box = Canvas.AddScaledTextBox("Some more auto wrapped text. Wrapped to a different width and right aligned.\n\nThis is another paragraph.",
                                      (80,20),
                                      2,
                                      BackgroundColor = 'White',
                                      LineWidth = 2,
                                      Width = 40,
                                      PadSize = 0.5,
                                      Family = wx.ROMAN,
                                      Alignment = "right"
                                      )
        Point = np.array((100, -20), np.float64)
        Box = Canvas.AddScaledTextBox("Here is even more auto wrapped text. This time the line spacing is set to 0.8. \n\nThe Padding is set to 0.",
                                      Point,
                                      Size = 3,
                                      BackgroundColor = 'White',
                                      LineWidth = 1,
                                      Width = 40,
                                      PadSize = 0.0,
                                      Family = wx.ROMAN,
                                      Position = "cc",
                                      LineSpacing = 0.8
                                      )
        Canvas.AddPoint(Point, "Red", 2)

        Point = np.array((0, -40), np.float64)
#        Point = N.array((0, 0), N.float_)
        for Position in ["tl", "bl", "tr", "br"]:
#        for Position in ["br"]:
            Box = Canvas.AddScaledTextBox("Here is a\nfour liner\nanother line\nPosition=%s"%Position,
                                      Point,
                                      Size = 4,
                                      Color = "Red",
                                      BackgroundColor = None,#'Light Blue',
                                      LineWidth = 1,
                                      LineColor = "White",
                                      Width = None,
                                      PadSize = 2,
                                      Family = wx.ROMAN,
                                      Position = Position,
                                      LineSpacing = 0.8
                                      )
        Canvas.AddPoint(Point, "Red", 4)

        Point = np.array((-20, 60), np.float64)
        Box = Canvas.AddScaledTextBox("Here is some\ncentered\ntext",
                                      Point,
                                      Size = 4,
                                      Color = "Red",
                                      BackgroundColor = 'Light Blue',
                                      LineWidth = 1,
                                      LineColor = "White",
                                      Width = None,
                                      PadSize = 2,
                                      Family = wx.ROMAN,
                                      Position = "tl",
                                      Alignment = "center",
                                      LineSpacing = 0.8
                                      )

        Point = np.array((-20, 20), np.float64)
        Box = Canvas.AddScaledTextBox("Here is some\nright aligned\ntext",
                                      Point,
                                      Size = 4,
                                      Color = "Red",
                                      BackgroundColor = 'Light Blue',
                                      LineColor = None,
                                      Width = None,
                                      PadSize = 2,
                                      Family = wx.ROMAN,
                                      Position = "tl",
                                      Alignment = "right",
                                      LineSpacing = 0.8
                                      )

        Point = np.array((100, -60), np.float64)
        Box = Canvas.AddScaledTextBox("Here is some auto wrapped text. This time it is centered, rather than right aligned.\n\nThe Padding is set to 2.",
                                      Point,
                                      Size = 3,
                                      BackgroundColor = 'White',
                                      LineWidth = 1,
                                      Width = 40,
                                      PadSize = 2.0,
                                      Family = wx.ROMAN,
                                      Position = "cc",
                                      LineSpacing = 0.8,
                                      Alignment = 'center',
                                      )


        self.Show(True)
        self.Canvas.ZoomToBB()

        return None
    def OnMove(self, event):
        """
        Updates the status bar with the world coordinates
        """
        self.SetStatusText("%.2f, %.2f"%tuple(event.Coords))


    def binding(self, event):
        print("I'm the Rectangle")

    def binding2(self, event):
        print("I'm the TextBox")

app = wx.App()
DrawFrame(None, -1, "FloatCanvas Demo App", wx.DefaultPosition, (700,700) )
app.MainLoop()