File: PmwTextDialog.py.html

package info (click to toggle)
python-pmw 0.6.2-0.1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,652 kB
  • ctags: 2,716
  • sloc: python: 10,720; makefile: 44; sh: 24
file content (49 lines) | stat: -rw-r--r-- 1,832 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
<!DOCTYPE HTML PUBLIC "-//Netscape_Microsoft//DTD HTML 3.0//EN">
<HTML>

<!-- This file generated using the Python HTMLgen module. -->
<HEAD>
  <META NAME="GENERATOR" CONTENT="HTMLgen 1.1">
        <TITLE>PmwTextDialog.py</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<PRE>
<FONT COLOR="#DD0000"># A Toplevel with a ButtonBox and ScrolledText window.</FONT>

import Pmw

<FONT COLOR="#DD0000"># A Dialog with a scrolled text widget.</FONT>

<STRONG><FONT COLOR="#CC6600">class TextDialog</FONT></STRONG>(Pmw.Dialog):
<STRONG>    def __init__</STRONG>(self, parent = None, **kw):
	<FONT COLOR="#DD0000"># Define the megawidget options.</FONT>
	INITOPT = Pmw.INITOPT
	optiondefs = (
	    (<FONT COLOR="#009900">'borderx'</FONT>,     10,    INITOPT),
	    (<FONT COLOR="#009900">'bordery'</FONT>,     10,    INITOPT),
	)
	self.defineoptions(kw, optiondefs)

	<FONT COLOR="#DD0000"># Initialise the base class (after defining the options).</FONT>
	Pmw.Dialog.__init__(self, parent)

	<FONT COLOR="#DD0000"># Create the components.</FONT>
	interior = self.interior()
	aliases = (
	    (<FONT COLOR="#009900">'text'</FONT>, <FONT COLOR="#009900">'scrolledtext_text'</FONT>),
	    (<FONT COLOR="#009900">'label'</FONT>, <FONT COLOR="#009900">'scrolledtext_label'</FONT>),
	)
	self._text = self.createcomponent(<FONT COLOR="#009900">'scrolledtext'</FONT>,
		aliases, None,
		Pmw.ScrolledText, (interior,))
	self._text.pack(side=<FONT COLOR="#009900">'top'</FONT>, expand=1, fill=<FONT COLOR="#009900">'both'</FONT>,
		padx = self[<FONT COLOR="#009900">'borderx'</FONT>], pady = self[<FONT COLOR="#009900">'bordery'</FONT>])

	<FONT COLOR="#DD0000"># Check keywords and initialise options.</FONT>
	self.initialiseoptions(TextDialog)

Pmw.forwardmethods(TextDialog, Pmw.ScrolledText, <FONT COLOR="#009900">'_text'</FONT>)

</PRE>

 </BODY> </HTML>