File: dialogues.py

package info (click to toggle)
fontypython 0.4.6-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,152 kB
  • ctags: 559
  • sloc: python: 3,619; makefile: 10
file content (477 lines) | stat: -rw-r--r-- 16,948 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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
##	Fonty Python Copyright (C) 2006, 2007, 2008, 2009 Donn.C.Ingle
##	Contact: donn.ingle@gmail.com - I hope this email lasts.
##
##	This file is part of Fonty Python.
##	Fonty Python is free software: you can redistribute it and/or modify
##	it under the terms of the GNU General Public License as published by
##	the Free Software Foundation, either version 3 of the License, or
##	(at your option) any later version.
##
##	Fonty Python is distributed in the hope that it will be useful,
##	but WITHOUT ANY WARRANTY; without even the implied warranty of
##	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
##	GNU General Public License for more details.
##
##	You should have received a copy of the GNU General Public License
##	along with Fonty Python.  If not, see <http://www.gnu.org/licenses/>.

import os, locale
import fpsys
#import fontsearch
import strings
import wx
import wx.html as html

## June 25th 2016
## Remarking these two lines because they are causing a segfault:
##  ../src/common/stdpbase.cpp(62): assert "traits" failed in Get(): 
##  create wxApp before calling this
##  Segmentation fault (core dumped)
##
##  I do not know how to test or fix this, hence simply removing it.
##  AFAICT, stock buttons will be in the system language.
##
## Setup wxPython to access translations : enables the stock buttons.
##langid = wx.LANGUAGE_DEFAULT # Picks this up from $LANG
##mylocale = wx.Locale( langid )

## langcode = locale.getlocale()[0] # I must not use getlocale...
## This is suggested by Martin:
loc = locale.setlocale(locale.LC_CTYPE) # use *one* of the categories (not LC_ALL)
## returns something like 'en_ZA.UTF-8'
if loc is None or len(loc) < 2:
	langcode = 'en'
else:
	langcode = loc[:2].lower()# This is going to cause grief in the future...
 
class DialogHelp(wx.Dialog):
	def __init__(self, *args, **kwds):
		kwds["style"] = wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER
		wx.Dialog.__init__(self, *args, **kwds)
		
		ID_ESC = 1001
		self.accel = wx.AcceleratorTable([(wx.ACCEL_NORMAL, wx.WXK_ESCAPE, ID_ESC)])
		self.SetAcceleratorTable(self.accel)
		self.Bind(wx.EVT_MENU, self.Escape, id=ID_ESC)
		
		dbox = wx.BoxSizer(wx.VERTICAL)
		btn = wx.Button(self, wx.ID_CANCEL)
		btn.SetDefault()
		win = TestHtmlPanel(self, size = kwds["size"]) 
		dbox.Add(win, 1, wx.EXPAND)
		dbox.Add(btn, 0, wx.CENTER | wx.TOP | wx.BOTTOM,border = 4)
		self.SetSizer(dbox)
		#self.SetAutoLayout(True) #sizes it properly...
		dbox.SetSizeHints(self) #made it variable size, stops at 'size' as a min.
		#dbox.Fit(self)
		#self.Layout()
		win.SetFocus()# magically enables ESC key too! Go figure :)
		self.SetTitle(_("Fonty Python Help! Help! I'm being oppressed!"))
		_icon = wx.EmptyIcon()
		_icon.CopyFromBitmap(wx.Bitmap(fpsys.mythingsdir + 'fplogo.png', wx.BITMAP_TYPE_ANY))
		self.SetIcon(_icon)
	def Escape(self, event):
		self.Close()

class TestHtmlPanel(wx.Panel):
	def __init__(self, parent, size):
		wx.Panel.__init__(self, parent, -1, style=wx.NO_FULL_REPAINT_ON_RESIZE)
		self.html = MyHtmlWindow(self, -1, size)
		self.box = wx.BoxSizer(wx.VERTICAL)
		self.box.Add(self.html, 1, wx.GROW)

		#A BACK button. I used internal 'top' links instead
		#subbox = wx.BoxSizer(wx.HORIZONTAL)
		#btn = wx.Button(self, wx.ID_BACKWARD)
		#self.Bind(wx.EVT_BUTTON ,self.OnBack, btn)
		#subbox.Add(btn, 1, wx.GROW | wx.ALL, 2)
		#self.box.Add(subbox, 0, wx.GROW)

		self.SetSizer(self.box)
		self.SetAutoLayout(True)
		
		## Find localized help, or default to English.
		packpath = os.path.join('/usr/share', 'fontypython')
		helppaf = os.path.join(packpath, "help", langcode, "help.html")
		if not os.path.exists( helppaf ):
			helppaf = os.path.join(packpath, "help", "en", "help.html")
		self.html.LoadPage( helppaf )

		self.box.Fit(self)
	#def OnBack( self, e ):
		#self.html.HistoryBack()

class MyHtmlWindow(html.HtmlWindow):
	def __init__(self, parent, id, size):
		html.HtmlWindow.__init__(self, parent, id, style=wx.NO_FULL_REPAINT_ON_RESIZE, size = size)
		if "gtk2" in wx.PlatformInfo or "gtk3" in wx.PlatformInfo:
			self.SetStandardFonts()


class DialogAbout(wx.Dialog):
	def __init__(self, *args, **kwds):
		# begin wxGlade: MyDialog.__init__
		kwds["style"] = wx.DEFAULT_DIALOG_STYLE
		wx.Dialog.__init__(self, *args, **kwds)
		self.nb = wx.Notebook(self, -1, style=0)
		
		self.notebook_1_pane_2 = wx.Panel(self.nb, -1)
		self.notebook_1_pane_1 = wx.Panel(self.nb, -1)
		self.notebook_1_pane_3 = wx.Panel(self.nb, -1)
		
		self.bLOGO = wx.StaticBitmap\
		(self.notebook_1_pane_1, -1, wx.Bitmap(fpsys.mythingsdir + 'aboutfplogo.png', wx.BITMAP_TYPE_ANY))
		
		self.AboutText = wx.StaticText\
		(self.notebook_1_pane_1, -1, strings.aboutText, style = wx.TE_MULTILINE)

		self.emaillink = wx.TextCtrl\
		(self.notebook_1_pane_1, -1, strings.contact, size =(200,-1 ), style = wx.TE_READONLY)		
		
		self.GPL_TEXT = wx.TextCtrl\
		(self.notebook_1_pane_2, -1, strings.GPL, style=wx.TE_MULTILINE|wx.TE_READONLY)
 
		self.THANKS = wx.TextCtrl\
		(self.notebook_1_pane_3, -1, strings.thanks, style=wx.TE_MULTILINE|wx.TE_READONLY)
 
		ID_ESC = 1001
		self.accel = wx.AcceleratorTable([(wx.ACCEL_NORMAL, wx.WXK_ESCAPE, ID_ESC)])
		self.SetAcceleratorTable(self.accel)
		self.Bind(wx.EVT_MENU, self.EscapeAbout, id=ID_ESC)
		
		self.__set_properties()
		self.__do_layout()
		self.notebook_1_pane_1.SetFocus() 
		# end wxGlade

	def __set_properties(self):
		self.SetTitle(_("About FontyPython"))
		_icon = wx.EmptyIcon()
		_icon.CopyFromBitmap(wx.Bitmap(fpsys.mythingsdir + 'fplogo.png', wx.BITMAP_TYPE_ANY))
		self.SetIcon(_icon)

	def EscapeAbout(self, event):
		self.Close()
		
	def __do_layout(self):
		# begin wxGlade: MyDialog.__do_layout
		sizer_1 = wx.BoxSizer(wx.VERTICAL)
		sizer_3 = wx.BoxSizer(wx.HORIZONTAL)
		sizer_thanks = wx.BoxSizer( wx.HORIZONTAL )
		
		sizerPane1 = wx.BoxSizer(wx.HORIZONTAL)
		sizerPane1.Add(self.bLOGO, 0, 0, 0)
		
		textsizer = wx.BoxSizer(wx.VERTICAL)
		textsizer.Add(self.AboutText, 0, wx.ALIGN_LEFT | wx.ALL, border = 10)
		textsizer.Add(self.emaillink, 0, wx.ALIGN_LEFT | wx.ALL, border = 10)
		#textsizer.Add((10, 10), 0, wx.ALIGN_LEFT, 0)

		sizerPane1.Add(textsizer, 1, wx.ALIGN_BOTTOM, 0)
		
		self.notebook_1_pane_1.SetSizer(sizerPane1)
		sizerPane1.Fit(self.notebook_1_pane_1)
		sizerPane1.SetSizeHints(self.notebook_1_pane_1)
		
		sizer_3.Add(self.GPL_TEXT,1, wx.EXPAND, 0)

		self.notebook_1_pane_2.SetSizer(sizer_3)
		sizer_3.Fit(self.notebook_1_pane_2)
		sizer_3.SetSizeHints(self.notebook_1_pane_2)
		
		## THANKS
		sizer_thanks.Add( self.THANKS,1, wx.EXPAND,0 )
		self.notebook_1_pane_3.SetSizer( sizer_thanks )
		sizer_thanks.Fit( self.notebook_1_pane_3 )
		sizer_thanks.SetSizeHints( self.notebook_1_pane_3 )
		
		
		self.nb.AddPage(self.notebook_1_pane_1, _("About"))
		self.nb.AddPage(self.notebook_1_pane_3, _("Thanks"))
		self.nb.AddPage(self.notebook_1_pane_2, _("Licence"))
		
		sizer_1.Add(self.nb, 1, wx.EXPAND, 0)

		self.SetSizer(sizer_1)
		sizer_1.Fit(self)
		sizer_1.SetSizeHints(self)
		self.Layout()
		self.Centre()
		# end wxGlade
		

class DialogSettings(wx.Dialog):
	def __init__(self, parent):
		wx.Dialog.__init__(self, parent, -1, _("Settings"), pos = wx.DefaultPosition)#, size =(450,-1))
		
		verticalSizer = wx.BoxSizer(wx.VERTICAL)
	
		nb = wx.Notebook(self, -1, style=0)
		PANE1= wx.Panel(nb, -1)
		PANE2 = wx.Panel(nb, -1)

		## The layout of PANE1 begins:
		font = wx.Font(16, fpsys.DFAM, wx.NORMAL, wx.FONTWEIGHT_BOLD)
		labelHeading = wx.StaticText(self, -1, _("Settings"))
		labelHeading.SetFont(font)

		label_1 = wx.StaticText(PANE1, -1, _("Sample text:"))
		self.inputSampleString = wx.TextCtrl(PANE1, -1, fpsys.config.text, size = (200, -1)) 
		self.inputSampleString.SetFocus()
		
		label_2 = wx.StaticText(PANE1, -1, _("Point size:"))
		self.inputPointSize = wx.SpinCtrl(PANE1, -1, "")
		self.inputPointSize.SetRange(1, 500)
		self.inputPointSize.SetValue(fpsys.config.points)
		
		label_3 = wx.StaticText(PANE1, -1, _("Page length:"))
		self.inputPageLen = wx.SpinCtrl(PANE1, -1, "")
		self.inputPageLen.SetRange(1, 5000) # It's your funeral!
		self.inputPageLen.SetValue(fpsys.config.numinpage) 
		self.inputPageLen.SetToolTip( wx.ToolTip( _("Beware large numbers!") ) )

		PANE1sizer = wx.FlexGridSizer( rows=3, cols=2, hgap=5, vgap=8 )
		PANE1sizer.Add(label_1, 0, wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL )
		PANE1sizer.Add(self.inputSampleString, 1, wx.EXPAND )
		PANE1sizer.Add(label_2, 0, wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL )
		PANE1sizer.Add(self.inputPointSize, 0 )
		PANE1sizer.Add(label_3, 0, wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL )
		PANE1sizer.Add(self.inputPageLen, 0 )

		PANE1_buffer = wx.BoxSizer( wx.HORIZONTAL )
		PANE1_buffer.Add( PANE1sizer, 1, wx.EXPAND | wx.ALL, border=10 )
		PANE1.SetSizer( PANE1_buffer )


		## Layout of PANE2
		## Sept 2009 - Checkbox to ignore/use the font top left adjustment code
		self.chkAdjust = wx.CheckBox(PANE2, -1, _("Disable font top-left correction."))
		self.chkAdjust.SetValue(fpsys.config.ignore_adjustments) 
		self.chkAdjust.SetToolTip( wx.ToolTip( _("Disabling this speeds font drawing up a fraction, but degrades top-left positioning.") ) )
		PANE2sizer = wx.BoxSizer( wx.VERTICAL )
		PANE2sizer.Add(self.chkAdjust, 0, wx.ALIGN_LEFT | wx.BOTTOM, border=10 )

		# The Character map choice
		self.CMC = fpsys.config.CMC
		if self.CMC.APPS_ARE_AVAILABLE:
			self.CHOSEN_CHARACTER_MAP = self.CMC.GET_CURRENT_APPNAME()
			rb = wx.RadioBox(
					PANE2, -1, _("Available character map viewers"), wx.DefaultPosition, wx.DefaultSize,
					self.CMC.QUICK_APPNAME_LIST, 1, wx.RA_SPECIFY_COLS
					)
			
			rb.SetSelection( self.CMC.QUICK_APPNAME_LIST.index( self.CHOSEN_CHARACTER_MAP ))

			self.Bind(wx.EVT_RADIOBOX, self.EvtRadioBox, rb)
			rb.SetToolTip(wx.ToolTip( _("Choose which app to use as a character map viewer.") ))
			PANE2sizer.Add( rb, 0, wx.ALIGN_LEFT )
		else:
			self.CHOSEN_CHARACTER_MAP = None
			no_app = wx.StaticText(PANE2, -1, _("Could not find a supported character viewer."))
			PANE2sizer.Add( no_app, 0, wx.ALIGN_LEFT )


		PANE2_buffer = wx.BoxSizer( wx.HORIZONTAL )
		PANE2_buffer.Add( PANE2sizer, 1, wx.EXPAND | wx.ALL, border=10 )
		PANE2.SetSizer( PANE2_buffer )

		## Add the panels to the notebook
		nb.AddPage( PANE1, _("Quick settings") )
		nb.AddPage( PANE2, _("Voodoo") )

		## Add label and a space to the vertical sizer
		verticalSizer.Add( labelHeading, 0, wx.ALIGN_LEFT )
		verticalSizer.Add( (0,5), 0 )

		## Add the notebook
		verticalSizer.Add( nb, 1, wx.EXPAND | wx.ALL )
		verticalSizer.Add((0,10),0) #space between bottom of grid and buttons

		## Make a std button group
		btnsizer = wx.StdDialogButtonSizer()
		btn = wx.Button(self, wx.ID_OK)
		btn.SetDefault()
		btnsizer.AddButton(btn)
		btn = wx.Button(self, wx.ID_CANCEL)
		btnsizer.AddButton(btn)
		btnsizer.Realize()
	
		## Add button group to vertical sizer
		verticalSizer.Add( btnsizer, 0, wx.ALIGN_BOTTOM | wx.ALIGN_CENTER_HORIZONTAL, border = 5)
	
		## Make a 'buffer' to keep the insides away from the edges of the frame
		buffer=wx.BoxSizer( wx.HORIZONTAL )
		## To get border to work use wx.EXPAND | wx.ALL
		buffer.Add( verticalSizer, 1,wx.EXPAND | wx.ALL,  border=10 )

		self.SetSizer( buffer )
		buffer.Fit(self)
		self.Layout()

	def EvtRadioBox(self, event):
		self.CHOSEN_CHARACTER_MAP = self.CMC.QUICK_APPNAME_LIST[event.GetInt()]

class SegfaultDialog(wx.Dialog):
	"""
	Dec 2007
	Runs from the wrapper script (which runs start_fontypython) so that we
	can tell the user that there was a segfault and why.
	"""
	def __init__(self, parent, culprit):
		wx.Dialog.__init__(self, parent, -1, _("Oh boy..."), pos = wx.DefaultPosition )
		## The layout begins:
		font = wx.Font(16, wx.DEFAULT, wx.NORMAL, wx.FONTWEIGHT_BOLD)
		self.labelHeading = wx.StaticText(self, -1, _("Fonty Python, um ... crashed."))
		self.labelHeading.SetFont(font)
		
		font = wx.Font(12, wx.DEFAULT, wx.NORMAL, wx.FONTWEIGHT_BOLD)
		self.ohDear = wx.StaticText( self, -1, _("Oh dear,"))
		self.ohDear.SetFont( font )
		

		self.sadStory = wx.StaticText( self, -1, _("There's some problem with the font named below. Please use the Check Fonts tool in Fonty\n(from the command-line or the Tools menu) to go through this directory and mark all the dangerous fonts.\n(You could simply move this font elsewhere, but others may remain to cause trouble.)\n" ))

		font = wx.Font(11, wx.DEFAULT, wx.NORMAL, wx.FONTWEIGHT_BOLD)
		self.culprit = wx.StaticText( self, -1, culprit ) 
		self.culprit.SetFont( font )
		
		verticalSizer = wx.BoxSizer(wx.VERTICAL)
		verticalSizer.Add(self.labelHeading, 0, 0, 0)
		verticalSizer.Add(self.ohDear, 0, 0, 0)
		verticalSizer.Add(self.sadStory, 1, wx.EXPAND, 0)
		verticalSizer.Add(self.culprit, 1, wx.EXPAND, 0)
		
		btnsizer = wx.StdDialogButtonSizer()
		btn = wx.Button(self, wx.ID_OK)
		btn.SetDefault()
		btnsizer.AddButton(btn)
		btnsizer.Realize()
				
		verticalSizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL| wx.ALIGN_RIGHT, border = 15)
		buffer=wx.BoxSizer( wx.HORIZONTAL )
		buffer.Add( verticalSizer, 1, wx.ALL, border=10 )

		self.SetSizer( buffer )
		buffer.Fit(self) 
		self.SetSizer( buffer )

		self.Layout()
		
class LocateDirectory(wx.Dialog):
	"""
	Sep 2009 : A nicer (than std dir dialogue) dialogue for locating a directory.
	It starts in the cwd.
	"""
	def __init__(self, parent):
		wx.Dialog.__init__(self, parent, -1, title = _("Locate a directory for the zip file(s)."),
				pos=wx.DefaultPosition,style=wx.DEFAULT_FRAME_STYLE)

		sizer = wx.BoxSizer(wx.VERTICAL)
		self.treedir = wx.GenericDirCtrl( self, -1, dir=os.getcwd(), style=wx.DIRCTRL_DIR_ONLY )

		btno = wx.Button(self, wx.ID_OK)
		btnc = wx.Button(self, wx.ID_CANCEL)

		sizer.Add(self.treedir, 1, wx.EXPAND)
		sizer.Add(btno, 0, wx.EXPAND)
		sizer.Add(btnc, 0, wx.EXPAND)

		btnsizer = wx.StdDialogButtonSizer()
		btno.SetDefault()
		btnsizer.AddButton(btno)
		btnsizer.AddButton(btnc)
		btnsizer.Realize()

		self.SetSizer(sizer)
		self.SetAutoLayout(True)

	def GetPath(self):
		return self.treedir.GetPath()

class DialogCheckFonts( wx.Dialog ):
	"""
	18 Jan 2008
	Open a dircontrol to locate a folder, a text box of some kind to
	show the progress, and build the segfonts file/list
	"""
	def __init__( self, parent, startdir ):
		wx.Dialog.__init__(self, parent, -1, _("Check for dangerous fonts."), \
		size=(800,400),pos = wx.DefaultPosition, style=wx.DEFAULT_FRAME_STYLE )
		
		## LEFT
		leftsz = wx.BoxSizer(wx.VERTICAL)

		font = wx.Font(12, fpsys.DFAM, wx.NORMAL, wx.FONTWEIGHT_BOLD)
		title = wx.StaticText( self,-1,  _("Choose a directory and double click it to start"))
		title.SetFont( font )
		leftsz.Add(title,0,wx.EXPAND | wx.ALL, border=4 )
		self.treedir = wx.GenericDirCtrl( self, -1, dir=startdir, style=wx.DIRCTRL_DIR_ONLY )
		leftsz.Add( self.treedir, 1, wx.EXPAND|wx.ALL)

		## RIGHT
		rightsz = wx.BoxSizer(wx.VERTICAL)
		self.output = wx.TextCtrl( self, -1, "...", \
		size=(200,-1), style = wx.TE_MULTILINE | wx.TE_READONLY )
		rightsz.Add(self.output,1,wx.EXPAND | wx.ALL)

		## Because I want a CLOSE button -- I have to do all the button
		## stuff manually. StdDialogButtonSizer only provides certain buttons
		## that are not appropriate for this form.
		bsz = wx.BoxSizer(wx.HORIZONTAL)
		self.btn = wx.Button(self, wx.ID_CLOSE)
		self.btn.SetDefault()
		bsz.Add(self.btn,1,wx.EXPAND)
		self.btn.Bind( wx.EVT_BUTTON, self.OnClick)

		rightsz.Add(bsz,0,wx.EXPAND)
		
		sz = wx.BoxSizer(wx.HORIZONTAL)
		
		sz.Add(leftsz, 1, wx.EXPAND)
		sz.Add(rightsz, 1, wx.EXPAND )# this wx.EXPAND got the text control to fit the height.

		self.SetSizer(sz)

		self.tree = self.treedir.GetTreeCtrl()

		self.tree.Bind(wx.EVT_LEFT_DCLICK, self.__goFigure)
	def OnClick(self,e):
		self.Close(True)

	def printer( self, txt=None ):
		if txt is None: txt = "\n"
		self.output.WriteText(txt + "\n")
		wx.SafeYield()
		
	def __goFigure( self, e ):
		self.output.Clear()
		wx.BeginBusyCursor()
		dirtocheck = self.treedir.GetPath()
		fpsys.checkFonts( dirtocheck, self.printer )
		wx.EndBusyCursor()
		
## May 2009 - Busy
## June 2009 - Given up on this code for now.

#class PopupInfo(wx.Frame):
#	def __init__(self, parent, id, title, fmap):
#		wx.Frame.__init__(self, parent, id, title)
#		self.box = wx.BoxSizer(wx.VERTICAL)
#		self.list = wx.TextCtrl(self, -1, style=wx.TE_MULTILINE|wx.TE_WORDWRAP)
#		self.box.Add(self.list, proportion=1, flag=wx.EXPAND)
#		font = fmap.fitem
#		info = fontsearch.getInfo(font)
#		try:
#			self.SetTitle(info['Name Records']['Full Name'])
#		except KeyError:
#			self.SetTitle(font.name)
#		except:
#			self.SetTitle("Font Information")
#		text = str(info)
#		self.list.AppendText(text)
#		self.butClose = wx.Button(self, id = wx.ID_OK)
#		self.butClose.Bind(wx.EVT_BUTTON, lambda event : self.Close())
#		self.Bind(wx.EVT_COMMAND_KILL_FOCUS, lambda event : self.Close())
#		self.box.Add(self.butClose, flag=wx.FIXED_MINSIZE|wx.ALIGN_CENTER)
#		self.box.Layout()
#		self.SetSizer(self.box)