From: Kevin A. <ka...@us...> - 2005-12-25 07:52:36
|
Update of /cvsroot/pythoncard/PythonCard/docs/html/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14477 Modified Files: components.html Log Message: added additional components Index: components.html =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/docs/html/framework/components.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** components.html 14 Aug 2004 21:05:15 -0000 1.2 --- components.html 25 Dec 2005 07:52:27 -0000 1.3 *************** *** 12,16 **** <?php include "../sidebar.php" ?> <div id="content"> ! <p>Updated: April 10, 2004 for release 0.7.3</p> <p> --- 12,16 ---- <?php include "../sidebar.php" ?> <div id="content"> ! <p>Updated: December 24, 2005 for release 0.8.1</p> <p> *************** *** 22,26 **** <p>The following component types are currently supported. The are defined in ! the PythonCardPrototype components directory. The wxPython control they are based on is in parenthesis ():</p> --- 22,26 ---- <p>The following component types are currently supported. The are defined in ! the PythonCard components directory. The wxPython control they are based on is in parenthesis ():</p> *************** *** 28,51 **** <a href="components/BitmapCanvas.html">BitmapCanvas</a> Provides a buffered bitmap. There is no direct equivelant in wxPython. ! <a href="components/Button.html">Button</a> (wxButton) ! <a href="components/Calendar.html">Calendar</a> (wxCalendar) ! <a href="components/CheckBox.html">CheckBox</a> (wxCheckBox) ! <a href="components/Choice.html">Choice</a> (wxChoice) ! CodeEditor (wxStyledTextCtrl) <a href="components/ComboBox.html">ComboBox</a> (wxComboBox) ! <a href="components/Gauge.html">Gauge</a> (wxGauge) ! Grid (wxGrid) <a href="components/HtmlWindow.html">HtmlWindow</a> (wxHtmlWindow) ! IEHtmlWindow (wxIEHtmlWin - Windows-only) <a href="components/Image.html">Image</a> (wxStaticBitmap) ! <a href="components/ImageButton.html">ImageButton</a> (wxBitmapButton) ! <a href="components/List.html">List</a> (wxListBox) ! MultiColumnList (wxListCtrl) <a href="components/PasswordField.html">PasswordField</a> (wxTextCtrl) ! <a href="components/RadioGroup.html">RadioGroup</a> (wxRadioBox) ! <a href="components/Slider.html">Slider</a> (wxSlider) ! <a href="components/Spinner.html">Spinner</a> (wxSpinner) ! <a href="components/StaticBox.html">StaticBox</a> (wxStaticBox) ! <a href="components/StaticLine.html">StaticLine</a> (wxStaticLine) ! <a href="components/StaticText.html">StaticText</a> (wxStaticText) ! <a href="components/TextArea.html">TextArea</a> (wxTextCtrl) ! <a href="components/TextField.html">TextField</a> (wxTextCtrl) ! Tree (wxTreeCtrl) </pre> <p>The following events are automatically bound and available for each component:</p> --- 28,53 ---- <a href="components/BitmapCanvas.html">BitmapCanvas</a> Provides a buffered bitmap. There is no direct equivelant in wxPython. ! <a href="components/Button.html">Button</a> (wx.Button) ! <a href="components/Calendar.html">Calendar</a> (wx.Calendar) ! <a href="components/CheckBox.html">CheckBox</a> (wx.CheckBox) ! <a href="components/Choice.html">Choice</a> (wx.Choice) ! CodeEditor (wx.stc.StyledTextCtrl) <a href="components/ComboBox.html">ComboBox</a> (wx.ComboBox) ! <a href="components/Gauge.html">Gauge</a> (wx.Gauge) ! Grid (wx.Grid) <a href="components/HtmlWindow.html">HtmlWindow</a> (wx.HtmlWindow) ! IEHtmlWindow (wx.lib.iewin.IEHtmlWindow - Windows-only) <a href="components/Image.html">Image</a> (wx.StaticBitmap) ! <a href="components/ImageButton.html">ImageButton</a> (wx.BitmapButton) ! <a href="components/List.html">List</a> (wx.ListBox) ! MultiColumnList (wx.ListCtrl) ! Notebook (wx.Notebook) <a href="components/PasswordField.html">PasswordField</a> (wx.TextCtrl) ! <a href="components/RadioGroup.html">RadioGroup</a> (wx.RadioBox) ! <a href="components/Slider.html">Slider</a> (wx.Slider) ! <a href="components/Spinner.html">Spinner</a> (wx.Spinner) ! <a href="components/StaticBox.html">StaticBox</a> (wx.StaticBox) ! <a href="components/StaticLine.html">StaticLine</a> (wx.StaticLine) ! <a href="components/StaticText.html">StaticText</a> (wx.StaticText) ! <a href="components/TextArea.html">TextArea</a> (wx.TextCtrl) ! <a href="components/TextField.html">TextField</a> (wx.TextCtrl) ! ToggleButton (wx.ToggleButton) ! Tree (wx.TreeCtrl) </pre> <p>The following events are automatically bound and available for each component:</p> *************** *** 115,123 **** <pre> ! Bitmap (wxBitmap) - defined in graphic.py supported formats: ! BMP, GIF, JPG/JPEG, PCX, PNG, PNM, TIF/TIFF, XBM, and XPM ! also supports translation to/from Python Imaging Library (PIL) format ! Font (wxFont) - defined in font.py </pre> --- 117,126 ---- <pre> ! Bitmap (wx.Bitmap) - defined in graphic.py supported formats: ! BMP, GIF, JPEG, PCX, PICT, PNG, PNM, TIFF, XBM, and XPM ! also supports translation to/from Python Imaging Library (PIL) format, ! and NumPy arrays to bitmap. ! Font (wx.Font) - defined in font.py </pre> |