• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching defs:is

8 \subsection{What is wxPython?}\label{wxpwhat}
10 wxPython is a blending of the wxWidgets GUI classes and the
15 So what is Python? Go to
17 but in a nutshell Python is an interpreted,
18 interactive, object-oriented programming language. It is often
25 C++. Python is also usable as an extension language for applications
28 Python is copyrighted but freely usable and distributable, even for
33 wxPython is a Python package that can be imported at runtime that
38 possible. This means that there is a wxFrame class in wxPython that
42 wxPython is very versatile. It can be used to create standalone GUI
43 applications, or in situations where Python is embedded in a C++
46 Currently wxPython is available for Win32 platforms and the GTK
60 Another good thing to use wxPython for is quick prototyping of your
63 Python it is only an edit-run cycle. You can easily build an
75 Tkinter is the de facto standard GUI for Python. It is available
77 Well because Tkinter is just a wrapper around Tcl's GUI toolkit, Tk.
80 The upside is that Tk is a pretty versatile toolkit. It can be made
81 to do a lot of things in a lot of different environments. It is fairly
85 The downside is Tcl. When using Tkinter you actually have two
87 Tcl interpreter for the GUI. Since the guts of Tcl is mostly about
88 string processing, it is fairly slow as well. (Not too bad on a fast
92 Feel was possible on non-Motif platforms. This is because Tk
96 Tkinter is a pretty low-level toolkit. You have to do a lot of work
102 PythonWin is an add-on package for Python for the Win32 platform. It
104 of its foundation, it is very familiar for programmers who have
105 experience with MFC and the Win32 API. It is obviously not compatible
106 with other platforms and toolkits. PythonWin is organized as separate
171 032: # This method is called automatically when the CLOSE event is
177 038: # This method is called by the system when the window is resized,
187 048: # This method is called by the system when the window is moved,
201 062: frame = MyFrame(NULL, -1, "This is a test")
204 065: # Tell wxWidgets that this is our main window
229 same to dynamically build the table. The only real difference is
230 that the first argument to the event helpers is always the window that
235 \item There is an {\tt OnCloseWindow} method at line 34 but no call to
237 called? The answer is, yes it does. This is because many of the
240 C++ classes in this area to determine what is {\em standard} but since
259 \item And finally, at line 72 an instance of the application class is
261 the {\tt OnInit} method to get things started. (The zero parameter here is
468 Since wxPython is a blending of multiple technologies, help comes from
471 various sources of help, but probably the best source is the