wxPython-zombie 3.1.5.8__cp313-cp313-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wx/__init__.py +22 -0
- wx/__version__.py +9 -0
- wx/_adv.cp313-win_amd64.pyd +0 -0
- wx/_aui.cp313-win_amd64.pyd +0 -0
- wx/_core.cp313-win_amd64.pyd +0 -0
- wx/_dataview.cp313-win_amd64.pyd +0 -0
- wx/_glcanvas.cp313-win_amd64.pyd +0 -0
- wx/_grid.cp313-win_amd64.pyd +0 -0
- wx/_html.cp313-win_amd64.pyd +0 -0
- wx/_html2.cp313-win_amd64.pyd +0 -0
- wx/_media.cp313-win_amd64.pyd +0 -0
- wx/_msw.cp313-win_amd64.pyd +0 -0
- wx/_propgrid.cp313-win_amd64.pyd +0 -0
- wx/_ribbon.cp313-win_amd64.pyd +0 -0
- wx/_richtext.cp313-win_amd64.pyd +0 -0
- wx/_stc.cp313-win_amd64.pyd +0 -0
- wx/_xml.cp313-win_amd64.pyd +0 -0
- wx/_xrc.cp313-win_amd64.pyd +0 -0
- wx/adv.py +124 -0
- wx/adv.pyi +5182 -0
- wx/aui.py +77 -0
- wx/aui.pyi +3655 -0
- wx/core.py +3540 -0
- wx/core.pyi +50592 -0
- wx/dataview.py +173 -0
- wx/dataview.pyi +3491 -0
- wx/demo/AUI_DockingWindowMgr.py +1154 -0
- wx/demo/AUI_MDI.py +117 -0
- wx/demo/AUI_Notebook.py +58 -0
- wx/demo/About.py +75 -0
- wx/demo/AboutBox.py +75 -0
- wx/demo/ActiveXWrapper_Acrobat.py +132 -0
- wx/demo/ActiveXWrapper_IE.py +187 -0
- wx/demo/ActiveX_FlashWindow.py +107 -0
- wx/demo/ActiveX_IEHtmlWindow.py +242 -0
- wx/demo/ActiveX_PDFWindow.py +204 -0
- wx/demo/ActivityIndicator.py +80 -0
- wx/demo/AddPrivateFont.py +116 -0
- wx/demo/AdjustChannels.py +178 -0
- wx/demo/AlphaDrawing.py +77 -0
- wx/demo/AnalogClock.py +144 -0
- wx/demo/AnimationCtrl.py +104 -0
- wx/demo/ArtProvider.py +893 -0
- wx/demo/BannerWindow.py +1 -0
- wx/demo/BitmapButton.py +87 -0
- wx/demo/BitmapComboBox.py +63 -0
- wx/demo/BitmapFromBuffer.py +140 -0
- wx/demo/Button.py +77 -0
- wx/demo/Cairo.py +197 -0
- wx/demo/Cairo_Snippets.py +135 -0
- wx/demo/Calendar.py +660 -0
- wx/demo/CalendarCtrl.py +122 -0
- wx/demo/CheckBox.py +74 -0
- wx/demo/CheckListBox.py +79 -0
- wx/demo/CheckListCtrl.py +99 -0
- wx/demo/Choice.py +55 -0
- wx/demo/Choicebook.py +80 -0
- wx/demo/CollapsibleHeaderCtrl.py +85 -0
- wx/demo/CollapsiblePane.py +126 -0
- wx/demo/ColorPanel.py +19 -0
- wx/demo/ColourDB.py +203 -0
- wx/demo/ColourDialog.py +76 -0
- wx/demo/ColourSelect.py +119 -0
- wx/demo/ComboBox.py +111 -0
- wx/demo/ComboCtrl.py +153 -0
- wx/demo/ComboTreeBox.py +71 -0
- wx/demo/CommandLinkButton.py +50 -0
- wx/demo/ContextHelp.py +112 -0
- wx/demo/Cursor.py +336 -0
- wx/demo/CustomDragAndDrop.py +353 -0
- wx/demo/DVC_CustomRenderer.py +204 -0
- wx/demo/DVC_DataViewModel.py +365 -0
- wx/demo/DVC_IndexListModel.py +257 -0
- wx/demo/DVC_ListCtrl.py +69 -0
- wx/demo/DVC_TreeCtrl.py +76 -0
- wx/demo/DatePickerCtrl.py +68 -0
- wx/demo/DelayedResult.py +239 -0
- wx/demo/Dialog.py +169 -0
- wx/demo/DialogUnits.py +128 -0
- wx/demo/DirDialog.py +58 -0
- wx/demo/DragAndDrop.py +265 -0
- wx/demo/DragImage.py +316 -0
- wx/demo/DragScroller.py +59 -0
- wx/demo/DrawXXXList.py +436 -0
- wx/demo/DynamicSashWindow.py +177 -0
- wx/demo/EditableListBox.py +101 -0
- wx/demo/Editor.py +70 -0
- wx/demo/EventManager.py +291 -0
- wx/demo/ExpandoTextCtrl.py +164 -0
- wx/demo/FancyText.py +83 -0
- wx/demo/FileBrowseButton.py +100 -0
- wx/demo/FileCtrl.py +97 -0
- wx/demo/FileDialog.py +144 -0
- wx/demo/FileHistory.py +140 -0
- wx/demo/FindReplaceDialog.py +123 -0
- wx/demo/FloatCanvas.py +1959 -0
- wx/demo/FontDialog.py +142 -0
- wx/demo/FontEnumerator.py +82 -0
- wx/demo/Frame.py +85 -0
- wx/demo/GLCanvas.py +371 -0
- wx/demo/Gauge.py +66 -0
- wx/demo/GenericButtons.py +185 -0
- wx/demo/GenericCheckBox.py +65 -0
- wx/demo/GenericDirCtrl.py +74 -0
- wx/demo/GetMouseState.py +159 -0
- wx/demo/GraphicsContext.py +236 -0
- wx/demo/GraphicsGradient.py +281 -0
- wx/demo/Grid.py +95 -0
- wx/demo/GridBagSizer.py +170 -0
- wx/demo/GridCustEditor.py +247 -0
- wx/demo/GridCustTable.py +170 -0
- wx/demo/GridDragAndDrop.py +102 -0
- wx/demo/GridDragable.py +206 -0
- wx/demo/GridEnterHandler.py +66 -0
- wx/demo/GridHugeTable.py +89 -0
- wx/demo/GridLabelRenderer.py +114 -0
- wx/demo/GridSimple.py +270 -0
- wx/demo/GridStdEdRend.py +186 -0
- wx/demo/Grid_MegaExample.py +490 -0
- wx/demo/HTML2_WebView.py +183 -0
- wx/demo/HtmlWindow.py +232 -0
- wx/demo/I18N.py +237 -0
- wx/demo/Image.py +338 -0
- wx/demo/ImageAlpha.py +87 -0
- wx/demo/ImageBrowser.py +70 -0
- wx/demo/ImageFromStream.py +49 -0
- wx/demo/Img2PyArtProvider.py +99 -0
- wx/demo/InfoBar.py +127 -0
- wx/demo/IntCtrl.py +343 -0
- wx/demo/ItemsPicker.py +108 -0
- wx/demo/Joystick.py +1083 -0
- wx/demo/KeyEvents.py +428 -0
- wx/demo/LEDNumberCtrl.py +121 -0
- wx/demo/LayoutAnchors.py +258 -0
- wx/demo/LayoutConstraints.py +149 -0
- wx/demo/Layoutf.py +69 -0
- wx/demo/ListBox.py +164 -0
- wx/demo/ListCtrl.py +538 -0
- wx/demo/ListCtrl_edit.py +155 -0
- wx/demo/ListCtrl_virtual.py +145 -0
- wx/demo/Listbook.py +104 -0
- wx/demo/MDIDemo.py +86 -0
- wx/demo/MDISashDemo.py +152 -0
- wx/demo/MDIWindows.py +66 -0
- wx/demo/Main.py +2768 -0
- wx/demo/Mask.py +137 -0
- wx/demo/MaskedEditControls.py +648 -0
- wx/demo/MaskedNumCtrl.py +359 -0
- wx/demo/MediaCtrl.py +190 -0
- wx/demo/Menu.py +322 -0
- wx/demo/MessageDialog.py +54 -0
- wx/demo/MimeTypesManager.py +354 -0
- wx/demo/MiniFrame.py +67 -0
- wx/demo/MouseGestures.py +198 -0
- wx/demo/MultiChoiceDialog.py +59 -0
- wx/demo/MultiSash.py +95 -0
- wx/demo/MultiSplitterWindow.py +168 -0
- wx/demo/MultipleChoiceDialog.py +101 -0
- wx/demo/Notebook.py +134 -0
- wx/demo/NotificationMessage.py +61 -0
- wx/demo/OGL.py +433 -0
- wx/demo/Overlay.py +209 -0
- wx/demo/OwnerDrawnComboBox.py +152 -0
- wx/demo/PDFViewer.py +109 -0
- wx/demo/PageSetupDialog.py +70 -0
- wx/demo/PenAndBrushStyles.py +208 -0
- wx/demo/Pickers.py +120 -0
- wx/demo/PlateButton.py +430 -0
- wx/demo/PopupControl.py +99 -0
- wx/demo/PopupMenu.py +156 -0
- wx/demo/PopupWindow.py +227 -0
- wx/demo/PrintDialog.py +60 -0
- wx/demo/PrintFramework.py +227 -0
- wx/demo/Process.py +168 -0
- wx/demo/ProgressDialog.py +87 -0
- wx/demo/PropertyGrid.py +1045 -0
- wx/demo/PropertySheetDialog.py +231 -0
- wx/demo/PseudoDC.py +350 -0
- wx/demo/PyColourChooser.py +60 -0
- wx/demo/PyCrust.py +21 -0
- wx/demo/PyPlot.py +83 -0
- wx/demo/PyShell.py +22 -0
- wx/demo/PythonEvents.py +109 -0
- wx/demo/README.txt +7 -0
- wx/demo/RadioBox.py +67 -0
- wx/demo/RadioButton.py +127 -0
- wx/demo/RawBitmapAccess.py +208 -0
- wx/demo/RearrangeDialog.py +160 -0
- wx/demo/RendererNative.py +170 -0
- wx/demo/ResizeWidget.py +76 -0
- wx/demo/RichMessageDialog.py +85 -0
- wx/demo/RichTextCtrl.py +732 -0
- wx/demo/RichToolTip.py +145 -0
- wx/demo/SVGImage_Bitmap.py +130 -0
- wx/demo/SVGImage_Render.py +138 -0
- wx/demo/SashWindow.py +151 -0
- wx/demo/ScrolledMessageDialog.py +52 -0
- wx/demo/ScrolledPanel.py +124 -0
- wx/demo/ScrolledWindow.py +260 -0
- wx/demo/SearchCtrl.py +115 -0
- wx/demo/ShapedWindow.py +145 -0
- wx/demo/Simplebook.py +202 -0
- wx/demo/SingleChoiceDialog.py +56 -0
- wx/demo/SizedControls.py +433 -0
- wx/demo/Sizers.py +609 -0
- wx/demo/Slider.py +52 -0
- wx/demo/Sound.py +95 -0
- wx/demo/SpinButton.py +63 -0
- wx/demo/SpinCtrl.py +56 -0
- wx/demo/SpinCtrlDouble.py +42 -0
- wx/demo/SplitTree.py +146 -0
- wx/demo/SplitterWindow.py +62 -0
- wx/demo/StandardPaths.py +113 -0
- wx/demo/StaticBitmap.py +55 -0
- wx/demo/StaticBox.py +62 -0
- wx/demo/StaticText.py +69 -0
- wx/demo/StatusBar.py +144 -0
- wx/demo/StockButtons.py +113 -0
- wx/demo/StyledTextCtrl_1.py +303 -0
- wx/demo/StyledTextCtrl_2.py +410 -0
- wx/demo/SystemSettings.py +333 -0
- wx/demo/TablePrint.py +215 -0
- wx/demo/TestTable.txt +38 -0
- wx/demo/TextCtrl.py +187 -0
- wx/demo/TextEntryDialog.py +57 -0
- wx/demo/Threads.py +258 -0
- wx/demo/Throbber.py +250 -0
- wx/demo/Ticker.py +147 -0
- wx/demo/TimeCtrl.py +240 -0
- wx/demo/TimePickerCtrl.py +60 -0
- wx/demo/Timer.py +275 -0
- wx/demo/ToggleButton.py +54 -0
- wx/demo/ToolBar.py +249 -0
- wx/demo/ToolTip.py +71 -0
- wx/demo/Toolbook.py +111 -0
- wx/demo/TreeCtrl.py +199 -0
- wx/demo/TreeListCtrl.py +121 -0
- wx/demo/TreeMixin.py +269 -0
- wx/demo/Treebook.py +117 -0
- wx/demo/UIActionSimulator.py +151 -0
- wx/demo/URLDragAndDrop.py +130 -0
- wx/demo/Unicode.py +146 -0
- wx/demo/VListBox.py +176 -0
- wx/demo/Validator.py +237 -0
- wx/demo/Wizard.py +248 -0
- wx/demo/WrapSizer.py +115 -0
- wx/demo/XmlResource.py +80 -0
- wx/demo/XmlResourceHandler.py +199 -0
- wx/demo/XmlResourceSubclass.py +119 -0
- wx/demo/__init__.py +9 -0
- wx/demo/agw/AGWInfoBar.py +175 -0
- wx/demo/agw/AUI.py +3058 -0
- wx/demo/agw/AdvancedSplash.py +59 -0
- wx/demo/agw/AquaButton.py +146 -0
- wx/demo/agw/BalloonTip.py +378 -0
- wx/demo/agw/ButtonPanel.py +890 -0
- wx/demo/agw/CubeColourDialog.py +83 -0
- wx/demo/agw/CustomTreeCtrl.py +2167 -0
- wx/demo/agw/Example1 +67 -0
- wx/demo/agw/Example2 +49 -0
- wx/demo/agw/FlatMenu.py +876 -0
- wx/demo/agw/FlatNotebook.py +994 -0
- wx/demo/agw/FloatSpin.py +475 -0
- wx/demo/agw/FoldPanelBar.py +953 -0
- wx/demo/agw/FourWaySplitter.py +300 -0
- wx/demo/agw/GenericMessageDialog.py +207 -0
- wx/demo/agw/GradientButton.py +156 -0
- wx/demo/agw/HyperLinkCtrl.py +144 -0
- wx/demo/agw/HyperTreeList.py +2660 -0
- wx/demo/agw/KnobCtrl.py +186 -0
- wx/demo/agw/LabelBook.py +567 -0
- wx/demo/agw/MacLargeDemo.py +360 -0
- wx/demo/agw/MultiDirDialog.py +117 -0
- wx/demo/agw/PeakMeter.py +194 -0
- wx/demo/agw/PersistentControls.py +589 -0
- wx/demo/agw/PieCtrl.py +206 -0
- wx/demo/agw/PyBusyInfo.py +64 -0
- wx/demo/agw/PyCollapsiblePane.py +308 -0
- wx/demo/agw/PyGauge.py +162 -0
- wx/demo/agw/PyProgress.py +155 -0
- wx/demo/agw/RibbonBar.py +925 -0
- wx/demo/agw/RulerCtrl.py +454 -0
- wx/demo/agw/ScrolledThumbnail.py +128 -0
- wx/demo/agw/ShapedButton.py +603 -0
- wx/demo/agw/ShortcutEditor.py +397 -0
- wx/demo/agw/SpeedMeter.py +668 -0
- wx/demo/agw/SuperToolTip.py +396 -0
- wx/demo/agw/ThumbDemoConfig.py +603 -0
- wx/demo/agw/ThumbnailCtrl.py +149 -0
- wx/demo/agw/ToasterBox.py +410 -0
- wx/demo/agw/UltimateListCtrl.py +80 -0
- wx/demo/agw/UltimateListIconDemo.py +908 -0
- wx/demo/agw/UltimateListListDemo.py +124 -0
- wx/demo/agw/UltimateReportDemo.py +1146 -0
- wx/demo/agw/UltimateVirtualDemo.py +207 -0
- wx/demo/agw/Windows7Explorer_Contents.py +368 -0
- wx/demo/agw/XLSGrid.py +238 -0
- wx/demo/agw/ZoomBar.py +230 -0
- wx/demo/agw/__demo__.py +183 -0
- wx/demo/agw/bitmaps/Explorer96.png +0 -0
- wx/demo/agw/bitmaps/Explorer96Flip40.png +0 -0
- wx/demo/agw/bitmaps/Folder96.png +0 -0
- wx/demo/agw/bitmaps/Folder96Flip40.png +0 -0
- wx/demo/agw/bitmaps/Monitor96.png +0 -0
- wx/demo/agw/bitmaps/Monitor96Flip40.png +0 -0
- wx/demo/agw/bitmaps/Music96.png +0 -0
- wx/demo/agw/bitmaps/Music96Flip40.png +0 -0
- wx/demo/agw/bitmaps/Photo96.png +0 -0
- wx/demo/agw/bitmaps/Photo96Flip40.png +0 -0
- wx/demo/agw/bitmaps/Search96.png +0 -0
- wx/demo/agw/bitmaps/Search96Flip40.png +0 -0
- wx/demo/agw/bitmaps/Wizard96.png +0 -0
- wx/demo/agw/bitmaps/Wizard96Flip40.png +0 -0
- wx/demo/agw/bitmaps/advancedsplash.png +0 -0
- wx/demo/agw/bitmaps/aquabutton.png +0 -0
- wx/demo/agw/bitmaps/aquachecked.ico +0 -0
- wx/demo/agw/bitmaps/aquaflagged.ico +0 -0
- wx/demo/agw/bitmaps/aquanotchecked.ico +0 -0
- wx/demo/agw/bitmaps/aquanotflagged.ico +0 -0
- wx/demo/agw/bitmaps/canada.gif +0 -0
- wx/demo/agw/bitmaps/checked.ico +0 -0
- wx/demo/agw/bitmaps/columns.png +0 -0
- wx/demo/agw/bitmaps/contexthelp-16.png +0 -0
- wx/demo/agw/bitmaps/contexthelp.png +0 -0
- wx/demo/agw/bitmaps/copy.png +0 -0
- wx/demo/agw/bitmaps/cut.png +0 -0
- wx/demo/agw/bitmaps/editcopy.png +0 -0
- wx/demo/agw/bitmaps/editcut.png +0 -0
- wx/demo/agw/bitmaps/editpaste.png +0 -0
- wx/demo/agw/bitmaps/empty_icon.png +0 -0
- wx/demo/agw/bitmaps/exit-16.png +0 -0
- wx/demo/agw/bitmaps/exit.ico +0 -0
- wx/demo/agw/bitmaps/ffwd.png +0 -0
- wx/demo/agw/bitmaps/ffwddisabled.png +0 -0
- wx/demo/agw/bitmaps/field-16.png +0 -0
- wx/demo/agw/bitmaps/filenew.png +0 -0
- wx/demo/agw/bitmaps/fileopen.png +0 -0
- wx/demo/agw/bitmaps/filesave.png +0 -0
- wx/demo/agw/bitmaps/flagged.ico +0 -0
- wx/demo/agw/bitmaps/folder.png +0 -0
- wx/demo/agw/bitmaps/folder_new.png +0 -0
- wx/demo/agw/bitmaps/ghost.png +0 -0
- wx/demo/agw/bitmaps/gradientbutton.png +0 -0
- wx/demo/agw/bitmaps/help-16.png +0 -0
- wx/demo/agw/bitmaps/help.ico +0 -0
- wx/demo/agw/bitmaps/italy.gif +0 -0
- wx/demo/agw/bitmaps/lbadd.png +0 -0
- wx/demo/agw/bitmaps/lbcharge.png +0 -0
- wx/demo/agw/bitmaps/lbdecrypted.png +0 -0
- wx/demo/agw/bitmaps/lbnews.png +0 -0
- wx/demo/agw/bitmaps/lbroll.png +0 -0
- wx/demo/agw/bitmaps/minus1.ico +0 -0
- wx/demo/agw/bitmaps/minus2.ico +0 -0
- wx/demo/agw/bitmaps/minus3.ico +0 -0
- wx/demo/agw/bitmaps/minus4.ico +0 -0
- wx/demo/agw/bitmaps/minus5.ico +0 -0
- wx/demo/agw/bitmaps/month-16.png +0 -0
- wx/demo/agw/bitmaps/new_file.png +0 -0
- wx/demo/agw/bitmaps/new_folder.png +0 -0
- wx/demo/agw/bitmaps/notchecked.ico +0 -0
- wx/demo/agw/bitmaps/notflagged.ico +0 -0
- wx/demo/agw/bitmaps/ok-16.png +0 -0
- wx/demo/agw/bitmaps/open_folder.png +0 -0
- wx/demo/agw/bitmaps/paste.png +0 -0
- wx/demo/agw/bitmaps/pause.png +0 -0
- wx/demo/agw/bitmaps/pausedisabled.png +0 -0
- wx/demo/agw/bitmaps/play.png +0 -0
- wx/demo/agw/bitmaps/playdisabled.png +0 -0
- wx/demo/agw/bitmaps/plus1.ico +0 -0
- wx/demo/agw/bitmaps/plus2.ico +0 -0
- wx/demo/agw/bitmaps/plus3.ico +0 -0
- wx/demo/agw/bitmaps/plus4.ico +0 -0
- wx/demo/agw/bitmaps/plus5.ico +0 -0
- wx/demo/agw/bitmaps/record.png +0 -0
- wx/demo/agw/bitmaps/recorddisabled.png +0 -0
- wx/demo/agw/bitmaps/recording.gif +0 -0
- wx/demo/agw/bitmaps/rewind.png +0 -0
- wx/demo/agw/bitmaps/rewinddisabled.png +0 -0
- wx/demo/agw/bitmaps/round.png +0 -0
- wx/demo/agw/bitmaps/save.png +0 -0
- wx/demo/agw/bitmaps/separator.gif +0 -0
- wx/demo/agw/bitmaps/separatorflip.png +0 -0
- wx/demo/agw/bitmaps/smfuel.ico +0 -0
- wx/demo/agw/bitmaps/smpi.ico +0 -0
- wx/demo/agw/bitmaps/smtemp.ico +0 -0
- wx/demo/agw/bitmaps/stop.png +0 -0
- wx/demo/agw/bitmaps/stopdisabled.png +0 -0
- wx/demo/agw/bitmaps/sttbutton.png +0 -0
- wx/demo/agw/bitmaps/sttfont.png +0 -0
- wx/demo/agw/bitmaps/sttheader.png +0 -0
- wx/demo/agw/bitmaps/stthelp.png +0 -0
- wx/demo/agw/bitmaps/view1.png +0 -0
- wx/demo/agw/bitmaps/view2.png +0 -0
- wx/demo/agw/bitmaps/view_choose.png +0 -0
- wx/demo/agw/bitmaps/view_detailed.png +0 -0
- wx/demo/agw/bitmaps/view_icon.png +0 -0
- wx/demo/agw/bitmaps/view_multicolumn.png +0 -0
- wx/demo/agw/bitmaps/viewmag-16.png +0 -0
- wx/demo/agw/bitmaps/viewmag-m-16.png +0 -0
- wx/demo/agw/bitmaps/viewmag-p-16.png +0 -0
- wx/demo/agw/bitmaps/viewmagfit-16.png +0 -0
- wx/demo/agw/data/Example_1.xls +0 -0
- wx/demo/agw/images.py +6714 -0
- wx/demo/bitmaps/AG00028_.gif +0 -0
- wx/demo/bitmaps/AG00039_.gif +0 -0
- wx/demo/bitmaps/AG00178_.gif +0 -0
- wx/demo/bitmaps/AG00183_.gif +0 -0
- wx/demo/bitmaps/AG00185_.gif +0 -0
- wx/demo/bitmaps/BD13656_.gif +0 -0
- wx/demo/bitmaps/advancedsplash.png +0 -0
- wx/demo/bitmaps/aquabutton.png +0 -0
- wx/demo/bitmaps/aquachecked.ico +0 -0
- wx/demo/bitmaps/aquaflagged.ico +0 -0
- wx/demo/bitmaps/aquanotchecked.ico +0 -0
- wx/demo/bitmaps/aquanotflagged.ico +0 -0
- wx/demo/bitmaps/canada.gif +0 -0
- wx/demo/bitmaps/checked.ico +0 -0
- wx/demo/bitmaps/columns.png +0 -0
- wx/demo/bitmaps/contexthelp-16.png +0 -0
- wx/demo/bitmaps/contexthelp.png +0 -0
- wx/demo/bitmaps/copy.png +0 -0
- wx/demo/bitmaps/cropshot24x20.png +0 -0
- wx/demo/bitmaps/cut.png +0 -0
- wx/demo/bitmaps/editcopy.png +0 -0
- wx/demo/bitmaps/editcut.png +0 -0
- wx/demo/bitmaps/editpaste.png +0 -0
- wx/demo/bitmaps/exit-16.png +0 -0
- wx/demo/bitmaps/exit.ico +0 -0
- wx/demo/bitmaps/ffwd.png +0 -0
- wx/demo/bitmaps/ffwddisabled.png +0 -0
- wx/demo/bitmaps/field-16.png +0 -0
- wx/demo/bitmaps/filenew.png +0 -0
- wx/demo/bitmaps/fileopen.png +0 -0
- wx/demo/bitmaps/filesave.png +0 -0
- wx/demo/bitmaps/flagged.ico +0 -0
- wx/demo/bitmaps/folder_new.png +0 -0
- wx/demo/bitmaps/ghost.png +0 -0
- wx/demo/bitmaps/gradientbutton.png +0 -0
- wx/demo/bitmaps/help-16.png +0 -0
- wx/demo/bitmaps/help.ico +0 -0
- wx/demo/bitmaps/honeycomb300.png +0 -0
- wx/demo/bitmaps/image.bmp +0 -0
- wx/demo/bitmaps/image.gif +0 -0
- wx/demo/bitmaps/image.ico +0 -0
- wx/demo/bitmaps/image.jpg +0 -0
- wx/demo/bitmaps/image.png +0 -0
- wx/demo/bitmaps/image.tif +0 -0
- wx/demo/bitmaps/italy.gif +0 -0
- wx/demo/bitmaps/lbadd.png +0 -0
- wx/demo/bitmaps/lbcharge.png +0 -0
- wx/demo/bitmaps/lbdecrypted.png +0 -0
- wx/demo/bitmaps/lbnews.png +0 -0
- wx/demo/bitmaps/lbroll.png +0 -0
- wx/demo/bitmaps/minus1.ico +0 -0
- wx/demo/bitmaps/minus2.ico +0 -0
- wx/demo/bitmaps/minus3.ico +0 -0
- wx/demo/bitmaps/minus4.ico +0 -0
- wx/demo/bitmaps/minus5.ico +0 -0
- wx/demo/bitmaps/month-16.png +0 -0
- wx/demo/bitmaps/new_file.png +0 -0
- wx/demo/bitmaps/new_folder.png +0 -0
- wx/demo/bitmaps/notchecked.ico +0 -0
- wx/demo/bitmaps/notflagged.ico +0 -0
- wx/demo/bitmaps/ok-16.png +0 -0
- wx/demo/bitmaps/open_folder.png +0 -0
- wx/demo/bitmaps/paste.png +0 -0
- wx/demo/bitmaps/pause.png +0 -0
- wx/demo/bitmaps/pausedisabled.png +0 -0
- wx/demo/bitmaps/phoenix_title.png +0 -0
- wx/demo/bitmaps/phoenix_top.png +0 -0
- wx/demo/bitmaps/play.png +0 -0
- wx/demo/bitmaps/playdisabled.png +0 -0
- wx/demo/bitmaps/plus1.ico +0 -0
- wx/demo/bitmaps/plus2.ico +0 -0
- wx/demo/bitmaps/plus3.ico +0 -0
- wx/demo/bitmaps/plus4.ico +0 -0
- wx/demo/bitmaps/plus5.ico +0 -0
- wx/demo/bitmaps/record.png +0 -0
- wx/demo/bitmaps/recorddisabled.png +0 -0
- wx/demo/bitmaps/rewind.png +0 -0
- wx/demo/bitmaps/rewinddisabled.png +0 -0
- wx/demo/bitmaps/round.png +0 -0
- wx/demo/bitmaps/save.png +0 -0
- wx/demo/bitmaps/smfuel.ico +0 -0
- wx/demo/bitmaps/smpi.ico +0 -0
- wx/demo/bitmaps/smtemp.ico +0 -0
- wx/demo/bitmaps/snakey_render.png +0 -0
- wx/demo/bitmaps/splash.png +0 -0
- wx/demo/bitmaps/stop.png +0 -0
- wx/demo/bitmaps/stopdisabled.png +0 -0
- wx/demo/bitmaps/sttbutton.png +0 -0
- wx/demo/bitmaps/sttfont.png +0 -0
- wx/demo/bitmaps/sttheader.png +0 -0
- wx/demo/bitmaps/stthelp.png +0 -0
- wx/demo/bitmaps/toucan.png +0 -0
- wx/demo/bitmaps/view1.png +0 -0
- wx/demo/bitmaps/view2.png +0 -0
- wx/demo/bitmaps/view_choose.png +0 -0
- wx/demo/bitmaps/view_detailed.png +0 -0
- wx/demo/bitmaps/view_icon.png +0 -0
- wx/demo/bitmaps/view_multicolumn.png +0 -0
- wx/demo/bitmaps/viewmag-16.png +0 -0
- wx/demo/bitmaps/viewmag-m-16.png +0 -0
- wx/demo/bitmaps/viewmag-p-16.png +0 -0
- wx/demo/bitmaps/viewmagfit-16.png +0 -0
- wx/demo/bmp_source/001.png +0 -0
- wx/demo/bmp_source/002.png +0 -0
- wx/demo/bmp_source/003.png +0 -0
- wx/demo/bmp_source/004.png +0 -0
- wx/demo/bmp_source/005.png +0 -0
- wx/demo/bmp_source/006.png +0 -0
- wx/demo/bmp_source/007.png +0 -0
- wx/demo/bmp_source/008.png +0 -0
- wx/demo/bmp_source/009.png +0 -0
- wx/demo/bmp_source/010.png +0 -0
- wx/demo/bmp_source/011.png +0 -0
- wx/demo/bmp_source/012.png +0 -0
- wx/demo/bmp_source/013.png +0 -0
- wx/demo/bmp_source/014.png +0 -0
- wx/demo/bmp_source/015.png +0 -0
- wx/demo/bmp_source/016.png +0 -0
- wx/demo/bmp_source/017.png +0 -0
- wx/demo/bmp_source/018.png +0 -0
- wx/demo/bmp_source/019.png +0 -0
- wx/demo/bmp_source/020.png +0 -0
- wx/demo/bmp_source/021.png +0 -0
- wx/demo/bmp_source/022.png +0 -0
- wx/demo/bmp_source/023.png +0 -0
- wx/demo/bmp_source/024.png +0 -0
- wx/demo/bmp_source/025.png +0 -0
- wx/demo/bmp_source/026.png +0 -0
- wx/demo/bmp_source/027.png +0 -0
- wx/demo/bmp_source/028.png +0 -0
- wx/demo/bmp_source/029.png +0 -0
- wx/demo/bmp_source/030.png +0 -0
- wx/demo/bmp_source/DbDec.bmp +0 -0
- wx/demo/bmp_source/DbInc.bmp +0 -0
- wx/demo/bmp_source/Dec.bmp +0 -0
- wx/demo/bmp_source/FRM_0.png +0 -0
- wx/demo/bmp_source/FRM_1.png +0 -0
- wx/demo/bmp_source/FRM_2.png +0 -0
- wx/demo/bmp_source/FRM_3.png +0 -0
- wx/demo/bmp_source/FRM_4.png +0 -0
- wx/demo/bmp_source/FRM_5.png +0 -0
- wx/demo/bmp_source/FRM_6.png +0 -0
- wx/demo/bmp_source/FRM_7.png +0 -0
- wx/demo/bmp_source/FRM_8.png +0 -0
- wx/demo/bmp_source/GridBG.gif +0 -0
- wx/demo/bmp_source/Inc.bmp +0 -0
- wx/demo/bmp_source/LB01.png +0 -0
- wx/demo/bmp_source/LB02.png +0 -0
- wx/demo/bmp_source/LB03.png +0 -0
- wx/demo/bmp_source/LB04.png +0 -0
- wx/demo/bmp_source/LB05.png +0 -0
- wx/demo/bmp_source/LB06.png +0 -0
- wx/demo/bmp_source/LB07.png +0 -0
- wx/demo/bmp_source/LB08.png +0 -0
- wx/demo/bmp_source/LB09.png +0 -0
- wx/demo/bmp_source/LB10.png +0 -0
- wx/demo/bmp_source/LB11.png +0 -0
- wx/demo/bmp_source/LB12.png +0 -0
- wx/demo/bmp_source/Pt.bmp +0 -0
- wx/demo/bmp_source/Vippi.png +0 -0
- wx/demo/bmp_source/backgrnd.png +0 -0
- wx/demo/bmp_source/book.png +0 -0
- wx/demo/bmp_source/book_blue.png +0 -0
- wx/demo/bmp_source/book_green.png +0 -0
- wx/demo/bmp_source/book_red.png +0 -0
- wx/demo/bmp_source/bp_btn1.png +0 -0
- wx/demo/bmp_source/bp_btn2.png +0 -0
- wx/demo/bmp_source/bp_btn3.png +0 -0
- wx/demo/bmp_source/bp_btn4.png +0 -0
- wx/demo/bmp_source/bulb1.bmp +0 -0
- wx/demo/bmp_source/bulb2.bmp +0 -0
- wx/demo/bmp_source/carrot.png +0 -0
- wx/demo/bmp_source/clipboard.png +0 -0
- wx/demo/bmp_source/code.png +0 -0
- wx/demo/bmp_source/core.png +0 -0
- wx/demo/bmp_source/custom.png +0 -0
- wx/demo/bmp_source/customcontrol.png +0 -0
- wx/demo/bmp_source/deletedocs.png +0 -0
- wx/demo/bmp_source/deleteperspective.png +0 -0
- wx/demo/bmp_source/demo.png +0 -0
- wx/demo/bmp_source/dialog.png +0 -0
- wx/demo/bmp_source/exit.png +0 -0
- wx/demo/bmp_source/expansion.png +0 -0
- wx/demo/bmp_source/find.png +0 -0
- wx/demo/bmp_source/findnext.png +0 -0
- wx/demo/bmp_source/floatcanvas.png +0 -0
- wx/demo/bmp_source/frame.png +0 -0
- wx/demo/bmp_source/images.png +0 -0
- wx/demo/bmp_source/inspect.png +0 -0
- wx/demo/bmp_source/layout.png +0 -0
- wx/demo/bmp_source/logo.png +0 -0
- wx/demo/bmp_source/miscellaneous.png +0 -0
- wx/demo/bmp_source/modifiedexists.png +0 -0
- wx/demo/bmp_source/mondrian.ico +0 -0
- wx/demo/bmp_source/morecontrols.png +0 -0
- wx/demo/bmp_source/moredialog.png +0 -0
- wx/demo/bmp_source/noicon.png +0 -0
- wx/demo/bmp_source/overview.png +0 -0
- wx/demo/bmp_source/pencil.png +0 -0
- wx/demo/bmp_source/pointy.png +0 -0
- wx/demo/bmp_source/process.png +0 -0
- wx/demo/bmp_source/pyshell.png +0 -0
- wx/demo/bmp_source/recent.png +0 -0
- wx/demo/bmp_source/rest.png +0 -0
- wx/demo/bmp_source/robin.jpg +0 -0
- wx/demo/bmp_source/rt_alignleft.xpm +24 -0
- wx/demo/bmp_source/rt_alignright.xpm +24 -0
- wx/demo/bmp_source/rt_bold.xpm +24 -0
- wx/demo/bmp_source/rt_centre.xpm +24 -0
- wx/demo/bmp_source/rt_colour.xpm +59 -0
- wx/demo/bmp_source/rt_copy.xpm +44 -0
- wx/demo/bmp_source/rt_cut.xpm +46 -0
- wx/demo/bmp_source/rt_font.xpm +25 -0
- wx/demo/bmp_source/rt_idea.xpm +47 -0
- wx/demo/bmp_source/rt_indentless.xpm +25 -0
- wx/demo/bmp_source/rt_indentmore.xpm +25 -0
- wx/demo/bmp_source/rt_italic.xpm +25 -0
- wx/demo/bmp_source/rt_open.xpm +57 -0
- wx/demo/bmp_source/rt_paste.xpm +46 -0
- wx/demo/bmp_source/rt_redo.xpm +58 -0
- wx/demo/bmp_source/rt_sample.xpm +44 -0
- wx/demo/bmp_source/rt_save.xpm +42 -0
- wx/demo/bmp_source/rt_smiley.xpm +42 -0
- wx/demo/bmp_source/rt_underline.xpm +25 -0
- wx/demo/bmp_source/rt_undo.xpm +58 -0
- wx/demo/bmp_source/rt_zebra.xpm +409 -0
- wx/demo/bmp_source/saveperspective.png +0 -0
- wx/demo/bmp_source/sm_down.bmp +0 -0
- wx/demo/bmp_source/sm_up.bmp +0 -0
- wx/demo/bmp_source/smiles2.bmp +0 -0
- wx/demo/bmp_source/test2.bmp +0 -0
- wx/demo/bmp_source/testmask.bmp +0 -0
- wx/demo/bmp_source/teststar.png +0 -0
- wx/demo/bmp_source/thekid.png +0 -0
- wx/demo/bmp_source/tog1.bmp +0 -0
- wx/demo/bmp_source/tog2.bmp +0 -0
- wx/demo/bmp_source/wiztest1.bmp +0 -0
- wx/demo/bmp_source/wiztest2.bmp +0 -0
- wx/demo/bmp_source/wxpdemo.ico +0 -0
- wx/demo/cursors/paperairplane_arrow_blue.cur +0 -0
- wx/demo/cursors/paperairplane_arrow_blue_fadeout80.cur +0 -0
- wx/demo/cursors/paperairplane_arrow_colorshift.ani +0 -0
- wx/demo/cursors/paperairplane_arrow_dark.cur +0 -0
- wx/demo/cursors/paperairplane_arrow_grey.cur +0 -0
- wx/demo/cursors/paperairplane_arrow_red.cur +0 -0
- wx/demo/cursors/paperairplane_arrow_white.cur +0 -0
- wx/demo/cursors/paperairplane_arrow_white24.png +0 -0
- wx/demo/data/0-tiger.svg +725 -0
- wx/demo/data/Asteroid_blaster.swf +0 -0
- wx/demo/data/SIL_OPEN_FONT_LICENSE.txt +97 -0
- wx/demo/data/SourceCodePro-Regular.ttf +0 -0
- wx/demo/data/accessories-calculator.svg +636 -0
- wx/demo/data/accessories-text-editor.svg +554 -0
- wx/demo/data/anykey.wav +0 -0
- wx/demo/data/applications-internet.svg +623 -0
- wx/demo/data/desktop-accessibility.svg +245 -0
- wx/demo/data/desktop-keyboard-shortcuts.svg +839 -0
- wx/demo/data/desktop-locale.svg +878 -0
- wx/demo/data/desktop-remote-desktop.svg +1479 -0
- wx/demo/data/desktop-theme.svg +882 -0
- wx/demo/data/desktop-wallpaper.svg +747 -0
- wx/demo/data/echo.py +25 -0
- wx/demo/data/imagemap.htm +20 -0
- wx/demo/data/imagemap.png +0 -0
- wx/demo/data/internet-group-chat.svg +312 -0
- wx/demo/data/internet-mail.svg +440 -0
- wx/demo/data/locale/af/LC_MESSAGES/wxpydemo.mo +0 -0
- wx/demo/data/locale/de/LC_MESSAGES/wxpydemo.mo +0 -0
- wx/demo/data/locale/es/LC_MESSAGES/wxpydemo.mo +0 -0
- wx/demo/data/locale/fr/LC_MESSAGES/wxpydemo.mo +0 -0
- wx/demo/data/locale/it/LC_MESSAGES/wxpydemo.mo +0 -0
- wx/demo/data/locale-src/af.po +23 -0
- wx/demo/data/locale-src/de.po +23 -0
- wx/demo/data/locale-src/es.po +22 -0
- wx/demo/data/locale-src/fr.po +22 -0
- wx/demo/data/locale-src/install +15 -0
- wx/demo/data/locale-src/it.po +23 -0
- wx/demo/data/locale-src/wxpydemo.po +21 -0
- wx/demo/data/office-calendar.svg +316 -0
- wx/demo/data/pic.png +0 -0
- wx/demo/data/pic2.bmp +0 -0
- wx/demo/data/plan.wav +0 -0
- wx/demo/data/proclamation.txt +115 -0
- wx/demo/data/resource.wdr +0 -0
- wx/demo/data/resource_wdr.xrc +146 -0
- wx/demo/data/romedalen.png +0 -0
- wx/demo/data/stc.h.html +3544 -0
- wx/demo/data/system-session.svg +510 -0
- wx/demo/data/system-users.svg +539 -0
- wx/demo/data/tables.htm +116 -0
- wx/demo/data/test-gradient-pen.svg +14 -0
- wx/demo/data/test-opacity.svg +7 -0
- wx/demo/data/test.htm +253 -0
- wx/demo/data/testmovie.mpg +0 -0
- wx/demo/data/testtable.txt +38 -0
- wx/demo/data/tips.txt +73 -0
- wx/demo/data/utilities-system-monitor.svg +435 -0
- wx/demo/data/utilities-terminal.svg +500 -0
- wx/demo/data/widgetTest.htm +70 -0
- wx/demo/data/world.dat +24055 -0
- wx/demo/demo.py +4 -0
- wx/demo/demo.pyw +4 -0
- wx/demo/demodata.py +310 -0
- wx/demo/encode_bitmaps.py +181 -0
- wx/demo/images.py +6812 -0
- wx/demo/infoframe.py +149 -0
- wx/demo/run.py +171 -0
- wx/demo/snippets/__init__.py +13 -0
- wx/demo/snippets/arc.py +21 -0
- wx/demo/snippets/arc_negative.py +21 -0
- wx/demo/snippets/clip.py +13 -0
- wx/demo/snippets/clip_image.py +13 -0
- wx/demo/snippets/curve_rectangle.py +53 -0
- wx/demo/snippets/curve_to.py +17 -0
- wx/demo/snippets/dash.py +18 -0
- wx/demo/snippets/ellipse.py +33 -0
- wx/demo/snippets/fill_and_stroke.py +12 -0
- wx/demo/snippets/fill_and_stroke2.py +18 -0
- wx/demo/snippets/fill_style.py +31 -0
- wx/demo/snippets/glyph_path.py +21 -0
- wx/demo/snippets/gradient.py +16 -0
- wx/demo/snippets/gradient_mask.py +12 -0
- wx/demo/snippets/group.py +16 -0
- wx/demo/snippets/image.py +14 -0
- wx/demo/snippets/imagepattern.py +23 -0
- wx/demo/snippets/path.py +7 -0
- wx/demo/snippets/set_line_cap.py +19 -0
- wx/demo/snippets/set_line_join.py +21 -0
- wx/demo/snippets/show_glyphs.py +15 -0
- wx/demo/snippets/text.py +22 -0
- wx/demo/snippets/text_align_center.py +26 -0
- wx/demo/snippets/text_extents.py +27 -0
- wx/demo/template.py +36 -0
- wx/demo/throbImages.py +1277 -0
- wx/demo/version.py +3 -0
- wx/demo/widgetTest.py +72 -0
- wx/demo/wxpdemo.ico +0 -0
- wx/glcanvas.py +10 -0
- wx/glcanvas.pyi +458 -0
- wx/grid.py +229 -0
- wx/grid.pyi +4959 -0
- wx/html.py +35 -0
- wx/html.pyi +2965 -0
- wx/html2.py +40 -0
- wx/html2.pyi +772 -0
- wx/lib/CDate.py +202 -0
- wx/lib/ClickableHtmlWindow.py +57 -0
- wx/lib/__init__.py +0 -0
- wx/lib/activex.py +178 -0
- wx/lib/activexwrapper.py +153 -0
- wx/lib/agw/__init__.py +128 -0
- wx/lib/agw/advancedsplash.py +564 -0
- wx/lib/agw/aquabutton.py +1127 -0
- wx/lib/agw/artmanager.py +2110 -0
- wx/lib/agw/aui/__init__.py +295 -0
- wx/lib/agw/aui/aui_constants.py +2628 -0
- wx/lib/agw/aui/aui_switcherdialog.py +1227 -0
- wx/lib/agw/aui/aui_utilities.py +672 -0
- wx/lib/agw/aui/auibar.py +4031 -0
- wx/lib/agw/aui/auibook.py +6289 -0
- wx/lib/agw/aui/dockart.py +1198 -0
- wx/lib/agw/aui/framemanager.py +10409 -0
- wx/lib/agw/aui/tabart.py +2771 -0
- wx/lib/agw/aui/tabmdi.py +679 -0
- wx/lib/agw/balloontip.py +1158 -0
- wx/lib/agw/buttonpanel.py +2823 -0
- wx/lib/agw/cubecolourdialog.py +3529 -0
- wx/lib/agw/customtreectrl.py +8963 -0
- wx/lib/agw/data/ShortcutEditor_1.png +0 -0
- wx/lib/agw/data/ShortcutEditor_1_thumb.png +0 -0
- wx/lib/agw/data/ShortcutEditor_2.png +0 -0
- wx/lib/agw/data/ShortcutEditor_2_thumb.png +0 -0
- wx/lib/agw/data/ShortcutEditor_3.png +0 -0
- wx/lib/agw/data/ShortcutEditor_3_thumb.png +0 -0
- wx/lib/agw/data/ShortcutEditor_4.png +0 -0
- wx/lib/agw/data/ShortcutEditor_4_thumb.png +0 -0
- wx/lib/agw/data/default_help_text.html +105 -0
- wx/lib/agw/flatmenu.py +7333 -0
- wx/lib/agw/flatnotebook.py +6672 -0
- wx/lib/agw/floatspin.py +1823 -0
- wx/lib/agw/fmcustomizedlg.py +540 -0
- wx/lib/agw/fmresources.py +407 -0
- wx/lib/agw/foldpanelbar.py +2282 -0
- wx/lib/agw/fourwaysplitter.py +1130 -0
- wx/lib/agw/genericmessagedialog.py +1549 -0
- wx/lib/agw/gradientbutton.py +732 -0
- wx/lib/agw/hyperlink.py +664 -0
- wx/lib/agw/hypertreelist.py +5374 -0
- wx/lib/agw/infobar.py +885 -0
- wx/lib/agw/knobctrl.py +945 -0
- wx/lib/agw/labelbook.py +3029 -0
- wx/lib/agw/multidirdialog.py +615 -0
- wx/lib/agw/peakmeter.py +1029 -0
- wx/lib/agw/persist/__init__.py +188 -0
- wx/lib/agw/persist/persist_constants.py +284 -0
- wx/lib/agw/persist/persist_handlers.py +2614 -0
- wx/lib/agw/persist/persistencemanager.py +864 -0
- wx/lib/agw/piectrl.py +1082 -0
- wx/lib/agw/pybusyinfo.py +399 -0
- wx/lib/agw/pycollapsiblepane.py +940 -0
- wx/lib/agw/pygauge.py +570 -0
- wx/lib/agw/pyprogress.py +917 -0
- wx/lib/agw/ribbon/__init__.py +198 -0
- wx/lib/agw/ribbon/art.py +219 -0
- wx/lib/agw/ribbon/art_aui.py +1284 -0
- wx/lib/agw/ribbon/art_default.py +81 -0
- wx/lib/agw/ribbon/art_internal.py +244 -0
- wx/lib/agw/ribbon/art_msw.py +2736 -0
- wx/lib/agw/ribbon/art_osx.py +52 -0
- wx/lib/agw/ribbon/bar.py +1261 -0
- wx/lib/agw/ribbon/buttonbar.py +1320 -0
- wx/lib/agw/ribbon/control.py +205 -0
- wx/lib/agw/ribbon/gallery.py +974 -0
- wx/lib/agw/ribbon/page.py +946 -0
- wx/lib/agw/ribbon/panel.py +1170 -0
- wx/lib/agw/ribbon/toolbar.py +1442 -0
- wx/lib/agw/rulerctrl.py +1887 -0
- wx/lib/agw/scrolledthumbnail.py +2119 -0
- wx/lib/agw/shapedbutton.py +1809 -0
- wx/lib/agw/shortcuteditor.py +2634 -0
- wx/lib/agw/speedmeter.py +1801 -0
- wx/lib/agw/supertooltip.py +1444 -0
- wx/lib/agw/thumbnailctrl.py +529 -0
- wx/lib/agw/toasterbox.py +1327 -0
- wx/lib/agw/ultimatelistctrl.py +13666 -0
- wx/lib/agw/xlsgrid.py +2113 -0
- wx/lib/agw/zoombar.py +1339 -0
- wx/lib/analogclock/__init__.py +140 -0
- wx/lib/analogclock/analogclock.py +631 -0
- wx/lib/analogclock/helpers.py +991 -0
- wx/lib/analogclock/lib_setup/__init__.py +0 -0
- wx/lib/analogclock/lib_setup/buttontreectrlpanel.py +297 -0
- wx/lib/analogclock/lib_setup/fontselect.py +57 -0
- wx/lib/analogclock/setup.py +490 -0
- wx/lib/analogclock/styles.py +47 -0
- wx/lib/anchors.py +103 -0
- wx/lib/art/__init__.py +4 -0
- wx/lib/art/flagart.py +1583 -0
- wx/lib/art/img2pyartprov.py +56 -0
- wx/lib/busy.py +146 -0
- wx/lib/buttons.py +1141 -0
- wx/lib/calendar.py +1597 -0
- wx/lib/checkbox.py +837 -0
- wx/lib/colourchooser/__init__.py +38 -0
- wx/lib/colourchooser/canvas.py +145 -0
- wx/lib/colourchooser/intl.py +24 -0
- wx/lib/colourchooser/pycolourbox.py +89 -0
- wx/lib/colourchooser/pycolourchooser.py +629 -0
- wx/lib/colourchooser/pycolourslider.py +100 -0
- wx/lib/colourchooser/pypalette.py +211 -0
- wx/lib/colourdb.py +740 -0
- wx/lib/colourselect.py +385 -0
- wx/lib/colourutils.py +118 -0
- wx/lib/combotreebox.py +944 -0
- wx/lib/delayedresult.py +420 -0
- wx/lib/dialogs.py +510 -0
- wx/lib/docview.py +3210 -0
- wx/lib/dragscroller.py +79 -0
- wx/lib/editor/README.txt +77 -0
- wx/lib/editor/__init__.py +24 -0
- wx/lib/editor/editor.py +974 -0
- wx/lib/editor/images.py +15 -0
- wx/lib/editor/selection.py +44 -0
- wx/lib/embeddedimage.py +76 -0
- wx/lib/eventStack.py +136 -0
- wx/lib/eventwatcher.py +440 -0
- wx/lib/evtmgr.py +521 -0
- wx/lib/expando.py +393 -0
- wx/lib/fancytext.py +505 -0
- wx/lib/filebrowsebutton.py +459 -0
- wx/lib/flashwin.py +262 -0
- wx/lib/flashwin_old.py +651 -0
- wx/lib/floatcanvas/FCEvents.py +53 -0
- wx/lib/floatcanvas/FCObjects.py +2923 -0
- wx/lib/floatcanvas/FloatCanvas.py +1027 -0
- wx/lib/floatcanvas/GUIMode.py +396 -0
- wx/lib/floatcanvas/NavCanvas.py +161 -0
- wx/lib/floatcanvas/Resources.py +319 -0
- wx/lib/floatcanvas/ScreenShot.py +1788 -0
- wx/lib/floatcanvas/Utilities/BBox.py +314 -0
- wx/lib/floatcanvas/Utilities/Colors.py +137 -0
- wx/lib/floatcanvas/Utilities/GUI.py +91 -0
- wx/lib/floatcanvas/Utilities/__init__.py +7 -0
- wx/lib/floatcanvas/__init__.py +124 -0
- wx/lib/foldmenu.py +89 -0
- wx/lib/gestures.py +310 -0
- wx/lib/gizmos/__init__.py +18 -0
- wx/lib/gizmos/dynamicsash.py +1202 -0
- wx/lib/gizmos/ledctrl.py +300 -0
- wx/lib/gizmos/treelistctrl.py +87 -0
- wx/lib/graphics.py +1939 -0
- wx/lib/gridmovers.py +511 -0
- wx/lib/iewin.py +249 -0
- wx/lib/iewin_old.py +894 -0
- wx/lib/imagebrowser.py +856 -0
- wx/lib/imageutils.py +163 -0
- wx/lib/infoframe.py +490 -0
- wx/lib/inspection.py +1255 -0
- wx/lib/intctrl.py +1001 -0
- wx/lib/itemspicker.py +256 -0
- wx/lib/langlistctrl.py +480 -0
- wx/lib/layoutf.py +271 -0
- wx/lib/masked/__init__.py +27 -0
- wx/lib/masked/combobox.py +839 -0
- wx/lib/masked/ctrl.py +108 -0
- wx/lib/masked/ipaddrctrl.py +242 -0
- wx/lib/masked/maskededit.py +7279 -0
- wx/lib/masked/numctrl.py +2001 -0
- wx/lib/masked/textctrl.py +465 -0
- wx/lib/masked/timectrl.py +1466 -0
- wx/lib/mixins/__init__.py +17 -0
- wx/lib/mixins/grid.py +47 -0
- wx/lib/mixins/gridlabelrenderer.py +251 -0
- wx/lib/mixins/imagelist.py +77 -0
- wx/lib/mixins/inspection.py +184 -0
- wx/lib/mixins/listctrl.py +894 -0
- wx/lib/mixins/rubberband.py +404 -0
- wx/lib/mixins/treemixin.py +678 -0
- wx/lib/msgpanel.py +95 -0
- wx/lib/multisash.py +747 -0
- wx/lib/myole4ax.idl +178 -0
- wx/lib/myole4ax.tlb +0 -0
- wx/lib/newevent.py +229 -0
- wx/lib/nvdlg.py +156 -0
- wx/lib/ogl/__init__.py +13 -0
- wx/lib/ogl/basic.py +3991 -0
- wx/lib/ogl/bmpshape.py +87 -0
- wx/lib/ogl/canvas.py +467 -0
- wx/lib/ogl/composit.py +1577 -0
- wx/lib/ogl/diagram.py +230 -0
- wx/lib/ogl/divided.py +483 -0
- wx/lib/ogl/drawn.py +900 -0
- wx/lib/ogl/lines.py +1811 -0
- wx/lib/ogl/oglmisc.py +608 -0
- wx/lib/pdfviewer/__init__.py +113 -0
- wx/lib/pdfviewer/bitmaps/ArrowLeft.png +0 -0
- wx/lib/pdfviewer/bitmaps/ArrowRight.png +0 -0
- wx/lib/pdfviewer/bitmaps/DirectionH.png +0 -0
- wx/lib/pdfviewer/bitmaps/DirectionV.png +0 -0
- wx/lib/pdfviewer/bitmaps/PlayerFirst.png +0 -0
- wx/lib/pdfviewer/bitmaps/PlayerLast.png +0 -0
- wx/lib/pdfviewer/bitmaps/PlayerNext.png +0 -0
- wx/lib/pdfviewer/bitmaps/PlayerPrev.png +0 -0
- wx/lib/pdfviewer/bitmaps/Printer.png +0 -0
- wx/lib/pdfviewer/bitmaps/ReadMe.txt +28 -0
- wx/lib/pdfviewer/bitmaps/Save.png +0 -0
- wx/lib/pdfviewer/bitmaps/ZoomIn.png +0 -0
- wx/lib/pdfviewer/bitmaps/ZoomOut.png +0 -0
- wx/lib/pdfviewer/bitmaps/encode_bitmaps.py +37 -0
- wx/lib/pdfviewer/buttonpanel.py +279 -0
- wx/lib/pdfviewer/images.py +240 -0
- wx/lib/pdfviewer/viewer.py +1077 -0
- wx/lib/pdfwin.py +295 -0
- wx/lib/pdfwin_old.py +789 -0
- wx/lib/platebtn.py +789 -0
- wx/lib/plot/CHANGELOG.md +150 -0
- wx/lib/plot/README.md +16 -0
- wx/lib/plot/__init__.py +46 -0
- wx/lib/plot/__main__.py +5 -0
- wx/lib/plot/examples/__init__.py +0 -0
- wx/lib/plot/examples/demo.py +1009 -0
- wx/lib/plot/examples/simple_example.py +54 -0
- wx/lib/plot/plotcanvas.py +2981 -0
- wx/lib/plot/polyobjects.py +1525 -0
- wx/lib/plot/utils.py +327 -0
- wx/lib/popupctl.py +250 -0
- wx/lib/printout.py +1157 -0
- wx/lib/progressindicator.py +151 -0
- wx/lib/pubsub/LICENSE_BSD_Simple.txt +23 -0
- wx/lib/pubsub/README_WxPython.txt +22 -0
- wx/lib/pubsub/RELEASE_NOTES.txt +71 -0
- wx/lib/pubsub/__init__.py +25 -0
- wx/lib/pubsub/core/__init__.py +92 -0
- wx/lib/pubsub/core/arg1/__init__.py +16 -0
- wx/lib/pubsub/core/arg1/listenerimpl.py +97 -0
- wx/lib/pubsub/core/arg1/publisher.py +40 -0
- wx/lib/pubsub/core/arg1/publishermixin.py +34 -0
- wx/lib/pubsub/core/arg1/topicargspecimpl.py +66 -0
- wx/lib/pubsub/core/arg1/topicmgrimpl.py +19 -0
- wx/lib/pubsub/core/callables.py +191 -0
- wx/lib/pubsub/core/imp2.py +63 -0
- wx/lib/pubsub/core/itopicdefnprovider.py +0 -0
- wx/lib/pubsub/core/kwargs/__init__.py +16 -0
- wx/lib/pubsub/core/kwargs/datamsg.py +27 -0
- wx/lib/pubsub/core/kwargs/listenerimpl.py +93 -0
- wx/lib/pubsub/core/kwargs/publisher.py +77 -0
- wx/lib/pubsub/core/kwargs/publishermixin.py +65 -0
- wx/lib/pubsub/core/kwargs/topicargspecimpl.py +217 -0
- wx/lib/pubsub/core/kwargs/topicmgrimpl.py +13 -0
- wx/lib/pubsub/core/listener.py +40 -0
- wx/lib/pubsub/core/listenerbase.py +185 -0
- wx/lib/pubsub/core/notificationmgr.py +185 -0
- wx/lib/pubsub/core/publisherbase.py +191 -0
- wx/lib/pubsub/core/topicargspec.py +77 -0
- wx/lib/pubsub/core/topicdefnprovider.py +632 -0
- wx/lib/pubsub/core/topicexc.py +72 -0
- wx/lib/pubsub/core/topicmgr.py +456 -0
- wx/lib/pubsub/core/topicobj.py +472 -0
- wx/lib/pubsub/core/topictreetraverser.py +143 -0
- wx/lib/pubsub/core/topicutils.py +118 -0
- wx/lib/pubsub/core/treeconfig.py +21 -0
- wx/lib/pubsub/core/validatedefnargs.py +29 -0
- wx/lib/pubsub/core/weakmethod.py +102 -0
- wx/lib/pubsub/policies.py +24 -0
- wx/lib/pubsub/pub.py +199 -0
- wx/lib/pubsub/py2and3.py +608 -0
- wx/lib/pubsub/setuparg1.py +47 -0
- wx/lib/pubsub/setupkwargs.py +29 -0
- wx/lib/pubsub/utils/__init__.py +27 -0
- wx/lib/pubsub/utils/exchandling.py +100 -0
- wx/lib/pubsub/utils/misc.py +100 -0
- wx/lib/pubsub/utils/notification.py +331 -0
- wx/lib/pubsub/utils/topictreeprinter.py +195 -0
- wx/lib/pubsub/utils/xmltopicdefnprovider.py +287 -0
- wx/lib/pydocview.py +3300 -0
- wx/lib/rcsizer.py +229 -0
- wx/lib/resizewidget.py +357 -0
- wx/lib/scrolledpanel.py +225 -0
- wx/lib/sheet.py +350 -0
- wx/lib/sized_controls.py +691 -0
- wx/lib/softwareupdate.py +361 -0
- wx/lib/splitter.py +925 -0
- wx/lib/statbmp.py +199 -0
- wx/lib/stattext.py +322 -0
- wx/lib/throbber.py +425 -0
- wx/lib/ticker.py +295 -0
- wx/lib/ticker_xrc.py +48 -0
- wx/lib/utils.py +89 -0
- wx/lib/wordwrap.py +97 -0
- wx/lib/wxcairo/__init__.py +124 -0
- wx/lib/wxcairo/wx_cairocffi.py +200 -0
- wx/lib/wxcairo/wx_pycairo.py +463 -0
- wx/lib/wxpTag.py +274 -0
- wx/locale/af/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/an/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ar/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ca/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ca@valencia/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/cs/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/da/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/de/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/el/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/es/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/eu/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/fa_IR/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/fi/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/fr/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/gl_ES/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/hi/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/hr/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/hu/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/id/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/it/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ja/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ka/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ko_KR/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/lt/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/lv/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ms/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/nb/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ne/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/nl/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/pl/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/pt/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/pt_BR/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ro/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ru/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/sk/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/sl/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/sq/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/sv/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/ta/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/tr/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/uk/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/vi/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/zh_CN/LC_MESSAGES/wxstd.mo +0 -0
- wx/locale/zh_TW/LC_MESSAGES/wxstd.mo +0 -0
- wx/media.py +27 -0
- wx/media.pyi +223 -0
- wx/msw.py +13 -0
- wx/msw.pyi +65 -0
- wx/propgrid.py +1451 -0
- wx/propgrid.pyi +7914 -0
- wx/py/CHANGES.txt +796 -0
- wx/py/Py.ico +0 -0
- wx/py/PyAlaCarte.py +34 -0
- wx/py/PyAlaMode.py +34 -0
- wx/py/PyAlaModeTest.py +33 -0
- wx/py/PyCrust.ico +0 -0
- wx/py/PyCrust.py +78 -0
- wx/py/PyCrust_16.png +0 -0
- wx/py/PyCrust_32.png +0 -0
- wx/py/PyFilling.py +35 -0
- wx/py/PyShell.py +78 -0
- wx/py/PySlices.ico +0 -0
- wx/py/PySlices.py +98 -0
- wx/py/PySlicesShell.py +94 -0
- wx/py/PySlices_16.png +0 -0
- wx/py/PySlices_32.png +0 -0
- wx/py/PyWrap.py +52 -0
- wx/py/README.txt +77 -0
- wx/py/__init__.py +20 -0
- wx/py/buffer.py +136 -0
- wx/py/crust.py +403 -0
- wx/py/crustslices.py +403 -0
- wx/py/dispatcher.py +259 -0
- wx/py/document.py +37 -0
- wx/py/editor.py +844 -0
- wx/py/editwindow.py +299 -0
- wx/py/filling.py +357 -0
- wx/py/frame.py +978 -0
- wx/py/images.py +212 -0
- wx/py/interpreter.py +170 -0
- wx/py/introspect.py +393 -0
- wx/py/magic.py +98 -0
- wx/py/parse.py +134 -0
- wx/py/path.py +36 -0
- wx/py/pseudo.py +99 -0
- wx/py/shell.py +1588 -0
- wx/py/sliceshell.py +3814 -0
- wx/py/tests/test_interpreter.py +71 -0
- wx/py/tests/test_introspect.py +862 -0
- wx/py/tests/test_pseudo.py +70 -0
- wx/py/tests/test_version.py +36 -0
- wx/py/tests/testall.py +22 -0
- wx/py/version.py +7 -0
- wx/ribbon.py +45 -0
- wx/ribbon.pyi +2494 -0
- wx/richtext.py +142 -0
- wx/richtext.pyi +12113 -0
- wx/siplib.cp313-win_amd64.pyd +0 -0
- wx/stc.py +58 -0
- wx/stc.pyi +8463 -0
- wx/svg/__init__.py +364 -0
- wx/svg/_nanosvg.cp313-win_amd64.pyd +0 -0
- wx/tools/__init__.py +18 -0
- wx/tools/dbg.py +268 -0
- wx/tools/genaxmodule.py +50 -0
- wx/tools/helpviewer.py +92 -0
- wx/tools/img2img.py +85 -0
- wx/tools/img2png.py +54 -0
- wx/tools/img2py.py +309 -0
- wx/tools/img2xpm.py +54 -0
- wx/tools/pywxrc.py +949 -0
- wx/tools/wxget.py +254 -0
- wx/tools/wxget_docs_demo.py +186 -0
- wx/wxbase315u_net_vc140_x64.dll +0 -0
- wx/wxbase315u_vc140_x64.dll +0 -0
- wx/wxbase315u_xml_vc140_x64.dll +0 -0
- wx/wxmsw315u_adv_vc140_x64.dll +0 -0
- wx/wxmsw315u_aui_vc140_x64.dll +0 -0
- wx/wxmsw315u_core_vc140_x64.dll +0 -0
- wx/wxmsw315u_gl_vc140_x64.dll +0 -0
- wx/wxmsw315u_html_vc140_x64.dll +0 -0
- wx/wxmsw315u_media_vc140_x64.dll +0 -0
- wx/wxmsw315u_propgrid_vc140_x64.dll +0 -0
- wx/wxmsw315u_qa_vc140_x64.dll +0 -0
- wx/wxmsw315u_ribbon_vc140_x64.dll +0 -0
- wx/wxmsw315u_richtext_vc140_x64.dll +0 -0
- wx/wxmsw315u_stc_vc140_x64.dll +0 -0
- wx/wxmsw315u_webview_vc140_x64.dll +0 -0
- wx/wxmsw315u_xrc_vc140_x64.dll +0 -0
- wx/xml.py +15 -0
- wx/xml.pyi +575 -0
- wx/xrc.py +65 -0
- wx/xrc.pyi +742 -0
- wxPython_zombie-3.1.5.8.dist-info/LICENSE.txt +950 -0
- wxPython_zombie-3.1.5.8.dist-info/METADATA +107 -0
- wxPython_zombie-3.1.5.8.dist-info/RECORD +1175 -0
- wxPython_zombie-3.1.5.8.dist-info/WHEEL +5 -0
- wxPython_zombie-3.1.5.8.dist-info/entry_points.txt +2 -0
- wxPython_zombie-3.1.5.8.dist-info/top_level.txt +1 -0
wx/aui.pyi
ADDED
|
@@ -0,0 +1,3655 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#---------------------------------------------------------------------------
|
|
3
|
+
# This file is generated by wxPython's PI generator. Do not edit by hand.
|
|
4
|
+
#
|
|
5
|
+
# The *.pyi files are used by PyCharm and other development tools to provide
|
|
6
|
+
# more information, such as PEP 484 type hints, than it is able to glean from
|
|
7
|
+
# introspection of extension types and methods. They are not intended to be
|
|
8
|
+
# imported, executed or used for any other purpose other than providing info
|
|
9
|
+
# to the tools. If you don't use use a tool that makes use of .pyi files then
|
|
10
|
+
# you can safely ignore this file.
|
|
11
|
+
#
|
|
12
|
+
# See: https://www.python.org/dev/peps/pep-0484/
|
|
13
|
+
# https://www.jetbrains.com/help/pycharm/2016.1/type-hinting-in-pycharm.html
|
|
14
|
+
#
|
|
15
|
+
#---------------------------------------------------------------------------
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
"""
|
|
19
|
+
`wx.aui` provides a set of classes for implementing an "Advanced User Interface".
|
|
20
|
+
More specifically, these classes enable to you present some of your application in
|
|
21
|
+
floating or dockable panels, notebooks with floatable tabs, etc.
|
|
22
|
+
|
|
23
|
+
There is also a pure-python implementation of these classes available in the
|
|
24
|
+
`wx.lib.agw.aui` package.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
#-- begin-_aui --#
|
|
28
|
+
|
|
29
|
+
import wx
|
|
30
|
+
|
|
31
|
+
#-- end-_aui --#
|
|
32
|
+
#-- begin-auiframemanager --#
|
|
33
|
+
AUI_DOCK_NONE = 0
|
|
34
|
+
AUI_DOCK_TOP = 0
|
|
35
|
+
AUI_DOCK_RIGHT = 0
|
|
36
|
+
AUI_DOCK_BOTTOM = 0
|
|
37
|
+
AUI_DOCK_LEFT = 0
|
|
38
|
+
AUI_DOCK_CENTER = 0
|
|
39
|
+
AUI_DOCK_CENTRE = 0
|
|
40
|
+
AUI_MGR_ALLOW_FLOATING = 0
|
|
41
|
+
AUI_MGR_ALLOW_ACTIVE_PANE = 0
|
|
42
|
+
AUI_MGR_TRANSPARENT_DRAG = 0
|
|
43
|
+
AUI_MGR_TRANSPARENT_HINT = 0
|
|
44
|
+
AUI_MGR_VENETIAN_BLINDS_HINT = 0
|
|
45
|
+
AUI_MGR_RECTANGLE_HINT = 0
|
|
46
|
+
AUI_MGR_HINT_FADE = 0
|
|
47
|
+
AUI_MGR_NO_VENETIAN_BLINDS_FADE = 0
|
|
48
|
+
AUI_MGR_LIVE_RESIZE = 0
|
|
49
|
+
AUI_MGR_DEFAULT = 0
|
|
50
|
+
wxEVT_AUI_PANE_BUTTON = 0
|
|
51
|
+
wxEVT_AUI_PANE_CLOSE = 0
|
|
52
|
+
wxEVT_AUI_PANE_MAXIMIZE = 0
|
|
53
|
+
wxEVT_AUI_PANE_RESTORE = 0
|
|
54
|
+
wxEVT_AUI_PANE_ACTIVATED = 0
|
|
55
|
+
wxEVT_AUI_RENDER = 0
|
|
56
|
+
wxEVT_AUI_FIND_MANAGER = 0
|
|
57
|
+
|
|
58
|
+
class AuiManager(wx.EvtHandler):
|
|
59
|
+
"""
|
|
60
|
+
AuiManager(managed_wnd=None, flags=AUI_MGR_DEFAULT)
|
|
61
|
+
|
|
62
|
+
wxAuiManager is the central class of the wxAUI class framework.
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
def __init__(self, managed_wnd=None, flags=AUI_MGR_DEFAULT):
|
|
66
|
+
"""
|
|
67
|
+
AuiManager(managed_wnd=None, flags=AUI_MGR_DEFAULT)
|
|
68
|
+
|
|
69
|
+
wxAuiManager is the central class of the wxAUI class framework.
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
def AddPane(self, *args, **kw):
|
|
73
|
+
"""
|
|
74
|
+
AddPane(window, pane_info) -> bool
|
|
75
|
+
AddPane(window, direction=wx.LEFT, caption=wx.EmptyString) -> bool
|
|
76
|
+
AddPane(window, pane_info, drop_pos) -> bool
|
|
77
|
+
|
|
78
|
+
AddPane() tells the frame manager to start managing a child window.
|
|
79
|
+
"""
|
|
80
|
+
|
|
81
|
+
def GetPane(self, *args, **kw):
|
|
82
|
+
"""
|
|
83
|
+
GetPane(window) -> AuiPaneInfo
|
|
84
|
+
GetPane(name) -> AuiPaneInfo
|
|
85
|
+
|
|
86
|
+
GetPane() is used to lookup a wxAuiPaneInfo object either by window
|
|
87
|
+
pointer or by pane name, which acts as a unique id for a window pane.
|
|
88
|
+
"""
|
|
89
|
+
|
|
90
|
+
def CalculateHintRect(self, paneWindow, pt, offset):
|
|
91
|
+
"""
|
|
92
|
+
CalculateHintRect(paneWindow, pt, offset) -> wx.Rect
|
|
93
|
+
|
|
94
|
+
This function is used by controls to calculate the drop hint
|
|
95
|
+
rectangle.
|
|
96
|
+
"""
|
|
97
|
+
|
|
98
|
+
def CanDockPanel(self, p):
|
|
99
|
+
"""
|
|
100
|
+
CanDockPanel(p) -> bool
|
|
101
|
+
|
|
102
|
+
Check if a key modifier is pressed (actually WXK_CONTROL or WXK_ALT)
|
|
103
|
+
while dragging the frame to not dock the window.
|
|
104
|
+
"""
|
|
105
|
+
|
|
106
|
+
def ClosePane(self, paneInfo):
|
|
107
|
+
"""
|
|
108
|
+
ClosePane(paneInfo)
|
|
109
|
+
|
|
110
|
+
Destroys or hides the given pane depending on its flags.
|
|
111
|
+
"""
|
|
112
|
+
|
|
113
|
+
def CreateFloatingFrame(self, parent, p):
|
|
114
|
+
"""
|
|
115
|
+
CreateFloatingFrame(parent, p) -> AuiFloatingFrame
|
|
116
|
+
|
|
117
|
+
Creates a floating frame in this wxAuiManager with the given parent
|
|
118
|
+
and wxAuiPaneInfo.
|
|
119
|
+
"""
|
|
120
|
+
|
|
121
|
+
def DetachPane(self, window):
|
|
122
|
+
"""
|
|
123
|
+
DetachPane(window) -> bool
|
|
124
|
+
|
|
125
|
+
Tells the wxAuiManager to stop managing the pane specified by window.
|
|
126
|
+
"""
|
|
127
|
+
|
|
128
|
+
def DrawHintRect(self, paneWindow, pt, offset):
|
|
129
|
+
"""
|
|
130
|
+
DrawHintRect(paneWindow, pt, offset)
|
|
131
|
+
|
|
132
|
+
This function is used by controls to draw the hint window.
|
|
133
|
+
"""
|
|
134
|
+
|
|
135
|
+
def GetAllPanes(self):
|
|
136
|
+
"""
|
|
137
|
+
GetAllPanes() -> AuiPaneInfoArray
|
|
138
|
+
|
|
139
|
+
Returns an array of all panes managed by the frame manager.
|
|
140
|
+
"""
|
|
141
|
+
|
|
142
|
+
def GetArtProvider(self):
|
|
143
|
+
"""
|
|
144
|
+
GetArtProvider() -> AuiDockArt
|
|
145
|
+
|
|
146
|
+
Returns the current art provider being used.
|
|
147
|
+
"""
|
|
148
|
+
|
|
149
|
+
def GetDockSizeConstraint(self, widthpct, heightpct):
|
|
150
|
+
"""
|
|
151
|
+
GetDockSizeConstraint(widthpct, heightpct)
|
|
152
|
+
|
|
153
|
+
Returns the current dock constraint values.
|
|
154
|
+
"""
|
|
155
|
+
|
|
156
|
+
def GetFlags(self):
|
|
157
|
+
"""
|
|
158
|
+
GetFlags() -> unsignedint
|
|
159
|
+
|
|
160
|
+
Returns the current wxAuiManagerOption's flags.
|
|
161
|
+
"""
|
|
162
|
+
|
|
163
|
+
def GetManagedWindow(self):
|
|
164
|
+
"""
|
|
165
|
+
GetManagedWindow() -> wx.Window
|
|
166
|
+
|
|
167
|
+
Returns the frame currently being managed by wxAuiManager.
|
|
168
|
+
"""
|
|
169
|
+
|
|
170
|
+
def HasLiveResize(self):
|
|
171
|
+
"""
|
|
172
|
+
HasLiveResize() -> bool
|
|
173
|
+
|
|
174
|
+
Returns true if windows are resized live.
|
|
175
|
+
"""
|
|
176
|
+
|
|
177
|
+
def HideHint(self):
|
|
178
|
+
"""
|
|
179
|
+
HideHint()
|
|
180
|
+
|
|
181
|
+
HideHint() hides any docking hint that may be visible.
|
|
182
|
+
"""
|
|
183
|
+
|
|
184
|
+
def InsertPane(self, window, insert_location, insert_level=AUI_INSERT_PANE):
|
|
185
|
+
"""
|
|
186
|
+
InsertPane(window, insert_location, insert_level=AUI_INSERT_PANE) -> bool
|
|
187
|
+
|
|
188
|
+
This method is used to insert either a previously unmanaged pane
|
|
189
|
+
window into the frame manager, or to insert a currently managed pane
|
|
190
|
+
somewhere else.
|
|
191
|
+
"""
|
|
192
|
+
|
|
193
|
+
def LoadPaneInfo(self, pane_part, pane):
|
|
194
|
+
"""
|
|
195
|
+
LoadPaneInfo(pane_part, pane)
|
|
196
|
+
|
|
197
|
+
LoadPaneInfo() is similar to LoadPerspective, with the exception that
|
|
198
|
+
it only loads information about a single pane.
|
|
199
|
+
"""
|
|
200
|
+
|
|
201
|
+
def LoadPerspective(self, perspective, update=True):
|
|
202
|
+
"""
|
|
203
|
+
LoadPerspective(perspective, update=True) -> bool
|
|
204
|
+
|
|
205
|
+
Loads a saved perspective.
|
|
206
|
+
"""
|
|
207
|
+
|
|
208
|
+
def MaximizePane(self, paneInfo):
|
|
209
|
+
"""
|
|
210
|
+
MaximizePane(paneInfo)
|
|
211
|
+
|
|
212
|
+
Maximize the given pane.
|
|
213
|
+
"""
|
|
214
|
+
|
|
215
|
+
def RestorePane(self, paneInfo):
|
|
216
|
+
"""
|
|
217
|
+
RestorePane(paneInfo)
|
|
218
|
+
|
|
219
|
+
Restore the last state of the given pane.
|
|
220
|
+
"""
|
|
221
|
+
|
|
222
|
+
def RestoreMaximizedPane(self):
|
|
223
|
+
"""
|
|
224
|
+
RestoreMaximizedPane()
|
|
225
|
+
|
|
226
|
+
Restore the previously maximized pane.
|
|
227
|
+
"""
|
|
228
|
+
|
|
229
|
+
def SavePaneInfo(self, pane):
|
|
230
|
+
"""
|
|
231
|
+
SavePaneInfo(pane) -> String
|
|
232
|
+
|
|
233
|
+
SavePaneInfo() is similar to SavePerspective, with the exception that
|
|
234
|
+
it only saves information about a single pane.
|
|
235
|
+
"""
|
|
236
|
+
|
|
237
|
+
def SavePerspective(self):
|
|
238
|
+
"""
|
|
239
|
+
SavePerspective() -> String
|
|
240
|
+
|
|
241
|
+
Saves the entire user interface layout into an encoded wxString, which
|
|
242
|
+
can then be stored by the application (probably using wxConfig).
|
|
243
|
+
"""
|
|
244
|
+
|
|
245
|
+
def SetArtProvider(self, art_provider):
|
|
246
|
+
"""
|
|
247
|
+
SetArtProvider(art_provider)
|
|
248
|
+
|
|
249
|
+
Instructs wxAuiManager to use art provider specified by parameter
|
|
250
|
+
art_provider for all drawing calls.
|
|
251
|
+
"""
|
|
252
|
+
|
|
253
|
+
def SetDockSizeConstraint(self, widthpct, heightpct):
|
|
254
|
+
"""
|
|
255
|
+
SetDockSizeConstraint(widthpct, heightpct)
|
|
256
|
+
|
|
257
|
+
When a user creates a new dock by dragging a window into a docked
|
|
258
|
+
position, often times the large size of the window will create a dock
|
|
259
|
+
that is unwieldy large.
|
|
260
|
+
"""
|
|
261
|
+
|
|
262
|
+
def SetFlags(self, flags):
|
|
263
|
+
"""
|
|
264
|
+
SetFlags(flags)
|
|
265
|
+
|
|
266
|
+
This method is used to specify wxAuiManagerOption's flags.
|
|
267
|
+
"""
|
|
268
|
+
|
|
269
|
+
def SetManagedWindow(self, managed_wnd):
|
|
270
|
+
"""
|
|
271
|
+
SetManagedWindow(managed_wnd)
|
|
272
|
+
|
|
273
|
+
Called to specify the frame or window which is to be managed by
|
|
274
|
+
wxAuiManager.
|
|
275
|
+
"""
|
|
276
|
+
|
|
277
|
+
def ShowHint(self, rect):
|
|
278
|
+
"""
|
|
279
|
+
ShowHint(rect)
|
|
280
|
+
|
|
281
|
+
This function is used by controls to explicitly show a hint window at
|
|
282
|
+
the specified rectangle.
|
|
283
|
+
"""
|
|
284
|
+
|
|
285
|
+
def StartPaneDrag(self, paneWindow, offset):
|
|
286
|
+
"""
|
|
287
|
+
StartPaneDrag(paneWindow, offset)
|
|
288
|
+
|
|
289
|
+
Mostly used internally to define the drag action parameters.
|
|
290
|
+
"""
|
|
291
|
+
|
|
292
|
+
def UnInit(self):
|
|
293
|
+
"""
|
|
294
|
+
UnInit()
|
|
295
|
+
|
|
296
|
+
Dissociate the managed window from the manager.
|
|
297
|
+
"""
|
|
298
|
+
|
|
299
|
+
def Update(self):
|
|
300
|
+
"""
|
|
301
|
+
Update()
|
|
302
|
+
|
|
303
|
+
This method is called after any number of changes are made to any of
|
|
304
|
+
the managed panes.
|
|
305
|
+
"""
|
|
306
|
+
|
|
307
|
+
@staticmethod
|
|
308
|
+
def AlwaysUsesLiveResize():
|
|
309
|
+
"""
|
|
310
|
+
AlwaysUsesLiveResize() -> bool
|
|
311
|
+
|
|
312
|
+
Returns true if live resize is always used on the current platform.
|
|
313
|
+
"""
|
|
314
|
+
|
|
315
|
+
@staticmethod
|
|
316
|
+
def GetManager(window):
|
|
317
|
+
"""
|
|
318
|
+
GetManager(window) -> AuiManager
|
|
319
|
+
|
|
320
|
+
Calling this method will return the wxAuiManager for a given window.
|
|
321
|
+
"""
|
|
322
|
+
AllPanes = property(None, None)
|
|
323
|
+
ArtProvider = property(None, None)
|
|
324
|
+
Flags = property(None, None)
|
|
325
|
+
ManagedWindow = property(None, None)
|
|
326
|
+
|
|
327
|
+
def ProcessDockResult(self, target, new_pos):
|
|
328
|
+
"""
|
|
329
|
+
ProcessDockResult(target, new_pos) -> bool
|
|
330
|
+
|
|
331
|
+
ProcessDockResult() is a protected member of the wxAUI layout manager.
|
|
332
|
+
"""
|
|
333
|
+
# end of class AuiManager
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
class AuiPaneInfo(object):
|
|
337
|
+
"""
|
|
338
|
+
AuiPaneInfo()
|
|
339
|
+
AuiPaneInfo(c)
|
|
340
|
+
|
|
341
|
+
wxAuiPaneInfo is part of the wxAUI class framework.
|
|
342
|
+
"""
|
|
343
|
+
|
|
344
|
+
def __init__(self, *args, **kw):
|
|
345
|
+
"""
|
|
346
|
+
AuiPaneInfo()
|
|
347
|
+
AuiPaneInfo(c)
|
|
348
|
+
|
|
349
|
+
wxAuiPaneInfo is part of the wxAUI class framework.
|
|
350
|
+
"""
|
|
351
|
+
|
|
352
|
+
def BestSize(self, *args, **kw):
|
|
353
|
+
"""
|
|
354
|
+
BestSize(size) -> AuiPaneInfo
|
|
355
|
+
BestSize(x, y) -> AuiPaneInfo
|
|
356
|
+
|
|
357
|
+
BestSize() sets the ideal size for the pane.
|
|
358
|
+
"""
|
|
359
|
+
|
|
360
|
+
def Centre(self):
|
|
361
|
+
"""
|
|
362
|
+
Centre() -> AuiPaneInfo
|
|
363
|
+
|
|
364
|
+
Center() sets the pane dock position to the left side of the frame.
|
|
365
|
+
"""
|
|
366
|
+
|
|
367
|
+
def Center(self):
|
|
368
|
+
"""
|
|
369
|
+
Center() -> AuiPaneInfo
|
|
370
|
+
|
|
371
|
+
Center() sets the pane dock position to the left side of the frame.
|
|
372
|
+
"""
|
|
373
|
+
|
|
374
|
+
def CentrePane(self):
|
|
375
|
+
"""
|
|
376
|
+
CentrePane() -> AuiPaneInfo
|
|
377
|
+
|
|
378
|
+
CentrePane() specifies that the pane should adopt the default center
|
|
379
|
+
pane settings.
|
|
380
|
+
"""
|
|
381
|
+
|
|
382
|
+
def CenterPane(self):
|
|
383
|
+
"""
|
|
384
|
+
CenterPane() -> AuiPaneInfo
|
|
385
|
+
|
|
386
|
+
CentrePane() specifies that the pane should adopt the default center
|
|
387
|
+
pane settings.
|
|
388
|
+
"""
|
|
389
|
+
|
|
390
|
+
def FloatingPosition(self, *args, **kw):
|
|
391
|
+
"""
|
|
392
|
+
FloatingPosition(pos) -> AuiPaneInfo
|
|
393
|
+
FloatingPosition(x, y) -> AuiPaneInfo
|
|
394
|
+
|
|
395
|
+
FloatingPosition() sets the position of the floating pane.
|
|
396
|
+
"""
|
|
397
|
+
|
|
398
|
+
def FloatingSize(self, *args, **kw):
|
|
399
|
+
"""
|
|
400
|
+
FloatingSize(size) -> AuiPaneInfo
|
|
401
|
+
FloatingSize(x, y) -> AuiPaneInfo
|
|
402
|
+
|
|
403
|
+
FloatingSize() sets the size of the floating pane.
|
|
404
|
+
"""
|
|
405
|
+
|
|
406
|
+
def MaxSize(self, *args, **kw):
|
|
407
|
+
"""
|
|
408
|
+
MaxSize(size) -> AuiPaneInfo
|
|
409
|
+
MaxSize(x, y) -> AuiPaneInfo
|
|
410
|
+
|
|
411
|
+
MaxSize() sets the maximum size of the pane.
|
|
412
|
+
"""
|
|
413
|
+
|
|
414
|
+
def MinSize(self, *args, **kw):
|
|
415
|
+
"""
|
|
416
|
+
MinSize(size) -> AuiPaneInfo
|
|
417
|
+
MinSize(x, y) -> AuiPaneInfo
|
|
418
|
+
|
|
419
|
+
MinSize() sets the minimum size of the pane.
|
|
420
|
+
"""
|
|
421
|
+
name = property(None, None)
|
|
422
|
+
caption = property(None, None)
|
|
423
|
+
icon = property(None, None)
|
|
424
|
+
window = property(None, None)
|
|
425
|
+
frame = property(None, None)
|
|
426
|
+
state = property(None, None)
|
|
427
|
+
dock_direction = property(None, None)
|
|
428
|
+
dock_layer = property(None, None)
|
|
429
|
+
dock_row = property(None, None)
|
|
430
|
+
dock_pos = property(None, None)
|
|
431
|
+
best_size = property(None, None)
|
|
432
|
+
min_size = property(None, None)
|
|
433
|
+
max_size = property(None, None)
|
|
434
|
+
floating_pos = property(None, None)
|
|
435
|
+
floating_size = property(None, None)
|
|
436
|
+
dock_proportion = property(None, None)
|
|
437
|
+
rect = property(None, None)
|
|
438
|
+
|
|
439
|
+
def Bottom(self):
|
|
440
|
+
"""
|
|
441
|
+
Bottom() -> AuiPaneInfo
|
|
442
|
+
|
|
443
|
+
Bottom() sets the pane dock position to the bottom side of the frame.
|
|
444
|
+
"""
|
|
445
|
+
|
|
446
|
+
def BottomDockable(self, b=True):
|
|
447
|
+
"""
|
|
448
|
+
BottomDockable(b=True) -> AuiPaneInfo
|
|
449
|
+
|
|
450
|
+
BottomDockable() indicates whether a pane can be docked at the bottom
|
|
451
|
+
of the frame.
|
|
452
|
+
"""
|
|
453
|
+
|
|
454
|
+
def Caption(self, c):
|
|
455
|
+
"""
|
|
456
|
+
Caption(c) -> AuiPaneInfo
|
|
457
|
+
|
|
458
|
+
Caption() sets the caption of the pane.
|
|
459
|
+
"""
|
|
460
|
+
|
|
461
|
+
def CaptionVisible(self, visible=True):
|
|
462
|
+
"""
|
|
463
|
+
CaptionVisible(visible=True) -> AuiPaneInfo
|
|
464
|
+
|
|
465
|
+
CaptionVisible indicates that a pane caption should be visible.
|
|
466
|
+
"""
|
|
467
|
+
|
|
468
|
+
def CloseButton(self, visible=True):
|
|
469
|
+
"""
|
|
470
|
+
CloseButton(visible=True) -> AuiPaneInfo
|
|
471
|
+
|
|
472
|
+
CloseButton() indicates that a close button should be drawn for the
|
|
473
|
+
pane.
|
|
474
|
+
"""
|
|
475
|
+
|
|
476
|
+
def DefaultPane(self):
|
|
477
|
+
"""
|
|
478
|
+
DefaultPane() -> AuiPaneInfo
|
|
479
|
+
|
|
480
|
+
DefaultPane() specifies that the pane should adopt the default pane
|
|
481
|
+
settings.
|
|
482
|
+
"""
|
|
483
|
+
|
|
484
|
+
def DestroyOnClose(self, b=True):
|
|
485
|
+
"""
|
|
486
|
+
DestroyOnClose(b=True) -> AuiPaneInfo
|
|
487
|
+
|
|
488
|
+
DestroyOnClose() indicates whether a pane should be destroyed when it
|
|
489
|
+
is closed.
|
|
490
|
+
"""
|
|
491
|
+
|
|
492
|
+
def Direction(self, direction):
|
|
493
|
+
"""
|
|
494
|
+
Direction(direction) -> AuiPaneInfo
|
|
495
|
+
|
|
496
|
+
Direction() determines the direction of the docked pane.
|
|
497
|
+
"""
|
|
498
|
+
|
|
499
|
+
def Dock(self):
|
|
500
|
+
"""
|
|
501
|
+
Dock() -> AuiPaneInfo
|
|
502
|
+
|
|
503
|
+
Dock() indicates that a pane should be docked.
|
|
504
|
+
"""
|
|
505
|
+
|
|
506
|
+
def DockFixed(self, b=True):
|
|
507
|
+
"""
|
|
508
|
+
DockFixed(b=True) -> AuiPaneInfo
|
|
509
|
+
|
|
510
|
+
DockFixed() causes the containing dock to have no resize sash.
|
|
511
|
+
"""
|
|
512
|
+
|
|
513
|
+
def Dockable(self, b=True):
|
|
514
|
+
"""
|
|
515
|
+
Dockable(b=True) -> AuiPaneInfo
|
|
516
|
+
|
|
517
|
+
Dockable() specifies whether a frame can be docked or not.
|
|
518
|
+
"""
|
|
519
|
+
|
|
520
|
+
def Fixed(self):
|
|
521
|
+
"""
|
|
522
|
+
Fixed() -> AuiPaneInfo
|
|
523
|
+
|
|
524
|
+
Fixed() forces a pane to be fixed size so that it cannot be resized.
|
|
525
|
+
"""
|
|
526
|
+
|
|
527
|
+
def Float(self):
|
|
528
|
+
"""
|
|
529
|
+
Float() -> AuiPaneInfo
|
|
530
|
+
|
|
531
|
+
Float() indicates that a pane should be floated.
|
|
532
|
+
"""
|
|
533
|
+
|
|
534
|
+
def Floatable(self, b=True):
|
|
535
|
+
"""
|
|
536
|
+
Floatable(b=True) -> AuiPaneInfo
|
|
537
|
+
|
|
538
|
+
Floatable() sets whether the user will be able to undock a pane and
|
|
539
|
+
turn it into a floating window.
|
|
540
|
+
"""
|
|
541
|
+
|
|
542
|
+
def Gripper(self, visible=True):
|
|
543
|
+
"""
|
|
544
|
+
Gripper(visible=True) -> AuiPaneInfo
|
|
545
|
+
|
|
546
|
+
Gripper() indicates that a gripper should be drawn for the pane.
|
|
547
|
+
"""
|
|
548
|
+
|
|
549
|
+
def GripperTop(self, attop=True):
|
|
550
|
+
"""
|
|
551
|
+
GripperTop(attop=True) -> AuiPaneInfo
|
|
552
|
+
|
|
553
|
+
GripperTop() indicates that a gripper should be drawn at the top of
|
|
554
|
+
the pane.
|
|
555
|
+
"""
|
|
556
|
+
|
|
557
|
+
def HasBorder(self):
|
|
558
|
+
"""
|
|
559
|
+
HasBorder() -> bool
|
|
560
|
+
|
|
561
|
+
HasBorder() returns true if the pane displays a border.
|
|
562
|
+
"""
|
|
563
|
+
|
|
564
|
+
def HasCaption(self):
|
|
565
|
+
"""
|
|
566
|
+
HasCaption() -> bool
|
|
567
|
+
|
|
568
|
+
HasCaption() returns true if the pane displays a caption.
|
|
569
|
+
"""
|
|
570
|
+
|
|
571
|
+
def HasCloseButton(self):
|
|
572
|
+
"""
|
|
573
|
+
HasCloseButton() -> bool
|
|
574
|
+
|
|
575
|
+
HasCloseButton() returns true if the pane displays a button to close
|
|
576
|
+
the pane.
|
|
577
|
+
"""
|
|
578
|
+
|
|
579
|
+
def HasFlag(self, flag):
|
|
580
|
+
"""
|
|
581
|
+
HasFlag(flag) -> bool
|
|
582
|
+
|
|
583
|
+
HasFlag() returns true if the property specified by flag is active for
|
|
584
|
+
the pane.
|
|
585
|
+
"""
|
|
586
|
+
|
|
587
|
+
def HasGripper(self):
|
|
588
|
+
"""
|
|
589
|
+
HasGripper() -> bool
|
|
590
|
+
|
|
591
|
+
HasGripper() returns true if the pane displays a gripper.
|
|
592
|
+
"""
|
|
593
|
+
|
|
594
|
+
def HasGripperTop(self):
|
|
595
|
+
"""
|
|
596
|
+
HasGripperTop() -> bool
|
|
597
|
+
|
|
598
|
+
HasGripper() returns true if the pane displays a gripper at the top.
|
|
599
|
+
"""
|
|
600
|
+
|
|
601
|
+
def HasMaximizeButton(self):
|
|
602
|
+
"""
|
|
603
|
+
HasMaximizeButton() -> bool
|
|
604
|
+
|
|
605
|
+
HasMaximizeButton() returns true if the pane displays a button to
|
|
606
|
+
maximize the pane.
|
|
607
|
+
"""
|
|
608
|
+
|
|
609
|
+
def HasMinimizeButton(self):
|
|
610
|
+
"""
|
|
611
|
+
HasMinimizeButton() -> bool
|
|
612
|
+
|
|
613
|
+
HasMinimizeButton() returns true if the pane displays a button to
|
|
614
|
+
minimize the pane.
|
|
615
|
+
"""
|
|
616
|
+
|
|
617
|
+
def HasPinButton(self):
|
|
618
|
+
"""
|
|
619
|
+
HasPinButton() -> bool
|
|
620
|
+
|
|
621
|
+
HasPinButton() returns true if the pane displays a button to float the
|
|
622
|
+
pane.
|
|
623
|
+
"""
|
|
624
|
+
|
|
625
|
+
def Hide(self):
|
|
626
|
+
"""
|
|
627
|
+
Hide() -> AuiPaneInfo
|
|
628
|
+
|
|
629
|
+
Hide() indicates that a pane should be hidden.
|
|
630
|
+
"""
|
|
631
|
+
|
|
632
|
+
def Icon(self, b):
|
|
633
|
+
"""
|
|
634
|
+
Icon(b) -> AuiPaneInfo
|
|
635
|
+
|
|
636
|
+
Icon() sets the icon of the pane.
|
|
637
|
+
"""
|
|
638
|
+
|
|
639
|
+
def IsBottomDockable(self):
|
|
640
|
+
"""
|
|
641
|
+
IsBottomDockable() -> bool
|
|
642
|
+
|
|
643
|
+
IsBottomDockable() returns true if the pane can be docked at the
|
|
644
|
+
bottom of the managed frame.
|
|
645
|
+
"""
|
|
646
|
+
|
|
647
|
+
def IsDockable(self):
|
|
648
|
+
"""
|
|
649
|
+
IsDockable() -> bool
|
|
650
|
+
|
|
651
|
+
Returns true if the pane can be docked at any side.
|
|
652
|
+
"""
|
|
653
|
+
|
|
654
|
+
def IsDocked(self):
|
|
655
|
+
"""
|
|
656
|
+
IsDocked() -> bool
|
|
657
|
+
|
|
658
|
+
IsDocked() returns true if the pane is currently docked.
|
|
659
|
+
"""
|
|
660
|
+
|
|
661
|
+
def IsFixed(self):
|
|
662
|
+
"""
|
|
663
|
+
IsFixed() -> bool
|
|
664
|
+
|
|
665
|
+
IsFixed() returns true if the pane cannot be resized.
|
|
666
|
+
"""
|
|
667
|
+
|
|
668
|
+
def IsFloatable(self):
|
|
669
|
+
"""
|
|
670
|
+
IsFloatable() -> bool
|
|
671
|
+
|
|
672
|
+
IsFloatable() returns true if the pane can be undocked and displayed
|
|
673
|
+
as a floating window.
|
|
674
|
+
"""
|
|
675
|
+
|
|
676
|
+
def IsFloating(self):
|
|
677
|
+
"""
|
|
678
|
+
IsFloating() -> bool
|
|
679
|
+
|
|
680
|
+
IsFloating() returns true if the pane is floating.
|
|
681
|
+
"""
|
|
682
|
+
|
|
683
|
+
def IsLeftDockable(self):
|
|
684
|
+
"""
|
|
685
|
+
IsLeftDockable() -> bool
|
|
686
|
+
|
|
687
|
+
IsLeftDockable() returns true if the pane can be docked on the left of
|
|
688
|
+
the managed frame.
|
|
689
|
+
"""
|
|
690
|
+
|
|
691
|
+
def IsMovable(self):
|
|
692
|
+
"""
|
|
693
|
+
IsMovable() -> bool
|
|
694
|
+
|
|
695
|
+
IsMoveable() returns true if the docked frame can be undocked or moved
|
|
696
|
+
to another dock position.
|
|
697
|
+
"""
|
|
698
|
+
|
|
699
|
+
def IsOk(self):
|
|
700
|
+
"""
|
|
701
|
+
IsOk() -> bool
|
|
702
|
+
|
|
703
|
+
IsOk() returns true if the wxAuiPaneInfo structure is valid.
|
|
704
|
+
"""
|
|
705
|
+
|
|
706
|
+
def IsResizable(self):
|
|
707
|
+
"""
|
|
708
|
+
IsResizable() -> bool
|
|
709
|
+
|
|
710
|
+
IsResizable() returns true if the pane can be resized.
|
|
711
|
+
"""
|
|
712
|
+
|
|
713
|
+
def IsRightDockable(self):
|
|
714
|
+
"""
|
|
715
|
+
IsRightDockable() -> bool
|
|
716
|
+
|
|
717
|
+
IsRightDockable() returns true if the pane can be docked on the right
|
|
718
|
+
of the managed frame.
|
|
719
|
+
"""
|
|
720
|
+
|
|
721
|
+
def IsShown(self):
|
|
722
|
+
"""
|
|
723
|
+
IsShown() -> bool
|
|
724
|
+
|
|
725
|
+
IsShown() returns true if the pane is currently shown.
|
|
726
|
+
"""
|
|
727
|
+
|
|
728
|
+
def IsToolbar(self):
|
|
729
|
+
"""
|
|
730
|
+
IsToolbar() -> bool
|
|
731
|
+
|
|
732
|
+
IsToolbar() returns true if the pane contains a toolbar.
|
|
733
|
+
"""
|
|
734
|
+
|
|
735
|
+
def IsTopDockable(self):
|
|
736
|
+
"""
|
|
737
|
+
IsTopDockable() -> bool
|
|
738
|
+
|
|
739
|
+
IsTopDockable() returns true if the pane can be docked at the top of
|
|
740
|
+
the managed frame.
|
|
741
|
+
"""
|
|
742
|
+
|
|
743
|
+
def Layer(self, layer):
|
|
744
|
+
"""
|
|
745
|
+
Layer(layer) -> AuiPaneInfo
|
|
746
|
+
|
|
747
|
+
Layer() determines the layer of the docked pane.
|
|
748
|
+
"""
|
|
749
|
+
|
|
750
|
+
def Left(self):
|
|
751
|
+
"""
|
|
752
|
+
Left() -> AuiPaneInfo
|
|
753
|
+
|
|
754
|
+
Left() sets the pane dock position to the left side of the frame.
|
|
755
|
+
"""
|
|
756
|
+
|
|
757
|
+
def LeftDockable(self, b=True):
|
|
758
|
+
"""
|
|
759
|
+
LeftDockable(b=True) -> AuiPaneInfo
|
|
760
|
+
|
|
761
|
+
LeftDockable() indicates whether a pane can be docked on the left of
|
|
762
|
+
the frame.
|
|
763
|
+
"""
|
|
764
|
+
|
|
765
|
+
def MaximizeButton(self, visible=True):
|
|
766
|
+
"""
|
|
767
|
+
MaximizeButton(visible=True) -> AuiPaneInfo
|
|
768
|
+
|
|
769
|
+
MaximizeButton() indicates that a maximize button should be drawn for
|
|
770
|
+
the pane.
|
|
771
|
+
"""
|
|
772
|
+
|
|
773
|
+
def MinimizeButton(self, visible=True):
|
|
774
|
+
"""
|
|
775
|
+
MinimizeButton(visible=True) -> AuiPaneInfo
|
|
776
|
+
|
|
777
|
+
MinimizeButton() indicates that a minimize button should be drawn for
|
|
778
|
+
the pane.
|
|
779
|
+
"""
|
|
780
|
+
|
|
781
|
+
def Movable(self, b=True):
|
|
782
|
+
"""
|
|
783
|
+
Movable(b=True) -> AuiPaneInfo
|
|
784
|
+
|
|
785
|
+
Movable indicates whether a frame can be moved.
|
|
786
|
+
"""
|
|
787
|
+
|
|
788
|
+
def Name(self, n):
|
|
789
|
+
"""
|
|
790
|
+
Name(n) -> AuiPaneInfo
|
|
791
|
+
|
|
792
|
+
Name() sets the name of the pane so it can be referenced in lookup
|
|
793
|
+
functions.
|
|
794
|
+
"""
|
|
795
|
+
|
|
796
|
+
def PaneBorder(self, visible=True):
|
|
797
|
+
"""
|
|
798
|
+
PaneBorder(visible=True) -> AuiPaneInfo
|
|
799
|
+
|
|
800
|
+
PaneBorder indicates that a border should be drawn for the pane.
|
|
801
|
+
"""
|
|
802
|
+
|
|
803
|
+
def PinButton(self, visible=True):
|
|
804
|
+
"""
|
|
805
|
+
PinButton(visible=True) -> AuiPaneInfo
|
|
806
|
+
|
|
807
|
+
PinButton() indicates that a pin button should be drawn for the pane.
|
|
808
|
+
"""
|
|
809
|
+
|
|
810
|
+
def Position(self, pos):
|
|
811
|
+
"""
|
|
812
|
+
Position(pos) -> AuiPaneInfo
|
|
813
|
+
|
|
814
|
+
Position() determines the position of the docked pane.
|
|
815
|
+
"""
|
|
816
|
+
|
|
817
|
+
def Resizable(self, resizable=True):
|
|
818
|
+
"""
|
|
819
|
+
Resizable(resizable=True) -> AuiPaneInfo
|
|
820
|
+
|
|
821
|
+
Resizable() allows a pane to be resized if the parameter is true, and
|
|
822
|
+
forces it to be a fixed size if the parameter is false.
|
|
823
|
+
"""
|
|
824
|
+
|
|
825
|
+
def Right(self):
|
|
826
|
+
"""
|
|
827
|
+
Right() -> AuiPaneInfo
|
|
828
|
+
|
|
829
|
+
Right() sets the pane dock position to the right side of the frame.
|
|
830
|
+
"""
|
|
831
|
+
|
|
832
|
+
def RightDockable(self, b=True):
|
|
833
|
+
"""
|
|
834
|
+
RightDockable(b=True) -> AuiPaneInfo
|
|
835
|
+
|
|
836
|
+
RightDockable() indicates whether a pane can be docked on the right of
|
|
837
|
+
the frame.
|
|
838
|
+
"""
|
|
839
|
+
|
|
840
|
+
def Row(self, row):
|
|
841
|
+
"""
|
|
842
|
+
Row(row) -> AuiPaneInfo
|
|
843
|
+
|
|
844
|
+
Row() determines the row of the docked pane.
|
|
845
|
+
"""
|
|
846
|
+
|
|
847
|
+
def SafeSet(self, source):
|
|
848
|
+
"""
|
|
849
|
+
SafeSet(source)
|
|
850
|
+
|
|
851
|
+
Write the safe parts of a PaneInfo object "source" into "this".
|
|
852
|
+
"""
|
|
853
|
+
|
|
854
|
+
def SetFlag(self, flag, option_state):
|
|
855
|
+
"""
|
|
856
|
+
SetFlag(flag, option_state) -> AuiPaneInfo
|
|
857
|
+
|
|
858
|
+
SetFlag() turns the property given by flag on or off with the
|
|
859
|
+
option_state parameter.
|
|
860
|
+
"""
|
|
861
|
+
|
|
862
|
+
def Show(self, show=True):
|
|
863
|
+
"""
|
|
864
|
+
Show(show=True) -> AuiPaneInfo
|
|
865
|
+
|
|
866
|
+
Show() indicates that a pane should be shown.
|
|
867
|
+
"""
|
|
868
|
+
|
|
869
|
+
def ToolbarPane(self):
|
|
870
|
+
"""
|
|
871
|
+
ToolbarPane() -> AuiPaneInfo
|
|
872
|
+
|
|
873
|
+
ToolbarPane() specifies that the pane should adopt the default toolbar
|
|
874
|
+
pane settings.
|
|
875
|
+
"""
|
|
876
|
+
|
|
877
|
+
def Top(self):
|
|
878
|
+
"""
|
|
879
|
+
Top() -> AuiPaneInfo
|
|
880
|
+
|
|
881
|
+
Top() sets the pane dock position to the top of the frame.
|
|
882
|
+
"""
|
|
883
|
+
|
|
884
|
+
def TopDockable(self, b=True):
|
|
885
|
+
"""
|
|
886
|
+
TopDockable(b=True) -> AuiPaneInfo
|
|
887
|
+
|
|
888
|
+
TopDockable() indicates whether a pane can be docked at the top of the
|
|
889
|
+
frame.
|
|
890
|
+
"""
|
|
891
|
+
|
|
892
|
+
def Window(self, w):
|
|
893
|
+
"""
|
|
894
|
+
Window(w) -> AuiPaneInfo
|
|
895
|
+
|
|
896
|
+
Window() assigns the window pointer that the wxAuiPaneInfo should use.
|
|
897
|
+
"""
|
|
898
|
+
|
|
899
|
+
def IsValid(self):
|
|
900
|
+
"""
|
|
901
|
+
IsValid() -> bool
|
|
902
|
+
"""
|
|
903
|
+
# end of class AuiPaneInfo
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
class AuiManagerEvent(wx.Event):
|
|
907
|
+
"""
|
|
908
|
+
AuiManagerEvent(type=wx.wxEVT_NULL)
|
|
909
|
+
|
|
910
|
+
Event used to indicate various actions taken with wxAuiManager.
|
|
911
|
+
"""
|
|
912
|
+
|
|
913
|
+
def __init__(self, type=wx.wxEVT_NULL):
|
|
914
|
+
"""
|
|
915
|
+
AuiManagerEvent(type=wx.wxEVT_NULL)
|
|
916
|
+
|
|
917
|
+
Event used to indicate various actions taken with wxAuiManager.
|
|
918
|
+
"""
|
|
919
|
+
|
|
920
|
+
def CanVeto(self):
|
|
921
|
+
"""
|
|
922
|
+
CanVeto() -> bool
|
|
923
|
+
"""
|
|
924
|
+
|
|
925
|
+
def GetButton(self):
|
|
926
|
+
"""
|
|
927
|
+
GetButton() -> int
|
|
928
|
+
"""
|
|
929
|
+
|
|
930
|
+
def GetDC(self):
|
|
931
|
+
"""
|
|
932
|
+
GetDC() -> wx.DC
|
|
933
|
+
"""
|
|
934
|
+
|
|
935
|
+
def GetVeto(self):
|
|
936
|
+
"""
|
|
937
|
+
GetVeto() -> bool
|
|
938
|
+
"""
|
|
939
|
+
|
|
940
|
+
def GetManager(self):
|
|
941
|
+
"""
|
|
942
|
+
GetManager() -> AuiManager
|
|
943
|
+
"""
|
|
944
|
+
|
|
945
|
+
def GetPane(self):
|
|
946
|
+
"""
|
|
947
|
+
GetPane() -> AuiPaneInfo
|
|
948
|
+
"""
|
|
949
|
+
|
|
950
|
+
def SetButton(self, button):
|
|
951
|
+
"""
|
|
952
|
+
SetButton(button)
|
|
953
|
+
|
|
954
|
+
Sets the ID of the button clicked that triggered this event.
|
|
955
|
+
"""
|
|
956
|
+
|
|
957
|
+
def SetCanVeto(self, can_veto):
|
|
958
|
+
"""
|
|
959
|
+
SetCanVeto(can_veto)
|
|
960
|
+
|
|
961
|
+
Sets whether or not this event can be vetoed.
|
|
962
|
+
"""
|
|
963
|
+
|
|
964
|
+
def SetDC(self, pdc):
|
|
965
|
+
"""
|
|
966
|
+
SetDC(pdc)
|
|
967
|
+
"""
|
|
968
|
+
|
|
969
|
+
def SetManager(self, manager):
|
|
970
|
+
"""
|
|
971
|
+
SetManager(manager)
|
|
972
|
+
|
|
973
|
+
Sets the wxAuiManager this event is associated with.
|
|
974
|
+
"""
|
|
975
|
+
|
|
976
|
+
def SetPane(self, pane):
|
|
977
|
+
"""
|
|
978
|
+
SetPane(pane)
|
|
979
|
+
|
|
980
|
+
Sets the pane this event is associated with.
|
|
981
|
+
"""
|
|
982
|
+
|
|
983
|
+
def Veto(self, veto=True):
|
|
984
|
+
"""
|
|
985
|
+
Veto(veto=True)
|
|
986
|
+
|
|
987
|
+
Cancels the action indicated by this event if CanVeto() is true.
|
|
988
|
+
"""
|
|
989
|
+
Button = property(None, None)
|
|
990
|
+
DC = property(None, None)
|
|
991
|
+
Manager = property(None, None)
|
|
992
|
+
Pane = property(None, None)
|
|
993
|
+
# end of class AuiManagerEvent
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
class AuiDockInfo(object):
|
|
997
|
+
"""
|
|
998
|
+
AuiDockInfo()
|
|
999
|
+
AuiDockInfo(c)
|
|
1000
|
+
"""
|
|
1001
|
+
|
|
1002
|
+
def __init__(self, *args, **kw):
|
|
1003
|
+
"""
|
|
1004
|
+
AuiDockInfo()
|
|
1005
|
+
AuiDockInfo(c)
|
|
1006
|
+
"""
|
|
1007
|
+
panes = property(None, None)
|
|
1008
|
+
rect = property(None, None)
|
|
1009
|
+
dock_direction = property(None, None)
|
|
1010
|
+
dock_layer = property(None, None)
|
|
1011
|
+
dock_row = property(None, None)
|
|
1012
|
+
size = property(None, None)
|
|
1013
|
+
min_size = property(None, None)
|
|
1014
|
+
resizable = property(None, None)
|
|
1015
|
+
toolbar = property(None, None)
|
|
1016
|
+
fixed = property(None, None)
|
|
1017
|
+
reserved1 = property(None, None)
|
|
1018
|
+
|
|
1019
|
+
def IsOk(self):
|
|
1020
|
+
"""
|
|
1021
|
+
IsOk() -> bool
|
|
1022
|
+
"""
|
|
1023
|
+
|
|
1024
|
+
def IsHorizontal(self):
|
|
1025
|
+
"""
|
|
1026
|
+
IsHorizontal() -> bool
|
|
1027
|
+
"""
|
|
1028
|
+
|
|
1029
|
+
def IsVertical(self):
|
|
1030
|
+
"""
|
|
1031
|
+
IsVertical() -> bool
|
|
1032
|
+
"""
|
|
1033
|
+
# end of class AuiDockInfo
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
class AuiDockUIPart(object):
|
|
1037
|
+
"""
|
|
1038
|
+
|
|
1039
|
+
"""
|
|
1040
|
+
typeCaption = 0
|
|
1041
|
+
typeGripper = 0
|
|
1042
|
+
typeDock = 0
|
|
1043
|
+
typeDockSizer = 0
|
|
1044
|
+
typePane = 0
|
|
1045
|
+
typePaneSizer = 0
|
|
1046
|
+
typeBackground = 0
|
|
1047
|
+
typePaneBorder = 0
|
|
1048
|
+
typePaneButton = 0
|
|
1049
|
+
type = property(None, None)
|
|
1050
|
+
orientation = property(None, None)
|
|
1051
|
+
dock = property(None, None)
|
|
1052
|
+
pane = property(None, None)
|
|
1053
|
+
button = property(None, None)
|
|
1054
|
+
cont_sizer = property(None, None)
|
|
1055
|
+
sizer_item = property(None, None)
|
|
1056
|
+
rect = property(None, None)
|
|
1057
|
+
# end of class AuiDockUIPart
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
class AuiFloatingFrame(wx.Frame):
|
|
1061
|
+
"""
|
|
1062
|
+
AuiFloatingFrame(parent, ownerMgr, pane, id=wx.ID_ANY, style=wx.RESIZE_BORDER|wx.SYSTEM_MENU|wx.CAPTION|wx.FRAME_NO_TASKBAR|wx.FRAME_FLOAT_ON_PARENT|wx.CLIP_CHILDREN)
|
|
1063
|
+
"""
|
|
1064
|
+
|
|
1065
|
+
def __init__(self, parent, ownerMgr, pane, id=wx.ID_ANY, style=wx.RESIZE_BORDER|wx.SYSTEM_MENU|wx.CAPTION|wx.FRAME_NO_TASKBAR|wx.FRAME_FLOAT_ON_PARENT|wx.CLIP_CHILDREN):
|
|
1066
|
+
"""
|
|
1067
|
+
AuiFloatingFrame(parent, ownerMgr, pane, id=wx.ID_ANY, style=wx.RESIZE_BORDER|wx.SYSTEM_MENU|wx.CAPTION|wx.FRAME_NO_TASKBAR|wx.FRAME_FLOAT_ON_PARENT|wx.CLIP_CHILDREN)
|
|
1068
|
+
"""
|
|
1069
|
+
|
|
1070
|
+
def SetPaneWindow(self, pane):
|
|
1071
|
+
"""
|
|
1072
|
+
SetPaneWindow(pane)
|
|
1073
|
+
"""
|
|
1074
|
+
|
|
1075
|
+
def GetOwnerManager(self):
|
|
1076
|
+
"""
|
|
1077
|
+
GetOwnerManager() -> AuiManager
|
|
1078
|
+
"""
|
|
1079
|
+
|
|
1080
|
+
def GetAuiManager(self):
|
|
1081
|
+
"""
|
|
1082
|
+
GetAuiManager() -> AuiManager
|
|
1083
|
+
|
|
1084
|
+
Returns the embedded wxAuiManager managing this floating pane's
|
|
1085
|
+
contents.
|
|
1086
|
+
"""
|
|
1087
|
+
AuiManager = property(None, None)
|
|
1088
|
+
OwnerManager = property(None, None)
|
|
1089
|
+
# end of class AuiFloatingFrame
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
EVT_AUI_PANE_BUTTON = wx.PyEventBinder( wxEVT_AUI_PANE_BUTTON )
|
|
1093
|
+
EVT_AUI_PANE_CLOSE = wx.PyEventBinder( wxEVT_AUI_PANE_CLOSE )
|
|
1094
|
+
EVT_AUI_PANE_MAXIMIZE = wx.PyEventBinder( wxEVT_AUI_PANE_MAXIMIZE )
|
|
1095
|
+
EVT_AUI_PANE_RESTORE = wx.PyEventBinder( wxEVT_AUI_PANE_RESTORE )
|
|
1096
|
+
EVT_AUI_PANE_ACTIVATED = wx.PyEventBinder( wxEVT_AUI_PANE_ACTIVATED )
|
|
1097
|
+
EVT_AUI_RENDER = wx.PyEventBinder( wxEVT_AUI_RENDER )
|
|
1098
|
+
EVT_AUI_FIND_MANAGER = wx.PyEventBinder( wxEVT_AUI_FIND_MANAGER )
|
|
1099
|
+
|
|
1100
|
+
#-- end-auiframemanager --#
|
|
1101
|
+
#-- begin-auidockart --#
|
|
1102
|
+
AUI_DOCKART_SASH_SIZE = 0
|
|
1103
|
+
AUI_DOCKART_CAPTION_SIZE = 0
|
|
1104
|
+
AUI_DOCKART_GRIPPER_SIZE = 0
|
|
1105
|
+
AUI_DOCKART_PANE_BORDER_SIZE = 0
|
|
1106
|
+
AUI_DOCKART_PANE_BUTTON_SIZE = 0
|
|
1107
|
+
AUI_DOCKART_BACKGROUND_COLOUR = 0
|
|
1108
|
+
AUI_DOCKART_SASH_COLOUR = 0
|
|
1109
|
+
AUI_DOCKART_ACTIVE_CAPTION_COLOUR = 0
|
|
1110
|
+
AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR = 0
|
|
1111
|
+
AUI_DOCKART_INACTIVE_CAPTION_COLOUR = 0
|
|
1112
|
+
AUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR = 0
|
|
1113
|
+
AUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR = 0
|
|
1114
|
+
AUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR = 0
|
|
1115
|
+
AUI_DOCKART_BORDER_COLOUR = 0
|
|
1116
|
+
AUI_DOCKART_GRIPPER_COLOUR = 0
|
|
1117
|
+
AUI_DOCKART_CAPTION_FONT = 0
|
|
1118
|
+
AUI_DOCKART_GRADIENT_TYPE = 0
|
|
1119
|
+
AUI_GRADIENT_NONE = 0
|
|
1120
|
+
AUI_GRADIENT_VERTICAL = 0
|
|
1121
|
+
AUI_GRADIENT_HORIZONTAL = 0
|
|
1122
|
+
AUI_BUTTON_STATE_NORMAL = 0
|
|
1123
|
+
AUI_BUTTON_STATE_HOVER = 0
|
|
1124
|
+
AUI_BUTTON_STATE_PRESSED = 0
|
|
1125
|
+
AUI_BUTTON_STATE_DISABLED = 0
|
|
1126
|
+
AUI_BUTTON_STATE_HIDDEN = 0
|
|
1127
|
+
AUI_BUTTON_STATE_CHECKED = 0
|
|
1128
|
+
AUI_BUTTON_CLOSE = 0
|
|
1129
|
+
AUI_BUTTON_MAXIMIZE_RESTORE = 0
|
|
1130
|
+
AUI_BUTTON_MINIMIZE = 0
|
|
1131
|
+
AUI_BUTTON_PIN = 0
|
|
1132
|
+
AUI_BUTTON_OPTIONS = 0
|
|
1133
|
+
AUI_BUTTON_WINDOWLIST = 0
|
|
1134
|
+
AUI_BUTTON_LEFT = 0
|
|
1135
|
+
AUI_BUTTON_RIGHT = 0
|
|
1136
|
+
AUI_BUTTON_UP = 0
|
|
1137
|
+
AUI_BUTTON_DOWN = 0
|
|
1138
|
+
AUI_BUTTON_CUSTOM1 = 0
|
|
1139
|
+
AUI_BUTTON_CUSTOM2 = 0
|
|
1140
|
+
AUI_BUTTON_CUSTOM3 = 0
|
|
1141
|
+
|
|
1142
|
+
class AuiDockArt(object):
|
|
1143
|
+
"""
|
|
1144
|
+
AuiDockArt()
|
|
1145
|
+
|
|
1146
|
+
wxAuiDockArt is part of the wxAUI class framework.
|
|
1147
|
+
"""
|
|
1148
|
+
|
|
1149
|
+
def __init__(self):
|
|
1150
|
+
"""
|
|
1151
|
+
AuiDockArt()
|
|
1152
|
+
|
|
1153
|
+
wxAuiDockArt is part of the wxAUI class framework.
|
|
1154
|
+
"""
|
|
1155
|
+
|
|
1156
|
+
def Clone(self):
|
|
1157
|
+
"""
|
|
1158
|
+
Clone() -> AuiDockArt
|
|
1159
|
+
|
|
1160
|
+
Create a copy of this wxAuiDockArt instance.
|
|
1161
|
+
"""
|
|
1162
|
+
|
|
1163
|
+
def DrawBackground(self, dc, window, orientation, rect):
|
|
1164
|
+
"""
|
|
1165
|
+
DrawBackground(dc, window, orientation, rect)
|
|
1166
|
+
|
|
1167
|
+
Draws a background.
|
|
1168
|
+
"""
|
|
1169
|
+
|
|
1170
|
+
def DrawBorder(self, dc, window, rect, pane):
|
|
1171
|
+
"""
|
|
1172
|
+
DrawBorder(dc, window, rect, pane)
|
|
1173
|
+
|
|
1174
|
+
Draws a border.
|
|
1175
|
+
"""
|
|
1176
|
+
|
|
1177
|
+
def DrawCaption(self, dc, window, text, rect, pane):
|
|
1178
|
+
"""
|
|
1179
|
+
DrawCaption(dc, window, text, rect, pane)
|
|
1180
|
+
|
|
1181
|
+
Draws a caption.
|
|
1182
|
+
"""
|
|
1183
|
+
|
|
1184
|
+
def DrawGripper(self, dc, window, rect, pane):
|
|
1185
|
+
"""
|
|
1186
|
+
DrawGripper(dc, window, rect, pane)
|
|
1187
|
+
|
|
1188
|
+
Draws a gripper.
|
|
1189
|
+
"""
|
|
1190
|
+
|
|
1191
|
+
def DrawPaneButton(self, dc, window, button, button_state, rect, pane):
|
|
1192
|
+
"""
|
|
1193
|
+
DrawPaneButton(dc, window, button, button_state, rect, pane)
|
|
1194
|
+
|
|
1195
|
+
Draws a button in the pane's title bar.
|
|
1196
|
+
"""
|
|
1197
|
+
|
|
1198
|
+
def DrawSash(self, dc, window, orientation, rect):
|
|
1199
|
+
"""
|
|
1200
|
+
DrawSash(dc, window, orientation, rect)
|
|
1201
|
+
|
|
1202
|
+
Draws a sash between two windows.
|
|
1203
|
+
"""
|
|
1204
|
+
|
|
1205
|
+
def GetColour(self, id):
|
|
1206
|
+
"""
|
|
1207
|
+
GetColour(id) -> wx.Colour
|
|
1208
|
+
|
|
1209
|
+
Get the colour of a certain setting.
|
|
1210
|
+
"""
|
|
1211
|
+
|
|
1212
|
+
def GetFont(self, id):
|
|
1213
|
+
"""
|
|
1214
|
+
GetFont(id) -> wx.Font
|
|
1215
|
+
|
|
1216
|
+
Get a font setting.
|
|
1217
|
+
"""
|
|
1218
|
+
|
|
1219
|
+
def GetMetric(self, id):
|
|
1220
|
+
"""
|
|
1221
|
+
GetMetric(id) -> int
|
|
1222
|
+
|
|
1223
|
+
Get the value of a certain setting.
|
|
1224
|
+
"""
|
|
1225
|
+
|
|
1226
|
+
def SetColour(self, id, colour):
|
|
1227
|
+
"""
|
|
1228
|
+
SetColour(id, colour)
|
|
1229
|
+
|
|
1230
|
+
Set a certain setting with the value colour.
|
|
1231
|
+
"""
|
|
1232
|
+
|
|
1233
|
+
def SetFont(self, id, font):
|
|
1234
|
+
"""
|
|
1235
|
+
SetFont(id, font)
|
|
1236
|
+
|
|
1237
|
+
Set a font setting.
|
|
1238
|
+
"""
|
|
1239
|
+
|
|
1240
|
+
def SetMetric(self, id, new_val):
|
|
1241
|
+
"""
|
|
1242
|
+
SetMetric(id, new_val)
|
|
1243
|
+
|
|
1244
|
+
Set a certain setting with the value new_val.
|
|
1245
|
+
"""
|
|
1246
|
+
# end of class AuiDockArt
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
class AuiDefaultDockArt(AuiDockArt):
|
|
1250
|
+
"""
|
|
1251
|
+
AuiDefaultDockArt()
|
|
1252
|
+
|
|
1253
|
+
This is the default art provider for wxAuiManager.
|
|
1254
|
+
"""
|
|
1255
|
+
|
|
1256
|
+
def __init__(self):
|
|
1257
|
+
"""
|
|
1258
|
+
AuiDefaultDockArt()
|
|
1259
|
+
|
|
1260
|
+
This is the default art provider for wxAuiManager.
|
|
1261
|
+
"""
|
|
1262
|
+
|
|
1263
|
+
def Clone(self):
|
|
1264
|
+
"""
|
|
1265
|
+
Clone() -> AuiDockArt
|
|
1266
|
+
|
|
1267
|
+
Create a copy of this wxAuiDockArt instance.
|
|
1268
|
+
"""
|
|
1269
|
+
|
|
1270
|
+
def GetMetric(self, id):
|
|
1271
|
+
"""
|
|
1272
|
+
GetMetric(id) -> int
|
|
1273
|
+
|
|
1274
|
+
Get the value of a certain setting.
|
|
1275
|
+
"""
|
|
1276
|
+
|
|
1277
|
+
def SetMetric(self, id, new_val):
|
|
1278
|
+
"""
|
|
1279
|
+
SetMetric(id, new_val)
|
|
1280
|
+
|
|
1281
|
+
Set a certain setting with the value new_val.
|
|
1282
|
+
"""
|
|
1283
|
+
|
|
1284
|
+
def GetColour(self, id):
|
|
1285
|
+
"""
|
|
1286
|
+
GetColour(id) -> wx.Colour
|
|
1287
|
+
|
|
1288
|
+
Get the colour of a certain setting.
|
|
1289
|
+
"""
|
|
1290
|
+
|
|
1291
|
+
def SetColour(self, id, colour):
|
|
1292
|
+
"""
|
|
1293
|
+
SetColour(id, colour)
|
|
1294
|
+
|
|
1295
|
+
Set a certain setting with the value colour.
|
|
1296
|
+
"""
|
|
1297
|
+
|
|
1298
|
+
def SetFont(self, id, font):
|
|
1299
|
+
"""
|
|
1300
|
+
SetFont(id, font)
|
|
1301
|
+
|
|
1302
|
+
Set a font setting.
|
|
1303
|
+
"""
|
|
1304
|
+
|
|
1305
|
+
def GetFont(self, id):
|
|
1306
|
+
"""
|
|
1307
|
+
GetFont(id) -> wx.Font
|
|
1308
|
+
|
|
1309
|
+
Get a font setting.
|
|
1310
|
+
"""
|
|
1311
|
+
|
|
1312
|
+
def DrawSash(self, dc, window, orientation, rect):
|
|
1313
|
+
"""
|
|
1314
|
+
DrawSash(dc, window, orientation, rect)
|
|
1315
|
+
|
|
1316
|
+
Draws a sash between two windows.
|
|
1317
|
+
"""
|
|
1318
|
+
|
|
1319
|
+
def DrawBackground(self, dc, window, orientation, rect):
|
|
1320
|
+
"""
|
|
1321
|
+
DrawBackground(dc, window, orientation, rect)
|
|
1322
|
+
|
|
1323
|
+
Draws a background.
|
|
1324
|
+
"""
|
|
1325
|
+
|
|
1326
|
+
def DrawCaption(self, dc, window, text, rect, pane):
|
|
1327
|
+
"""
|
|
1328
|
+
DrawCaption(dc, window, text, rect, pane)
|
|
1329
|
+
|
|
1330
|
+
Draws a caption.
|
|
1331
|
+
"""
|
|
1332
|
+
|
|
1333
|
+
def DrawGripper(self, dc, window, rect, pane):
|
|
1334
|
+
"""
|
|
1335
|
+
DrawGripper(dc, window, rect, pane)
|
|
1336
|
+
|
|
1337
|
+
Draws a gripper.
|
|
1338
|
+
"""
|
|
1339
|
+
|
|
1340
|
+
def DrawBorder(self, dc, window, rect, pane):
|
|
1341
|
+
"""
|
|
1342
|
+
DrawBorder(dc, window, rect, pane)
|
|
1343
|
+
|
|
1344
|
+
Draws a border.
|
|
1345
|
+
"""
|
|
1346
|
+
|
|
1347
|
+
def DrawPaneButton(self, dc, window, button, button_state, rect, pane):
|
|
1348
|
+
"""
|
|
1349
|
+
DrawPaneButton(dc, window, button, button_state, rect, pane)
|
|
1350
|
+
|
|
1351
|
+
Draws a button in the pane's title bar.
|
|
1352
|
+
"""
|
|
1353
|
+
|
|
1354
|
+
def DrawIcon(self, dc, rect, pane):
|
|
1355
|
+
"""
|
|
1356
|
+
DrawIcon(dc, rect, pane)
|
|
1357
|
+
"""
|
|
1358
|
+
# end of class AuiDefaultDockArt
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
#-- end-auidockart --#
|
|
1362
|
+
#-- begin-auibar --#
|
|
1363
|
+
AUI_TB_TEXT = 0
|
|
1364
|
+
AUI_TB_NO_TOOLTIPS = 0
|
|
1365
|
+
AUI_TB_NO_AUTORESIZE = 0
|
|
1366
|
+
AUI_TB_GRIPPER = 0
|
|
1367
|
+
AUI_TB_OVERFLOW = 0
|
|
1368
|
+
AUI_TB_VERTICAL = 0
|
|
1369
|
+
AUI_TB_HORZ_LAYOUT = 0
|
|
1370
|
+
AUI_TB_HORIZONTAL = 0
|
|
1371
|
+
AUI_TB_PLAIN_BACKGROUND = 0
|
|
1372
|
+
AUI_TB_HORZ_TEXT = 0
|
|
1373
|
+
AUI_ORIENTATION_MASK = 0
|
|
1374
|
+
AUI_TB_DEFAULT_STYLE = 0
|
|
1375
|
+
AUI_TBART_SEPARATOR_SIZE = 0
|
|
1376
|
+
AUI_TBART_GRIPPER_SIZE = 0
|
|
1377
|
+
AUI_TBART_OVERFLOW_SIZE = 0
|
|
1378
|
+
AUI_TBTOOL_TEXT_LEFT = 0
|
|
1379
|
+
AUI_TBTOOL_TEXT_RIGHT = 0
|
|
1380
|
+
AUI_TBTOOL_TEXT_TOP = 0
|
|
1381
|
+
AUI_TBTOOL_TEXT_BOTTOM = 0
|
|
1382
|
+
wxEVT_AUITOOLBAR_TOOL_DROPDOWN = 0
|
|
1383
|
+
wxEVT_AUITOOLBAR_OVERFLOW_CLICK = 0
|
|
1384
|
+
wxEVT_AUITOOLBAR_RIGHT_CLICK = 0
|
|
1385
|
+
wxEVT_AUITOOLBAR_MIDDLE_CLICK = 0
|
|
1386
|
+
wxEVT_AUITOOLBAR_BEGIN_DRAG = 0
|
|
1387
|
+
|
|
1388
|
+
class AuiToolBarItem(object):
|
|
1389
|
+
"""
|
|
1390
|
+
AuiToolBarItem()
|
|
1391
|
+
AuiToolBarItem(c)
|
|
1392
|
+
|
|
1393
|
+
wxAuiToolBarItem is part of the wxAUI class framework, representing a
|
|
1394
|
+
toolbar element.
|
|
1395
|
+
"""
|
|
1396
|
+
|
|
1397
|
+
def __init__(self, *args, **kw):
|
|
1398
|
+
"""
|
|
1399
|
+
AuiToolBarItem()
|
|
1400
|
+
AuiToolBarItem(c)
|
|
1401
|
+
|
|
1402
|
+
wxAuiToolBarItem is part of the wxAUI class framework, representing a
|
|
1403
|
+
toolbar element.
|
|
1404
|
+
"""
|
|
1405
|
+
|
|
1406
|
+
def Assign(self, c):
|
|
1407
|
+
"""
|
|
1408
|
+
Assign(c)
|
|
1409
|
+
|
|
1410
|
+
Assigns the properties of the wxAuiToolBarItem "c" to this.
|
|
1411
|
+
"""
|
|
1412
|
+
|
|
1413
|
+
def SetWindow(self, w):
|
|
1414
|
+
"""
|
|
1415
|
+
SetWindow(w)
|
|
1416
|
+
|
|
1417
|
+
Assigns a window to the toolbar item.
|
|
1418
|
+
"""
|
|
1419
|
+
|
|
1420
|
+
def GetWindow(self):
|
|
1421
|
+
"""
|
|
1422
|
+
GetWindow() -> wx.Window
|
|
1423
|
+
|
|
1424
|
+
Returns the wxWindow* associated to the toolbar item.
|
|
1425
|
+
"""
|
|
1426
|
+
|
|
1427
|
+
def SetId(self, new_id):
|
|
1428
|
+
"""
|
|
1429
|
+
SetId(new_id)
|
|
1430
|
+
|
|
1431
|
+
Sets the toolbar item identifier.
|
|
1432
|
+
"""
|
|
1433
|
+
|
|
1434
|
+
def GetId(self):
|
|
1435
|
+
"""
|
|
1436
|
+
GetId() -> int
|
|
1437
|
+
|
|
1438
|
+
Returns the toolbar item identifier.
|
|
1439
|
+
"""
|
|
1440
|
+
|
|
1441
|
+
def SetKind(self, new_kind):
|
|
1442
|
+
"""
|
|
1443
|
+
SetKind(new_kind)
|
|
1444
|
+
|
|
1445
|
+
Sets the wxAuiToolBarItem kind.
|
|
1446
|
+
"""
|
|
1447
|
+
|
|
1448
|
+
def GetKind(self):
|
|
1449
|
+
"""
|
|
1450
|
+
GetKind() -> int
|
|
1451
|
+
|
|
1452
|
+
Returns the toolbar item kind.
|
|
1453
|
+
"""
|
|
1454
|
+
|
|
1455
|
+
def SetState(self, new_state):
|
|
1456
|
+
"""
|
|
1457
|
+
SetState(new_state)
|
|
1458
|
+
|
|
1459
|
+
Set the current state of the toolbar item.
|
|
1460
|
+
"""
|
|
1461
|
+
|
|
1462
|
+
def GetState(self):
|
|
1463
|
+
"""
|
|
1464
|
+
GetState() -> int
|
|
1465
|
+
|
|
1466
|
+
Gets the current state of the toolbar item.
|
|
1467
|
+
"""
|
|
1468
|
+
|
|
1469
|
+
def SetSizerItem(self, s):
|
|
1470
|
+
"""
|
|
1471
|
+
SetSizerItem(s)
|
|
1472
|
+
"""
|
|
1473
|
+
|
|
1474
|
+
def GetSizerItem(self):
|
|
1475
|
+
"""
|
|
1476
|
+
GetSizerItem() -> wx.SizerItem
|
|
1477
|
+
"""
|
|
1478
|
+
|
|
1479
|
+
def SetLabel(self, s):
|
|
1480
|
+
"""
|
|
1481
|
+
SetLabel(s)
|
|
1482
|
+
"""
|
|
1483
|
+
|
|
1484
|
+
def GetLabel(self):
|
|
1485
|
+
"""
|
|
1486
|
+
GetLabel() -> String
|
|
1487
|
+
"""
|
|
1488
|
+
|
|
1489
|
+
def SetBitmap(self, bmp):
|
|
1490
|
+
"""
|
|
1491
|
+
SetBitmap(bmp)
|
|
1492
|
+
"""
|
|
1493
|
+
|
|
1494
|
+
def GetBitmap(self):
|
|
1495
|
+
"""
|
|
1496
|
+
GetBitmap() -> wx.Bitmap
|
|
1497
|
+
"""
|
|
1498
|
+
|
|
1499
|
+
def SetDisabledBitmap(self, bmp):
|
|
1500
|
+
"""
|
|
1501
|
+
SetDisabledBitmap(bmp)
|
|
1502
|
+
"""
|
|
1503
|
+
|
|
1504
|
+
def GetDisabledBitmap(self):
|
|
1505
|
+
"""
|
|
1506
|
+
GetDisabledBitmap() -> wx.Bitmap
|
|
1507
|
+
"""
|
|
1508
|
+
|
|
1509
|
+
def SetHoverBitmap(self, bmp):
|
|
1510
|
+
"""
|
|
1511
|
+
SetHoverBitmap(bmp)
|
|
1512
|
+
"""
|
|
1513
|
+
|
|
1514
|
+
def GetHoverBitmap(self):
|
|
1515
|
+
"""
|
|
1516
|
+
GetHoverBitmap() -> wx.Bitmap
|
|
1517
|
+
"""
|
|
1518
|
+
|
|
1519
|
+
def SetShortHelp(self, s):
|
|
1520
|
+
"""
|
|
1521
|
+
SetShortHelp(s)
|
|
1522
|
+
"""
|
|
1523
|
+
|
|
1524
|
+
def GetShortHelp(self):
|
|
1525
|
+
"""
|
|
1526
|
+
GetShortHelp() -> String
|
|
1527
|
+
"""
|
|
1528
|
+
|
|
1529
|
+
def SetLongHelp(self, s):
|
|
1530
|
+
"""
|
|
1531
|
+
SetLongHelp(s)
|
|
1532
|
+
"""
|
|
1533
|
+
|
|
1534
|
+
def GetLongHelp(self):
|
|
1535
|
+
"""
|
|
1536
|
+
GetLongHelp() -> String
|
|
1537
|
+
"""
|
|
1538
|
+
|
|
1539
|
+
def SetMinSize(self, s):
|
|
1540
|
+
"""
|
|
1541
|
+
SetMinSize(s)
|
|
1542
|
+
"""
|
|
1543
|
+
|
|
1544
|
+
def GetMinSize(self):
|
|
1545
|
+
"""
|
|
1546
|
+
GetMinSize() -> wx.Size
|
|
1547
|
+
"""
|
|
1548
|
+
|
|
1549
|
+
def SetSpacerPixels(self, s):
|
|
1550
|
+
"""
|
|
1551
|
+
SetSpacerPixels(s)
|
|
1552
|
+
"""
|
|
1553
|
+
|
|
1554
|
+
def GetSpacerPixels(self):
|
|
1555
|
+
"""
|
|
1556
|
+
GetSpacerPixels() -> int
|
|
1557
|
+
"""
|
|
1558
|
+
|
|
1559
|
+
def SetProportion(self, p):
|
|
1560
|
+
"""
|
|
1561
|
+
SetProportion(p)
|
|
1562
|
+
"""
|
|
1563
|
+
|
|
1564
|
+
def GetProportion(self):
|
|
1565
|
+
"""
|
|
1566
|
+
GetProportion() -> int
|
|
1567
|
+
"""
|
|
1568
|
+
|
|
1569
|
+
def SetActive(self, b):
|
|
1570
|
+
"""
|
|
1571
|
+
SetActive(b)
|
|
1572
|
+
"""
|
|
1573
|
+
|
|
1574
|
+
def IsActive(self):
|
|
1575
|
+
"""
|
|
1576
|
+
IsActive() -> bool
|
|
1577
|
+
"""
|
|
1578
|
+
|
|
1579
|
+
def SetHasDropDown(self, b):
|
|
1580
|
+
"""
|
|
1581
|
+
SetHasDropDown(b)
|
|
1582
|
+
|
|
1583
|
+
Set whether this tool has a drop down button.
|
|
1584
|
+
"""
|
|
1585
|
+
|
|
1586
|
+
def HasDropDown(self):
|
|
1587
|
+
"""
|
|
1588
|
+
HasDropDown() -> bool
|
|
1589
|
+
|
|
1590
|
+
Returns whether the toolbar item has an associated drop down button.
|
|
1591
|
+
"""
|
|
1592
|
+
|
|
1593
|
+
def SetSticky(self, b):
|
|
1594
|
+
"""
|
|
1595
|
+
SetSticky(b)
|
|
1596
|
+
"""
|
|
1597
|
+
|
|
1598
|
+
def IsSticky(self):
|
|
1599
|
+
"""
|
|
1600
|
+
IsSticky() -> bool
|
|
1601
|
+
"""
|
|
1602
|
+
|
|
1603
|
+
def SetUserData(self, l):
|
|
1604
|
+
"""
|
|
1605
|
+
SetUserData(l)
|
|
1606
|
+
"""
|
|
1607
|
+
|
|
1608
|
+
def GetUserData(self):
|
|
1609
|
+
"""
|
|
1610
|
+
GetUserData() -> long
|
|
1611
|
+
"""
|
|
1612
|
+
|
|
1613
|
+
def SetAlignment(self, l):
|
|
1614
|
+
"""
|
|
1615
|
+
SetAlignment(l)
|
|
1616
|
+
"""
|
|
1617
|
+
|
|
1618
|
+
def GetAlignment(self):
|
|
1619
|
+
"""
|
|
1620
|
+
GetAlignment() -> int
|
|
1621
|
+
"""
|
|
1622
|
+
|
|
1623
|
+
def CanBeToggled(self):
|
|
1624
|
+
"""
|
|
1625
|
+
CanBeToggled() -> bool
|
|
1626
|
+
|
|
1627
|
+
Returns whether the toolbar item can be toggled.
|
|
1628
|
+
"""
|
|
1629
|
+
Alignment = property(None, None)
|
|
1630
|
+
Bitmap = property(None, None)
|
|
1631
|
+
DisabledBitmap = property(None, None)
|
|
1632
|
+
HoverBitmap = property(None, None)
|
|
1633
|
+
Id = property(None, None)
|
|
1634
|
+
Kind = property(None, None)
|
|
1635
|
+
Label = property(None, None)
|
|
1636
|
+
LongHelp = property(None, None)
|
|
1637
|
+
MinSize = property(None, None)
|
|
1638
|
+
Proportion = property(None, None)
|
|
1639
|
+
ShortHelp = property(None, None)
|
|
1640
|
+
SizerItem = property(None, None)
|
|
1641
|
+
SpacerPixels = property(None, None)
|
|
1642
|
+
State = property(None, None)
|
|
1643
|
+
UserData = property(None, None)
|
|
1644
|
+
Window = property(None, None)
|
|
1645
|
+
# end of class AuiToolBarItem
|
|
1646
|
+
|
|
1647
|
+
|
|
1648
|
+
class AuiToolBarArt(object):
|
|
1649
|
+
"""
|
|
1650
|
+
AuiToolBarArt()
|
|
1651
|
+
|
|
1652
|
+
wxAuiToolBarArt is part of the wxAUI class framework.
|
|
1653
|
+
"""
|
|
1654
|
+
|
|
1655
|
+
def __init__(self):
|
|
1656
|
+
"""
|
|
1657
|
+
AuiToolBarArt()
|
|
1658
|
+
|
|
1659
|
+
wxAuiToolBarArt is part of the wxAUI class framework.
|
|
1660
|
+
"""
|
|
1661
|
+
|
|
1662
|
+
def Clone(self):
|
|
1663
|
+
"""
|
|
1664
|
+
Clone() -> AuiToolBarArt
|
|
1665
|
+
"""
|
|
1666
|
+
|
|
1667
|
+
def SetFlags(self, flags):
|
|
1668
|
+
"""
|
|
1669
|
+
SetFlags(flags)
|
|
1670
|
+
"""
|
|
1671
|
+
|
|
1672
|
+
def GetFlags(self):
|
|
1673
|
+
"""
|
|
1674
|
+
GetFlags() -> unsignedint
|
|
1675
|
+
"""
|
|
1676
|
+
|
|
1677
|
+
def SetFont(self, font):
|
|
1678
|
+
"""
|
|
1679
|
+
SetFont(font)
|
|
1680
|
+
"""
|
|
1681
|
+
|
|
1682
|
+
def GetFont(self):
|
|
1683
|
+
"""
|
|
1684
|
+
GetFont() -> wx.Font
|
|
1685
|
+
"""
|
|
1686
|
+
|
|
1687
|
+
def SetTextOrientation(self, orientation):
|
|
1688
|
+
"""
|
|
1689
|
+
SetTextOrientation(orientation)
|
|
1690
|
+
"""
|
|
1691
|
+
|
|
1692
|
+
def GetTextOrientation(self):
|
|
1693
|
+
"""
|
|
1694
|
+
GetTextOrientation() -> int
|
|
1695
|
+
"""
|
|
1696
|
+
|
|
1697
|
+
def DrawBackground(self, dc, wnd, rect):
|
|
1698
|
+
"""
|
|
1699
|
+
DrawBackground(dc, wnd, rect)
|
|
1700
|
+
"""
|
|
1701
|
+
|
|
1702
|
+
def DrawPlainBackground(self, dc, wnd, rect):
|
|
1703
|
+
"""
|
|
1704
|
+
DrawPlainBackground(dc, wnd, rect)
|
|
1705
|
+
"""
|
|
1706
|
+
|
|
1707
|
+
def DrawLabel(self, dc, wnd, item, rect):
|
|
1708
|
+
"""
|
|
1709
|
+
DrawLabel(dc, wnd, item, rect)
|
|
1710
|
+
"""
|
|
1711
|
+
|
|
1712
|
+
def DrawButton(self, dc, wnd, item, rect):
|
|
1713
|
+
"""
|
|
1714
|
+
DrawButton(dc, wnd, item, rect)
|
|
1715
|
+
"""
|
|
1716
|
+
|
|
1717
|
+
def DrawDropDownButton(self, dc, wnd, item, rect):
|
|
1718
|
+
"""
|
|
1719
|
+
DrawDropDownButton(dc, wnd, item, rect)
|
|
1720
|
+
"""
|
|
1721
|
+
|
|
1722
|
+
def DrawControlLabel(self, dc, wnd, item, rect):
|
|
1723
|
+
"""
|
|
1724
|
+
DrawControlLabel(dc, wnd, item, rect)
|
|
1725
|
+
"""
|
|
1726
|
+
|
|
1727
|
+
def DrawSeparator(self, dc, wnd, rect):
|
|
1728
|
+
"""
|
|
1729
|
+
DrawSeparator(dc, wnd, rect)
|
|
1730
|
+
"""
|
|
1731
|
+
|
|
1732
|
+
def DrawGripper(self, dc, wnd, rect):
|
|
1733
|
+
"""
|
|
1734
|
+
DrawGripper(dc, wnd, rect)
|
|
1735
|
+
"""
|
|
1736
|
+
|
|
1737
|
+
def DrawOverflowButton(self, dc, wnd, rect, state):
|
|
1738
|
+
"""
|
|
1739
|
+
DrawOverflowButton(dc, wnd, rect, state)
|
|
1740
|
+
"""
|
|
1741
|
+
|
|
1742
|
+
def GetLabelSize(self, dc, wnd, item):
|
|
1743
|
+
"""
|
|
1744
|
+
GetLabelSize(dc, wnd, item) -> wx.Size
|
|
1745
|
+
"""
|
|
1746
|
+
|
|
1747
|
+
def GetToolSize(self, dc, wnd, item):
|
|
1748
|
+
"""
|
|
1749
|
+
GetToolSize(dc, wnd, item) -> wx.Size
|
|
1750
|
+
"""
|
|
1751
|
+
|
|
1752
|
+
def GetElementSize(self, element_id):
|
|
1753
|
+
"""
|
|
1754
|
+
GetElementSize(element_id) -> int
|
|
1755
|
+
"""
|
|
1756
|
+
|
|
1757
|
+
def SetElementSize(self, element_id, size):
|
|
1758
|
+
"""
|
|
1759
|
+
SetElementSize(element_id, size)
|
|
1760
|
+
"""
|
|
1761
|
+
|
|
1762
|
+
def ShowDropDown(self, wnd, items):
|
|
1763
|
+
"""
|
|
1764
|
+
ShowDropDown(wnd, items) -> int
|
|
1765
|
+
"""
|
|
1766
|
+
Flags = property(None, None)
|
|
1767
|
+
Font = property(None, None)
|
|
1768
|
+
TextOrientation = property(None, None)
|
|
1769
|
+
# end of class AuiToolBarArt
|
|
1770
|
+
|
|
1771
|
+
|
|
1772
|
+
class AuiDefaultToolBarArt(AuiToolBarArt):
|
|
1773
|
+
"""
|
|
1774
|
+
AuiDefaultToolBarArt()
|
|
1775
|
+
|
|
1776
|
+
wxAuiDefaultToolBarArt is part of the wxAUI class framework.
|
|
1777
|
+
"""
|
|
1778
|
+
|
|
1779
|
+
def __init__(self):
|
|
1780
|
+
"""
|
|
1781
|
+
AuiDefaultToolBarArt()
|
|
1782
|
+
|
|
1783
|
+
wxAuiDefaultToolBarArt is part of the wxAUI class framework.
|
|
1784
|
+
"""
|
|
1785
|
+
|
|
1786
|
+
def Clone(self):
|
|
1787
|
+
"""
|
|
1788
|
+
Clone() -> AuiToolBarArt
|
|
1789
|
+
"""
|
|
1790
|
+
|
|
1791
|
+
def SetFlags(self, flags):
|
|
1792
|
+
"""
|
|
1793
|
+
SetFlags(flags)
|
|
1794
|
+
"""
|
|
1795
|
+
|
|
1796
|
+
def GetFlags(self):
|
|
1797
|
+
"""
|
|
1798
|
+
GetFlags() -> unsignedint
|
|
1799
|
+
"""
|
|
1800
|
+
|
|
1801
|
+
def SetFont(self, font):
|
|
1802
|
+
"""
|
|
1803
|
+
SetFont(font)
|
|
1804
|
+
"""
|
|
1805
|
+
|
|
1806
|
+
def GetFont(self):
|
|
1807
|
+
"""
|
|
1808
|
+
GetFont() -> wx.Font
|
|
1809
|
+
"""
|
|
1810
|
+
|
|
1811
|
+
def SetTextOrientation(self, orientation):
|
|
1812
|
+
"""
|
|
1813
|
+
SetTextOrientation(orientation)
|
|
1814
|
+
"""
|
|
1815
|
+
|
|
1816
|
+
def GetTextOrientation(self):
|
|
1817
|
+
"""
|
|
1818
|
+
GetTextOrientation() -> int
|
|
1819
|
+
"""
|
|
1820
|
+
|
|
1821
|
+
def DrawBackground(self, dc, wnd, rect):
|
|
1822
|
+
"""
|
|
1823
|
+
DrawBackground(dc, wnd, rect)
|
|
1824
|
+
"""
|
|
1825
|
+
|
|
1826
|
+
def DrawPlainBackground(self, dc, wnd, rect):
|
|
1827
|
+
"""
|
|
1828
|
+
DrawPlainBackground(dc, wnd, rect)
|
|
1829
|
+
"""
|
|
1830
|
+
|
|
1831
|
+
def DrawLabel(self, dc, wnd, item, rect):
|
|
1832
|
+
"""
|
|
1833
|
+
DrawLabel(dc, wnd, item, rect)
|
|
1834
|
+
"""
|
|
1835
|
+
|
|
1836
|
+
def DrawButton(self, dc, wnd, item, rect):
|
|
1837
|
+
"""
|
|
1838
|
+
DrawButton(dc, wnd, item, rect)
|
|
1839
|
+
"""
|
|
1840
|
+
|
|
1841
|
+
def DrawDropDownButton(self, dc, wnd, item, rect):
|
|
1842
|
+
"""
|
|
1843
|
+
DrawDropDownButton(dc, wnd, item, rect)
|
|
1844
|
+
"""
|
|
1845
|
+
|
|
1846
|
+
def DrawControlLabel(self, dc, wnd, item, rect):
|
|
1847
|
+
"""
|
|
1848
|
+
DrawControlLabel(dc, wnd, item, rect)
|
|
1849
|
+
"""
|
|
1850
|
+
|
|
1851
|
+
def DrawSeparator(self, dc, wnd, rect):
|
|
1852
|
+
"""
|
|
1853
|
+
DrawSeparator(dc, wnd, rect)
|
|
1854
|
+
"""
|
|
1855
|
+
|
|
1856
|
+
def DrawGripper(self, dc, wnd, rect):
|
|
1857
|
+
"""
|
|
1858
|
+
DrawGripper(dc, wnd, rect)
|
|
1859
|
+
"""
|
|
1860
|
+
|
|
1861
|
+
def DrawOverflowButton(self, dc, wnd, rect, state):
|
|
1862
|
+
"""
|
|
1863
|
+
DrawOverflowButton(dc, wnd, rect, state)
|
|
1864
|
+
"""
|
|
1865
|
+
|
|
1866
|
+
def GetLabelSize(self, dc, wnd, item):
|
|
1867
|
+
"""
|
|
1868
|
+
GetLabelSize(dc, wnd, item) -> wx.Size
|
|
1869
|
+
"""
|
|
1870
|
+
|
|
1871
|
+
def GetToolSize(self, dc, wnd, item):
|
|
1872
|
+
"""
|
|
1873
|
+
GetToolSize(dc, wnd, item) -> wx.Size
|
|
1874
|
+
"""
|
|
1875
|
+
|
|
1876
|
+
def GetElementSize(self, element):
|
|
1877
|
+
"""
|
|
1878
|
+
GetElementSize(element) -> int
|
|
1879
|
+
"""
|
|
1880
|
+
|
|
1881
|
+
def SetElementSize(self, element_id, size):
|
|
1882
|
+
"""
|
|
1883
|
+
SetElementSize(element_id, size)
|
|
1884
|
+
"""
|
|
1885
|
+
|
|
1886
|
+
def ShowDropDown(self, wnd, items):
|
|
1887
|
+
"""
|
|
1888
|
+
ShowDropDown(wnd, items) -> int
|
|
1889
|
+
"""
|
|
1890
|
+
Flags = property(None, None)
|
|
1891
|
+
Font = property(None, None)
|
|
1892
|
+
TextOrientation = property(None, None)
|
|
1893
|
+
# end of class AuiDefaultToolBarArt
|
|
1894
|
+
|
|
1895
|
+
|
|
1896
|
+
class AuiToolBar(wx.Control):
|
|
1897
|
+
"""
|
|
1898
|
+
AuiToolBar()
|
|
1899
|
+
AuiToolBar(parent, id=wx.ID_ANY, position=wx.DefaultPosition, size=wx.DefaultSize, style=AUI_TB_DEFAULT_STYLE)
|
|
1900
|
+
|
|
1901
|
+
wxAuiToolBar is a dockable toolbar, part of the wxAUI class framework.
|
|
1902
|
+
"""
|
|
1903
|
+
|
|
1904
|
+
def __init__(self, *args, **kw):
|
|
1905
|
+
"""
|
|
1906
|
+
AuiToolBar()
|
|
1907
|
+
AuiToolBar(parent, id=wx.ID_ANY, position=wx.DefaultPosition, size=wx.DefaultSize, style=AUI_TB_DEFAULT_STYLE)
|
|
1908
|
+
|
|
1909
|
+
wxAuiToolBar is a dockable toolbar, part of the wxAUI class framework.
|
|
1910
|
+
"""
|
|
1911
|
+
|
|
1912
|
+
def Create(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=AUI_TB_DEFAULT_STYLE):
|
|
1913
|
+
"""
|
|
1914
|
+
Create(parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=AUI_TB_DEFAULT_STYLE) -> bool
|
|
1915
|
+
|
|
1916
|
+
Really create wxAuiToolBar created using default constructor.
|
|
1917
|
+
"""
|
|
1918
|
+
|
|
1919
|
+
def SetWindowStyleFlag(self, style):
|
|
1920
|
+
"""
|
|
1921
|
+
SetWindowStyleFlag(style)
|
|
1922
|
+
|
|
1923
|
+
Sets the style of the window.
|
|
1924
|
+
"""
|
|
1925
|
+
|
|
1926
|
+
def GetWindowStyleFlag(self):
|
|
1927
|
+
"""
|
|
1928
|
+
GetWindowStyleFlag() -> long
|
|
1929
|
+
|
|
1930
|
+
Gets the window style that was passed to the constructor or Create()
|
|
1931
|
+
method.
|
|
1932
|
+
"""
|
|
1933
|
+
|
|
1934
|
+
def SetArtProvider(self, art):
|
|
1935
|
+
"""
|
|
1936
|
+
SetArtProvider(art)
|
|
1937
|
+
"""
|
|
1938
|
+
|
|
1939
|
+
def GetArtProvider(self):
|
|
1940
|
+
"""
|
|
1941
|
+
GetArtProvider() -> AuiToolBarArt
|
|
1942
|
+
"""
|
|
1943
|
+
|
|
1944
|
+
def SetFont(self, font):
|
|
1945
|
+
"""
|
|
1946
|
+
SetFont(font) -> bool
|
|
1947
|
+
|
|
1948
|
+
Sets the font for this window.
|
|
1949
|
+
"""
|
|
1950
|
+
|
|
1951
|
+
def AddTool(self, *args, **kw):
|
|
1952
|
+
"""
|
|
1953
|
+
AddTool(toolId, label, bitmap, short_help_string=wx.EmptyString, kind=wx.ITEM_NORMAL) -> AuiToolBarItem
|
|
1954
|
+
AddTool(toolId, label, bitmap, disabled_bitmap, kind, short_help_string, long_help_string, client_data) -> AuiToolBarItem
|
|
1955
|
+
AddTool(toolId, bitmap, disabled_bitmap, toggle=False, client_data=None, short_help_string=wx.EmptyString, long_help_string=wx.EmptyString) -> AuiToolBarItem
|
|
1956
|
+
"""
|
|
1957
|
+
|
|
1958
|
+
def AddLabel(self, toolId, label=wx.EmptyString, width=-1):
|
|
1959
|
+
"""
|
|
1960
|
+
AddLabel(toolId, label=wx.EmptyString, width=-1) -> AuiToolBarItem
|
|
1961
|
+
"""
|
|
1962
|
+
|
|
1963
|
+
def AddControl(self, control, label=wx.EmptyString):
|
|
1964
|
+
"""
|
|
1965
|
+
AddControl(control, label=wx.EmptyString) -> AuiToolBarItem
|
|
1966
|
+
"""
|
|
1967
|
+
|
|
1968
|
+
def AddSeparator(self):
|
|
1969
|
+
"""
|
|
1970
|
+
AddSeparator() -> AuiToolBarItem
|
|
1971
|
+
"""
|
|
1972
|
+
|
|
1973
|
+
def AddSpacer(self, pixels):
|
|
1974
|
+
"""
|
|
1975
|
+
AddSpacer(pixels) -> AuiToolBarItem
|
|
1976
|
+
"""
|
|
1977
|
+
|
|
1978
|
+
def AddStretchSpacer(self, proportion=1):
|
|
1979
|
+
"""
|
|
1980
|
+
AddStretchSpacer(proportion=1) -> AuiToolBarItem
|
|
1981
|
+
"""
|
|
1982
|
+
|
|
1983
|
+
def Realize(self):
|
|
1984
|
+
"""
|
|
1985
|
+
Realize() -> bool
|
|
1986
|
+
"""
|
|
1987
|
+
|
|
1988
|
+
def FindControl(self, window_id):
|
|
1989
|
+
"""
|
|
1990
|
+
FindControl(window_id) -> wx.Control
|
|
1991
|
+
"""
|
|
1992
|
+
|
|
1993
|
+
def FindToolByPosition(self, x, y):
|
|
1994
|
+
"""
|
|
1995
|
+
FindToolByPosition(x, y) -> AuiToolBarItem
|
|
1996
|
+
"""
|
|
1997
|
+
|
|
1998
|
+
def FindToolByIndex(self, idx):
|
|
1999
|
+
"""
|
|
2000
|
+
FindToolByIndex(idx) -> AuiToolBarItem
|
|
2001
|
+
"""
|
|
2002
|
+
|
|
2003
|
+
def FindTool(self, toolId):
|
|
2004
|
+
"""
|
|
2005
|
+
FindTool(toolId) -> AuiToolBarItem
|
|
2006
|
+
"""
|
|
2007
|
+
|
|
2008
|
+
def ClearTools(self):
|
|
2009
|
+
"""
|
|
2010
|
+
ClearTools()
|
|
2011
|
+
"""
|
|
2012
|
+
|
|
2013
|
+
def Clear(self):
|
|
2014
|
+
"""
|
|
2015
|
+
Clear()
|
|
2016
|
+
"""
|
|
2017
|
+
|
|
2018
|
+
def DestroyTool(self, toolId):
|
|
2019
|
+
"""
|
|
2020
|
+
DestroyTool(toolId) -> bool
|
|
2021
|
+
|
|
2022
|
+
Destroys the tool with the given ID and its associated window, if any.
|
|
2023
|
+
"""
|
|
2024
|
+
|
|
2025
|
+
def DestroyToolByIndex(self, idx):
|
|
2026
|
+
"""
|
|
2027
|
+
DestroyToolByIndex(idx) -> bool
|
|
2028
|
+
|
|
2029
|
+
Destroys the tool at the given position and its associated window, if
|
|
2030
|
+
any.
|
|
2031
|
+
"""
|
|
2032
|
+
|
|
2033
|
+
def DeleteTool(self, toolId):
|
|
2034
|
+
"""
|
|
2035
|
+
DeleteTool(toolId) -> bool
|
|
2036
|
+
|
|
2037
|
+
Removes the tool with the given ID from the toolbar.
|
|
2038
|
+
"""
|
|
2039
|
+
|
|
2040
|
+
def DeleteByIndex(self, idx):
|
|
2041
|
+
"""
|
|
2042
|
+
DeleteByIndex(idx) -> bool
|
|
2043
|
+
|
|
2044
|
+
Removes the tool at the given position from the toolbar.
|
|
2045
|
+
"""
|
|
2046
|
+
|
|
2047
|
+
def GetToolCount(self):
|
|
2048
|
+
"""
|
|
2049
|
+
GetToolCount() -> size_t
|
|
2050
|
+
"""
|
|
2051
|
+
|
|
2052
|
+
def GetToolPos(self, toolId):
|
|
2053
|
+
"""
|
|
2054
|
+
GetToolPos(toolId) -> int
|
|
2055
|
+
"""
|
|
2056
|
+
|
|
2057
|
+
def GetToolIndex(self, toolId):
|
|
2058
|
+
"""
|
|
2059
|
+
GetToolIndex(toolId) -> int
|
|
2060
|
+
"""
|
|
2061
|
+
|
|
2062
|
+
def GetToolFits(self, toolId):
|
|
2063
|
+
"""
|
|
2064
|
+
GetToolFits(toolId) -> bool
|
|
2065
|
+
"""
|
|
2066
|
+
|
|
2067
|
+
def GetToolRect(self, toolId):
|
|
2068
|
+
"""
|
|
2069
|
+
GetToolRect(toolId) -> wx.Rect
|
|
2070
|
+
"""
|
|
2071
|
+
|
|
2072
|
+
def GetToolFitsByIndex(self, toolId):
|
|
2073
|
+
"""
|
|
2074
|
+
GetToolFitsByIndex(toolId) -> bool
|
|
2075
|
+
"""
|
|
2076
|
+
|
|
2077
|
+
def GetToolBarFits(self):
|
|
2078
|
+
"""
|
|
2079
|
+
GetToolBarFits() -> bool
|
|
2080
|
+
"""
|
|
2081
|
+
|
|
2082
|
+
def SetMargins(self, *args, **kw):
|
|
2083
|
+
"""
|
|
2084
|
+
SetMargins(size)
|
|
2085
|
+
SetMargins(x, y)
|
|
2086
|
+
SetMargins(left, right, top, bottom)
|
|
2087
|
+
"""
|
|
2088
|
+
|
|
2089
|
+
def SetToolBitmapSize(self, size):
|
|
2090
|
+
"""
|
|
2091
|
+
SetToolBitmapSize(size)
|
|
2092
|
+
"""
|
|
2093
|
+
|
|
2094
|
+
def GetToolBitmapSize(self):
|
|
2095
|
+
"""
|
|
2096
|
+
GetToolBitmapSize() -> wx.Size
|
|
2097
|
+
"""
|
|
2098
|
+
|
|
2099
|
+
def GetOverflowVisible(self):
|
|
2100
|
+
"""
|
|
2101
|
+
GetOverflowVisible() -> bool
|
|
2102
|
+
"""
|
|
2103
|
+
|
|
2104
|
+
def SetOverflowVisible(self, visible):
|
|
2105
|
+
"""
|
|
2106
|
+
SetOverflowVisible(visible)
|
|
2107
|
+
"""
|
|
2108
|
+
|
|
2109
|
+
def GetGripperVisible(self):
|
|
2110
|
+
"""
|
|
2111
|
+
GetGripperVisible() -> bool
|
|
2112
|
+
"""
|
|
2113
|
+
|
|
2114
|
+
def SetGripperVisible(self, visible):
|
|
2115
|
+
"""
|
|
2116
|
+
SetGripperVisible(visible)
|
|
2117
|
+
"""
|
|
2118
|
+
|
|
2119
|
+
def ToggleTool(self, toolId, state):
|
|
2120
|
+
"""
|
|
2121
|
+
ToggleTool(toolId, state)
|
|
2122
|
+
"""
|
|
2123
|
+
|
|
2124
|
+
def GetToolToggled(self, toolId):
|
|
2125
|
+
"""
|
|
2126
|
+
GetToolToggled(toolId) -> bool
|
|
2127
|
+
"""
|
|
2128
|
+
|
|
2129
|
+
def EnableTool(self, toolId, state):
|
|
2130
|
+
"""
|
|
2131
|
+
EnableTool(toolId, state)
|
|
2132
|
+
"""
|
|
2133
|
+
|
|
2134
|
+
def GetToolEnabled(self, toolId):
|
|
2135
|
+
"""
|
|
2136
|
+
GetToolEnabled(toolId) -> bool
|
|
2137
|
+
"""
|
|
2138
|
+
|
|
2139
|
+
def SetToolDropDown(self, toolId, dropdown):
|
|
2140
|
+
"""
|
|
2141
|
+
SetToolDropDown(toolId, dropdown)
|
|
2142
|
+
|
|
2143
|
+
Set whether the specified toolbar item has a drop down button.
|
|
2144
|
+
"""
|
|
2145
|
+
|
|
2146
|
+
def GetToolDropDown(self, toolId):
|
|
2147
|
+
"""
|
|
2148
|
+
GetToolDropDown(toolId) -> bool
|
|
2149
|
+
|
|
2150
|
+
Returns whether the specified toolbar item has an associated drop down
|
|
2151
|
+
button.
|
|
2152
|
+
"""
|
|
2153
|
+
|
|
2154
|
+
def SetToolBorderPadding(self, padding):
|
|
2155
|
+
"""
|
|
2156
|
+
SetToolBorderPadding(padding)
|
|
2157
|
+
"""
|
|
2158
|
+
|
|
2159
|
+
def GetToolBorderPadding(self):
|
|
2160
|
+
"""
|
|
2161
|
+
GetToolBorderPadding() -> int
|
|
2162
|
+
"""
|
|
2163
|
+
|
|
2164
|
+
def SetToolTextOrientation(self, orientation):
|
|
2165
|
+
"""
|
|
2166
|
+
SetToolTextOrientation(orientation)
|
|
2167
|
+
"""
|
|
2168
|
+
|
|
2169
|
+
def GetToolTextOrientation(self):
|
|
2170
|
+
"""
|
|
2171
|
+
GetToolTextOrientation() -> int
|
|
2172
|
+
"""
|
|
2173
|
+
|
|
2174
|
+
def SetToolPacking(self, packing):
|
|
2175
|
+
"""
|
|
2176
|
+
SetToolPacking(packing)
|
|
2177
|
+
"""
|
|
2178
|
+
|
|
2179
|
+
def GetToolPacking(self):
|
|
2180
|
+
"""
|
|
2181
|
+
GetToolPacking() -> int
|
|
2182
|
+
"""
|
|
2183
|
+
|
|
2184
|
+
def SetToolProportion(self, toolId, proportion):
|
|
2185
|
+
"""
|
|
2186
|
+
SetToolProportion(toolId, proportion)
|
|
2187
|
+
"""
|
|
2188
|
+
|
|
2189
|
+
def GetToolProportion(self, toolId):
|
|
2190
|
+
"""
|
|
2191
|
+
GetToolProportion(toolId) -> int
|
|
2192
|
+
"""
|
|
2193
|
+
|
|
2194
|
+
def SetToolSeparation(self, separation):
|
|
2195
|
+
"""
|
|
2196
|
+
SetToolSeparation(separation)
|
|
2197
|
+
"""
|
|
2198
|
+
|
|
2199
|
+
def GetToolSeparation(self):
|
|
2200
|
+
"""
|
|
2201
|
+
GetToolSeparation() -> int
|
|
2202
|
+
"""
|
|
2203
|
+
|
|
2204
|
+
def SetToolSticky(self, toolId, sticky):
|
|
2205
|
+
"""
|
|
2206
|
+
SetToolSticky(toolId, sticky)
|
|
2207
|
+
"""
|
|
2208
|
+
|
|
2209
|
+
def GetToolSticky(self, toolId):
|
|
2210
|
+
"""
|
|
2211
|
+
GetToolSticky(toolId) -> bool
|
|
2212
|
+
"""
|
|
2213
|
+
|
|
2214
|
+
def GetToolLabel(self, toolId):
|
|
2215
|
+
"""
|
|
2216
|
+
GetToolLabel(toolId) -> String
|
|
2217
|
+
"""
|
|
2218
|
+
|
|
2219
|
+
def SetToolLabel(self, toolId, label):
|
|
2220
|
+
"""
|
|
2221
|
+
SetToolLabel(toolId, label)
|
|
2222
|
+
"""
|
|
2223
|
+
|
|
2224
|
+
def GetToolBitmap(self, toolId):
|
|
2225
|
+
"""
|
|
2226
|
+
GetToolBitmap(toolId) -> wx.Bitmap
|
|
2227
|
+
"""
|
|
2228
|
+
|
|
2229
|
+
def SetToolBitmap(self, toolId, bitmap):
|
|
2230
|
+
"""
|
|
2231
|
+
SetToolBitmap(toolId, bitmap)
|
|
2232
|
+
"""
|
|
2233
|
+
|
|
2234
|
+
def GetToolShortHelp(self, toolId):
|
|
2235
|
+
"""
|
|
2236
|
+
GetToolShortHelp(toolId) -> String
|
|
2237
|
+
"""
|
|
2238
|
+
|
|
2239
|
+
def SetToolShortHelp(self, toolId, help_string):
|
|
2240
|
+
"""
|
|
2241
|
+
SetToolShortHelp(toolId, help_string)
|
|
2242
|
+
"""
|
|
2243
|
+
|
|
2244
|
+
def GetToolLongHelp(self, toolId):
|
|
2245
|
+
"""
|
|
2246
|
+
GetToolLongHelp(toolId) -> String
|
|
2247
|
+
"""
|
|
2248
|
+
|
|
2249
|
+
def SetToolLongHelp(self, toolId, help_string):
|
|
2250
|
+
"""
|
|
2251
|
+
SetToolLongHelp(toolId, help_string)
|
|
2252
|
+
"""
|
|
2253
|
+
|
|
2254
|
+
def SetCustomOverflowItems(self, prepend, append):
|
|
2255
|
+
"""
|
|
2256
|
+
SetCustomOverflowItems(prepend, append)
|
|
2257
|
+
|
|
2258
|
+
Add toolbar items that are always displayed in the overflow menu.
|
|
2259
|
+
"""
|
|
2260
|
+
|
|
2261
|
+
def GetHintSize(self, dock_direction):
|
|
2262
|
+
"""
|
|
2263
|
+
GetHintSize(dock_direction) -> wx.Size
|
|
2264
|
+
|
|
2265
|
+
get size of hint rectangle for a particular dock location
|
|
2266
|
+
"""
|
|
2267
|
+
|
|
2268
|
+
def IsPaneValid(self, pane):
|
|
2269
|
+
"""
|
|
2270
|
+
IsPaneValid(pane) -> bool
|
|
2271
|
+
"""
|
|
2272
|
+
|
|
2273
|
+
@staticmethod
|
|
2274
|
+
def GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL):
|
|
2275
|
+
"""
|
|
2276
|
+
GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL) -> wx.VisualAttributes
|
|
2277
|
+
"""
|
|
2278
|
+
ArtProvider = property(None, None)
|
|
2279
|
+
GripperVisible = property(None, None)
|
|
2280
|
+
OverflowVisible = property(None, None)
|
|
2281
|
+
ToolBarFits = property(None, None)
|
|
2282
|
+
ToolBitmapSize = property(None, None)
|
|
2283
|
+
ToolBorderPadding = property(None, None)
|
|
2284
|
+
ToolCount = property(None, None)
|
|
2285
|
+
ToolPacking = property(None, None)
|
|
2286
|
+
ToolSeparation = property(None, None)
|
|
2287
|
+
ToolTextOrientation = property(None, None)
|
|
2288
|
+
WindowStyleFlag = property(None, None)
|
|
2289
|
+
# end of class AuiToolBar
|
|
2290
|
+
|
|
2291
|
+
|
|
2292
|
+
class AuiToolBarEvent(wx.NotifyEvent):
|
|
2293
|
+
"""
|
|
2294
|
+
AuiToolBarEvent(commandType=wx.wxEVT_NULL, winId=0)
|
|
2295
|
+
AuiToolBarEvent(c)
|
|
2296
|
+
|
|
2297
|
+
wxAuiToolBarEvent is used for the events generated by wxAuiToolBar.
|
|
2298
|
+
"""
|
|
2299
|
+
|
|
2300
|
+
def __init__(self, *args, **kw):
|
|
2301
|
+
"""
|
|
2302
|
+
AuiToolBarEvent(commandType=wx.wxEVT_NULL, winId=0)
|
|
2303
|
+
AuiToolBarEvent(c)
|
|
2304
|
+
|
|
2305
|
+
wxAuiToolBarEvent is used for the events generated by wxAuiToolBar.
|
|
2306
|
+
"""
|
|
2307
|
+
|
|
2308
|
+
def IsDropDownClicked(self):
|
|
2309
|
+
"""
|
|
2310
|
+
IsDropDownClicked() -> bool
|
|
2311
|
+
|
|
2312
|
+
Returns whether the drop down menu has been clicked.
|
|
2313
|
+
"""
|
|
2314
|
+
|
|
2315
|
+
def GetClickPoint(self):
|
|
2316
|
+
"""
|
|
2317
|
+
GetClickPoint() -> wx.Point
|
|
2318
|
+
|
|
2319
|
+
Returns the point where the user clicked with the mouse.
|
|
2320
|
+
"""
|
|
2321
|
+
|
|
2322
|
+
def GetItemRect(self):
|
|
2323
|
+
"""
|
|
2324
|
+
GetItemRect() -> wx.Rect
|
|
2325
|
+
|
|
2326
|
+
Returns the wxAuiToolBarItem rectangle bounding the mouse click point.
|
|
2327
|
+
"""
|
|
2328
|
+
|
|
2329
|
+
def GetToolId(self):
|
|
2330
|
+
"""
|
|
2331
|
+
GetToolId() -> int
|
|
2332
|
+
|
|
2333
|
+
Returns the wxAuiToolBarItem identifier.
|
|
2334
|
+
"""
|
|
2335
|
+
|
|
2336
|
+
def SetDropDownClicked(self, c):
|
|
2337
|
+
"""
|
|
2338
|
+
SetDropDownClicked(c)
|
|
2339
|
+
"""
|
|
2340
|
+
|
|
2341
|
+
def SetClickPoint(self, p):
|
|
2342
|
+
"""
|
|
2343
|
+
SetClickPoint(p)
|
|
2344
|
+
"""
|
|
2345
|
+
|
|
2346
|
+
def SetItemRect(self, r):
|
|
2347
|
+
"""
|
|
2348
|
+
SetItemRect(r)
|
|
2349
|
+
"""
|
|
2350
|
+
|
|
2351
|
+
def SetToolId(self, toolId):
|
|
2352
|
+
"""
|
|
2353
|
+
SetToolId(toolId)
|
|
2354
|
+
"""
|
|
2355
|
+
ClickPoint = property(None, None)
|
|
2356
|
+
ItemRect = property(None, None)
|
|
2357
|
+
ToolId = property(None, None)
|
|
2358
|
+
# end of class AuiToolBarEvent
|
|
2359
|
+
|
|
2360
|
+
|
|
2361
|
+
EVT_AUITOOLBAR_TOOL_DROPDOWN = wx.PyEventBinder( wxEVT_AUITOOLBAR_TOOL_DROPDOWN, 1 )
|
|
2362
|
+
EVT_AUITOOLBAR_OVERFLOW_CLICK = wx.PyEventBinder( wxEVT_AUITOOLBAR_OVERFLOW_CLICK, 1 )
|
|
2363
|
+
EVT_AUITOOLBAR_RIGHT_CLICK = wx.PyEventBinder( wxEVT_AUITOOLBAR_RIGHT_CLICK, 1 )
|
|
2364
|
+
EVT_AUITOOLBAR_MIDDLE_CLICK = wx.PyEventBinder( wxEVT_AUITOOLBAR_MIDDLE_CLICK, 1 )
|
|
2365
|
+
EVT_AUITOOLBAR_BEGIN_DRAG = wx.PyEventBinder( wxEVT_AUITOOLBAR_BEGIN_DRAG, 1 )
|
|
2366
|
+
|
|
2367
|
+
#-- end-auibar --#
|
|
2368
|
+
#-- begin-auibook --#
|
|
2369
|
+
AUI_NB_TOP = 0
|
|
2370
|
+
AUI_NB_LEFT = 0
|
|
2371
|
+
AUI_NB_RIGHT = 0
|
|
2372
|
+
AUI_NB_BOTTOM = 0
|
|
2373
|
+
AUI_NB_TAB_SPLIT = 0
|
|
2374
|
+
AUI_NB_TAB_MOVE = 0
|
|
2375
|
+
AUI_NB_TAB_EXTERNAL_MOVE = 0
|
|
2376
|
+
AUI_NB_TAB_FIXED_WIDTH = 0
|
|
2377
|
+
AUI_NB_SCROLL_BUTTONS = 0
|
|
2378
|
+
AUI_NB_WINDOWLIST_BUTTON = 0
|
|
2379
|
+
AUI_NB_CLOSE_BUTTON = 0
|
|
2380
|
+
AUI_NB_CLOSE_ON_ACTIVE_TAB = 0
|
|
2381
|
+
AUI_NB_CLOSE_ON_ALL_TABS = 0
|
|
2382
|
+
AUI_NB_MIDDLE_CLICK_CLOSE = 0
|
|
2383
|
+
AUI_NB_DEFAULT_STYLE = 0
|
|
2384
|
+
wxEVT_AUINOTEBOOK_PAGE_CLOSE = 0
|
|
2385
|
+
wxEVT_AUINOTEBOOK_PAGE_CHANGED = 0
|
|
2386
|
+
wxEVT_AUINOTEBOOK_PAGE_CHANGING = 0
|
|
2387
|
+
wxEVT_AUINOTEBOOK_PAGE_CLOSED = 0
|
|
2388
|
+
wxEVT_AUINOTEBOOK_BUTTON = 0
|
|
2389
|
+
wxEVT_AUINOTEBOOK_BEGIN_DRAG = 0
|
|
2390
|
+
wxEVT_AUINOTEBOOK_END_DRAG = 0
|
|
2391
|
+
wxEVT_AUINOTEBOOK_DRAG_MOTION = 0
|
|
2392
|
+
wxEVT_AUINOTEBOOK_ALLOW_DND = 0
|
|
2393
|
+
wxEVT_AUINOTEBOOK_TAB_MIDDLE_DOWN = 0
|
|
2394
|
+
wxEVT_AUINOTEBOOK_TAB_MIDDLE_UP = 0
|
|
2395
|
+
wxEVT_AUINOTEBOOK_TAB_RIGHT_DOWN = 0
|
|
2396
|
+
wxEVT_AUINOTEBOOK_TAB_RIGHT_UP = 0
|
|
2397
|
+
wxEVT_AUINOTEBOOK_DRAG_DONE = 0
|
|
2398
|
+
wxEVT_AUINOTEBOOK_BG_DCLICK = 0
|
|
2399
|
+
|
|
2400
|
+
class AuiNotebook(wx.BookCtrlBase):
|
|
2401
|
+
"""
|
|
2402
|
+
AuiNotebook()
|
|
2403
|
+
AuiNotebook(parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=AUI_NB_DEFAULT_STYLE)
|
|
2404
|
+
|
|
2405
|
+
wxAuiNotebook is part of the wxAUI class framework, which represents a
|
|
2406
|
+
notebook control, managing multiple windows with associated tabs.
|
|
2407
|
+
"""
|
|
2408
|
+
|
|
2409
|
+
def __init__(self, *args, **kw):
|
|
2410
|
+
"""
|
|
2411
|
+
AuiNotebook()
|
|
2412
|
+
AuiNotebook(parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=AUI_NB_DEFAULT_STYLE)
|
|
2413
|
+
|
|
2414
|
+
wxAuiNotebook is part of the wxAUI class framework, which represents a
|
|
2415
|
+
notebook control, managing multiple windows with associated tabs.
|
|
2416
|
+
"""
|
|
2417
|
+
|
|
2418
|
+
def AddPage(self, *args, **kw):
|
|
2419
|
+
"""
|
|
2420
|
+
AddPage(page, caption, select=False, bitmap=wx.NullBitmap) -> bool
|
|
2421
|
+
AddPage(page, text, select, imageId) -> bool
|
|
2422
|
+
|
|
2423
|
+
Adds a page.
|
|
2424
|
+
"""
|
|
2425
|
+
|
|
2426
|
+
def AdvanceSelection(self, forward=True):
|
|
2427
|
+
"""
|
|
2428
|
+
AdvanceSelection(forward=True)
|
|
2429
|
+
|
|
2430
|
+
Sets the selection to the next or previous page.
|
|
2431
|
+
"""
|
|
2432
|
+
|
|
2433
|
+
def ChangeSelection(self, n):
|
|
2434
|
+
"""
|
|
2435
|
+
ChangeSelection(n) -> int
|
|
2436
|
+
|
|
2437
|
+
Changes the selection for the given page, returning the previous
|
|
2438
|
+
selection.
|
|
2439
|
+
"""
|
|
2440
|
+
|
|
2441
|
+
def Create(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=0):
|
|
2442
|
+
"""
|
|
2443
|
+
Create(parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=0) -> bool
|
|
2444
|
+
|
|
2445
|
+
Creates the notebook window.
|
|
2446
|
+
"""
|
|
2447
|
+
|
|
2448
|
+
def DeleteAllPages(self):
|
|
2449
|
+
"""
|
|
2450
|
+
DeleteAllPages() -> bool
|
|
2451
|
+
|
|
2452
|
+
Deletes all pages.
|
|
2453
|
+
"""
|
|
2454
|
+
|
|
2455
|
+
def DeletePage(self, page):
|
|
2456
|
+
"""
|
|
2457
|
+
DeletePage(page) -> bool
|
|
2458
|
+
|
|
2459
|
+
Deletes a page at the given index.
|
|
2460
|
+
"""
|
|
2461
|
+
|
|
2462
|
+
def GetArtProvider(self):
|
|
2463
|
+
"""
|
|
2464
|
+
GetArtProvider() -> AuiTabArt
|
|
2465
|
+
|
|
2466
|
+
Returns the associated art provider.
|
|
2467
|
+
"""
|
|
2468
|
+
|
|
2469
|
+
def GetCurrentPage(self):
|
|
2470
|
+
"""
|
|
2471
|
+
GetCurrentPage() -> wx.Window
|
|
2472
|
+
|
|
2473
|
+
Returns the currently selected page or NULL.
|
|
2474
|
+
"""
|
|
2475
|
+
|
|
2476
|
+
def GetHeightForPageHeight(self, pageHeight):
|
|
2477
|
+
"""
|
|
2478
|
+
GetHeightForPageHeight(pageHeight) -> int
|
|
2479
|
+
|
|
2480
|
+
Returns the desired height of the notebook for the given page height.
|
|
2481
|
+
"""
|
|
2482
|
+
|
|
2483
|
+
def GetPage(self, page_idx):
|
|
2484
|
+
"""
|
|
2485
|
+
GetPage(page_idx) -> wx.Window
|
|
2486
|
+
|
|
2487
|
+
Returns the page specified by the given index.
|
|
2488
|
+
"""
|
|
2489
|
+
|
|
2490
|
+
def GetPageBitmap(self, page):
|
|
2491
|
+
"""
|
|
2492
|
+
GetPageBitmap(page) -> wx.Bitmap
|
|
2493
|
+
|
|
2494
|
+
Returns the tab bitmap for the page.
|
|
2495
|
+
"""
|
|
2496
|
+
|
|
2497
|
+
def GetPageCount(self):
|
|
2498
|
+
"""
|
|
2499
|
+
GetPageCount() -> size_t
|
|
2500
|
+
|
|
2501
|
+
Returns the number of pages in the notebook.
|
|
2502
|
+
"""
|
|
2503
|
+
|
|
2504
|
+
def GetPageIndex(self, page_wnd):
|
|
2505
|
+
"""
|
|
2506
|
+
GetPageIndex(page_wnd) -> int
|
|
2507
|
+
|
|
2508
|
+
Returns the page index for the specified window.
|
|
2509
|
+
"""
|
|
2510
|
+
|
|
2511
|
+
def GetPageText(self, page):
|
|
2512
|
+
"""
|
|
2513
|
+
GetPageText(page) -> String
|
|
2514
|
+
|
|
2515
|
+
Returns the tab label for the page.
|
|
2516
|
+
"""
|
|
2517
|
+
|
|
2518
|
+
def GetPageToolTip(self, pageIdx):
|
|
2519
|
+
"""
|
|
2520
|
+
GetPageToolTip(pageIdx) -> String
|
|
2521
|
+
|
|
2522
|
+
Returns the tooltip for the tab label of the page.
|
|
2523
|
+
"""
|
|
2524
|
+
|
|
2525
|
+
def GetSelection(self):
|
|
2526
|
+
"""
|
|
2527
|
+
GetSelection() -> int
|
|
2528
|
+
|
|
2529
|
+
Returns the currently selected page.
|
|
2530
|
+
"""
|
|
2531
|
+
|
|
2532
|
+
def GetTabCtrlHeight(self):
|
|
2533
|
+
"""
|
|
2534
|
+
GetTabCtrlHeight() -> int
|
|
2535
|
+
|
|
2536
|
+
Returns the height of the tab control.
|
|
2537
|
+
"""
|
|
2538
|
+
|
|
2539
|
+
def InsertPage(self, *args, **kw):
|
|
2540
|
+
"""
|
|
2541
|
+
InsertPage(page_idx, page, caption, select=False, bitmap=wx.NullBitmap) -> bool
|
|
2542
|
+
InsertPage(index, page, text, select, imageId) -> bool
|
|
2543
|
+
|
|
2544
|
+
InsertPage() is similar to AddPage, but allows the ability to specify
|
|
2545
|
+
the insert location.
|
|
2546
|
+
"""
|
|
2547
|
+
|
|
2548
|
+
def RemovePage(self, page):
|
|
2549
|
+
"""
|
|
2550
|
+
RemovePage(page) -> bool
|
|
2551
|
+
|
|
2552
|
+
Removes a page, without deleting the window pointer.
|
|
2553
|
+
"""
|
|
2554
|
+
|
|
2555
|
+
def SetArtProvider(self, art):
|
|
2556
|
+
"""
|
|
2557
|
+
SetArtProvider(art)
|
|
2558
|
+
|
|
2559
|
+
Sets the art provider to be used by the notebook.
|
|
2560
|
+
"""
|
|
2561
|
+
|
|
2562
|
+
def SetFont(self, font):
|
|
2563
|
+
"""
|
|
2564
|
+
SetFont(font) -> bool
|
|
2565
|
+
|
|
2566
|
+
Sets the font for drawing the tab labels, using a bold version of the
|
|
2567
|
+
font for selected tab labels.
|
|
2568
|
+
"""
|
|
2569
|
+
|
|
2570
|
+
def SetMeasuringFont(self, font):
|
|
2571
|
+
"""
|
|
2572
|
+
SetMeasuringFont(font)
|
|
2573
|
+
|
|
2574
|
+
Sets the font for measuring tab labels.
|
|
2575
|
+
"""
|
|
2576
|
+
|
|
2577
|
+
def SetNormalFont(self, font):
|
|
2578
|
+
"""
|
|
2579
|
+
SetNormalFont(font)
|
|
2580
|
+
|
|
2581
|
+
Sets the font for drawing unselected tab labels.
|
|
2582
|
+
"""
|
|
2583
|
+
|
|
2584
|
+
def SetPageBitmap(self, page, bitmap):
|
|
2585
|
+
"""
|
|
2586
|
+
SetPageBitmap(page, bitmap) -> bool
|
|
2587
|
+
|
|
2588
|
+
Sets the bitmap for the page.
|
|
2589
|
+
"""
|
|
2590
|
+
|
|
2591
|
+
def SetPageImage(self, n, imageId):
|
|
2592
|
+
"""
|
|
2593
|
+
SetPageImage(n, imageId) -> bool
|
|
2594
|
+
|
|
2595
|
+
Sets the image index for the given page.
|
|
2596
|
+
"""
|
|
2597
|
+
|
|
2598
|
+
def SetPageText(self, page, text):
|
|
2599
|
+
"""
|
|
2600
|
+
SetPageText(page, text) -> bool
|
|
2601
|
+
|
|
2602
|
+
Sets the tab label for the page.
|
|
2603
|
+
"""
|
|
2604
|
+
|
|
2605
|
+
def SetPageToolTip(self, page, text):
|
|
2606
|
+
"""
|
|
2607
|
+
SetPageToolTip(page, text) -> bool
|
|
2608
|
+
|
|
2609
|
+
Sets the tooltip displayed when hovering over the tab label of the
|
|
2610
|
+
page.
|
|
2611
|
+
"""
|
|
2612
|
+
|
|
2613
|
+
def SetSelectedFont(self, font):
|
|
2614
|
+
"""
|
|
2615
|
+
SetSelectedFont(font)
|
|
2616
|
+
|
|
2617
|
+
Sets the font for drawing selected tab labels.
|
|
2618
|
+
"""
|
|
2619
|
+
|
|
2620
|
+
def SetSelection(self, new_page):
|
|
2621
|
+
"""
|
|
2622
|
+
SetSelection(new_page) -> int
|
|
2623
|
+
|
|
2624
|
+
Sets the page selection.
|
|
2625
|
+
"""
|
|
2626
|
+
|
|
2627
|
+
def SetTabCtrlHeight(self, height):
|
|
2628
|
+
"""
|
|
2629
|
+
SetTabCtrlHeight(height)
|
|
2630
|
+
|
|
2631
|
+
Sets the tab height.
|
|
2632
|
+
"""
|
|
2633
|
+
|
|
2634
|
+
def SetUniformBitmapSize(self, size):
|
|
2635
|
+
"""
|
|
2636
|
+
SetUniformBitmapSize(size)
|
|
2637
|
+
|
|
2638
|
+
Ensure that all tabs have the same height, even if some of them don't
|
|
2639
|
+
have bitmaps.
|
|
2640
|
+
"""
|
|
2641
|
+
|
|
2642
|
+
def Split(self, page, direction):
|
|
2643
|
+
"""
|
|
2644
|
+
Split(page, direction)
|
|
2645
|
+
|
|
2646
|
+
Split performs a split operation programmatically.
|
|
2647
|
+
"""
|
|
2648
|
+
|
|
2649
|
+
def ShowWindowMenu(self):
|
|
2650
|
+
"""
|
|
2651
|
+
ShowWindowMenu() -> bool
|
|
2652
|
+
|
|
2653
|
+
Shows the window menu for the active tab control associated with this
|
|
2654
|
+
notebook, and returns true if a selection was made.
|
|
2655
|
+
"""
|
|
2656
|
+
|
|
2657
|
+
def GetPageImage(self, nPage):
|
|
2658
|
+
"""
|
|
2659
|
+
GetPageImage(nPage) -> int
|
|
2660
|
+
|
|
2661
|
+
Returns the image index for the given page.
|
|
2662
|
+
"""
|
|
2663
|
+
|
|
2664
|
+
def GetTabCtrlFromPoint(self, pt):
|
|
2665
|
+
"""
|
|
2666
|
+
GetTabCtrlFromPoint(pt) -> AuiTabCtrl
|
|
2667
|
+
|
|
2668
|
+
Returns tab control based on point coordinates inside the tab frame.
|
|
2669
|
+
"""
|
|
2670
|
+
|
|
2671
|
+
def GetActiveTabCtrl(self):
|
|
2672
|
+
"""
|
|
2673
|
+
GetActiveTabCtrl() -> AuiTabCtrl
|
|
2674
|
+
|
|
2675
|
+
Returns active tab control for this notebook.
|
|
2676
|
+
"""
|
|
2677
|
+
|
|
2678
|
+
def FindTab(self, page, ctrl, idx):
|
|
2679
|
+
"""
|
|
2680
|
+
FindTab(page, ctrl, idx) -> bool
|
|
2681
|
+
|
|
2682
|
+
Finds tab control associated with a given window and its tab index.
|
|
2683
|
+
"""
|
|
2684
|
+
|
|
2685
|
+
@staticmethod
|
|
2686
|
+
def GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL):
|
|
2687
|
+
"""
|
|
2688
|
+
GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL) -> wx.VisualAttributes
|
|
2689
|
+
"""
|
|
2690
|
+
ActiveTabCtrl = property(None, None)
|
|
2691
|
+
ArtProvider = property(None, None)
|
|
2692
|
+
CurrentPage = property(None, None)
|
|
2693
|
+
PageCount = property(None, None)
|
|
2694
|
+
Selection = property(None, None)
|
|
2695
|
+
TabCtrlHeight = property(None, None)
|
|
2696
|
+
# end of class AuiNotebook
|
|
2697
|
+
|
|
2698
|
+
|
|
2699
|
+
class AuiNotebookPage(object):
|
|
2700
|
+
"""
|
|
2701
|
+
A simple class which holds information about the notebook's pages and
|
|
2702
|
+
their state.
|
|
2703
|
+
"""
|
|
2704
|
+
window = property(None, None)
|
|
2705
|
+
caption = property(None, None)
|
|
2706
|
+
tooltip = property(None, None)
|
|
2707
|
+
bitmap = property(None, None)
|
|
2708
|
+
rect = property(None, None)
|
|
2709
|
+
active = property(None, None)
|
|
2710
|
+
# end of class AuiNotebookPage
|
|
2711
|
+
|
|
2712
|
+
|
|
2713
|
+
class AuiTabContainerButton(object):
|
|
2714
|
+
"""
|
|
2715
|
+
A simple class which holds information about wxAuiNotebook tab buttons
|
|
2716
|
+
and their state.
|
|
2717
|
+
"""
|
|
2718
|
+
id = property(None, None)
|
|
2719
|
+
curState = property(None, None)
|
|
2720
|
+
location = property(None, None)
|
|
2721
|
+
bitmap = property(None, None)
|
|
2722
|
+
disBitmap = property(None, None)
|
|
2723
|
+
rect = property(None, None)
|
|
2724
|
+
# end of class AuiTabContainerButton
|
|
2725
|
+
|
|
2726
|
+
|
|
2727
|
+
class AuiTabContainer(object):
|
|
2728
|
+
"""
|
|
2729
|
+
AuiTabContainer()
|
|
2730
|
+
|
|
2731
|
+
wxAuiTabContainer is a class which contains information about each
|
|
2732
|
+
tab.
|
|
2733
|
+
"""
|
|
2734
|
+
|
|
2735
|
+
def __init__(self):
|
|
2736
|
+
"""
|
|
2737
|
+
AuiTabContainer()
|
|
2738
|
+
|
|
2739
|
+
wxAuiTabContainer is a class which contains information about each
|
|
2740
|
+
tab.
|
|
2741
|
+
"""
|
|
2742
|
+
|
|
2743
|
+
def SetArtProvider(self, art):
|
|
2744
|
+
"""
|
|
2745
|
+
SetArtProvider(art)
|
|
2746
|
+
"""
|
|
2747
|
+
|
|
2748
|
+
def GetArtProvider(self):
|
|
2749
|
+
"""
|
|
2750
|
+
GetArtProvider() -> AuiTabArt
|
|
2751
|
+
"""
|
|
2752
|
+
|
|
2753
|
+
def SetFlags(self, flags):
|
|
2754
|
+
"""
|
|
2755
|
+
SetFlags(flags)
|
|
2756
|
+
"""
|
|
2757
|
+
|
|
2758
|
+
def GetFlags(self):
|
|
2759
|
+
"""
|
|
2760
|
+
GetFlags() -> unsignedint
|
|
2761
|
+
"""
|
|
2762
|
+
|
|
2763
|
+
def AddPage(self, page, info):
|
|
2764
|
+
"""
|
|
2765
|
+
AddPage(page, info) -> bool
|
|
2766
|
+
"""
|
|
2767
|
+
|
|
2768
|
+
def InsertPage(self, page, info, idx):
|
|
2769
|
+
"""
|
|
2770
|
+
InsertPage(page, info, idx) -> bool
|
|
2771
|
+
"""
|
|
2772
|
+
|
|
2773
|
+
def MovePage(self, page, newIdx):
|
|
2774
|
+
"""
|
|
2775
|
+
MovePage(page, newIdx) -> bool
|
|
2776
|
+
"""
|
|
2777
|
+
|
|
2778
|
+
def RemovePage(self, page):
|
|
2779
|
+
"""
|
|
2780
|
+
RemovePage(page) -> bool
|
|
2781
|
+
"""
|
|
2782
|
+
|
|
2783
|
+
def SetActivePage(self, *args, **kw):
|
|
2784
|
+
"""
|
|
2785
|
+
SetActivePage(page) -> bool
|
|
2786
|
+
SetActivePage(page) -> bool
|
|
2787
|
+
"""
|
|
2788
|
+
|
|
2789
|
+
def SetNoneActive(self):
|
|
2790
|
+
"""
|
|
2791
|
+
SetNoneActive()
|
|
2792
|
+
"""
|
|
2793
|
+
|
|
2794
|
+
def GetActivePage(self):
|
|
2795
|
+
"""
|
|
2796
|
+
GetActivePage() -> int
|
|
2797
|
+
"""
|
|
2798
|
+
|
|
2799
|
+
def TabHitTest(self, x, y, hit):
|
|
2800
|
+
"""
|
|
2801
|
+
TabHitTest(x, y, hit) -> bool
|
|
2802
|
+
"""
|
|
2803
|
+
|
|
2804
|
+
def ButtonHitTest(self, x, y, hit):
|
|
2805
|
+
"""
|
|
2806
|
+
ButtonHitTest(x, y, hit) -> bool
|
|
2807
|
+
"""
|
|
2808
|
+
|
|
2809
|
+
def GetWindowFromIdx(self, idx):
|
|
2810
|
+
"""
|
|
2811
|
+
GetWindowFromIdx(idx) -> wx.Window
|
|
2812
|
+
"""
|
|
2813
|
+
|
|
2814
|
+
def GetIdxFromWindow(self, page):
|
|
2815
|
+
"""
|
|
2816
|
+
GetIdxFromWindow(page) -> int
|
|
2817
|
+
"""
|
|
2818
|
+
|
|
2819
|
+
def GetPageCount(self):
|
|
2820
|
+
"""
|
|
2821
|
+
GetPageCount() -> size_t
|
|
2822
|
+
"""
|
|
2823
|
+
|
|
2824
|
+
def GetPage(self, idx):
|
|
2825
|
+
"""
|
|
2826
|
+
GetPage(idx) -> AuiNotebookPage
|
|
2827
|
+
"""
|
|
2828
|
+
|
|
2829
|
+
def GetPages(self):
|
|
2830
|
+
"""
|
|
2831
|
+
GetPages() -> AuiNotebookPageArray
|
|
2832
|
+
"""
|
|
2833
|
+
|
|
2834
|
+
def SetNormalFont(self, normalFont):
|
|
2835
|
+
"""
|
|
2836
|
+
SetNormalFont(normalFont)
|
|
2837
|
+
"""
|
|
2838
|
+
|
|
2839
|
+
def SetSelectedFont(self, selectedFont):
|
|
2840
|
+
"""
|
|
2841
|
+
SetSelectedFont(selectedFont)
|
|
2842
|
+
"""
|
|
2843
|
+
|
|
2844
|
+
def SetMeasuringFont(self, measuringFont):
|
|
2845
|
+
"""
|
|
2846
|
+
SetMeasuringFont(measuringFont)
|
|
2847
|
+
"""
|
|
2848
|
+
|
|
2849
|
+
def SetColour(self, colour):
|
|
2850
|
+
"""
|
|
2851
|
+
SetColour(colour)
|
|
2852
|
+
"""
|
|
2853
|
+
|
|
2854
|
+
def SetActiveColour(self, colour):
|
|
2855
|
+
"""
|
|
2856
|
+
SetActiveColour(colour)
|
|
2857
|
+
"""
|
|
2858
|
+
|
|
2859
|
+
def DoShowHide(self):
|
|
2860
|
+
"""
|
|
2861
|
+
DoShowHide()
|
|
2862
|
+
"""
|
|
2863
|
+
|
|
2864
|
+
def SetRect(self, rect):
|
|
2865
|
+
"""
|
|
2866
|
+
SetRect(rect)
|
|
2867
|
+
"""
|
|
2868
|
+
|
|
2869
|
+
def RemoveButton(self, id):
|
|
2870
|
+
"""
|
|
2871
|
+
RemoveButton(id)
|
|
2872
|
+
"""
|
|
2873
|
+
|
|
2874
|
+
def AddButton(self, id, location, normalBitmap=wx.NullBitmap, disabledBitmap=wx.NullBitmap):
|
|
2875
|
+
"""
|
|
2876
|
+
AddButton(id, location, normalBitmap=wx.NullBitmap, disabledBitmap=wx.NullBitmap)
|
|
2877
|
+
"""
|
|
2878
|
+
|
|
2879
|
+
def GetTabOffset(self):
|
|
2880
|
+
"""
|
|
2881
|
+
GetTabOffset() -> size_t
|
|
2882
|
+
"""
|
|
2883
|
+
|
|
2884
|
+
def SetTabOffset(self, offset):
|
|
2885
|
+
"""
|
|
2886
|
+
SetTabOffset(offset)
|
|
2887
|
+
"""
|
|
2888
|
+
|
|
2889
|
+
def IsTabVisible(self, tabPage, tabOffset, dc, wnd):
|
|
2890
|
+
"""
|
|
2891
|
+
IsTabVisible(tabPage, tabOffset, dc, wnd) -> bool
|
|
2892
|
+
"""
|
|
2893
|
+
|
|
2894
|
+
def MakeTabVisible(self, tabPage, win):
|
|
2895
|
+
"""
|
|
2896
|
+
MakeTabVisible(tabPage, win)
|
|
2897
|
+
"""
|
|
2898
|
+
ActivePage = property(None, None)
|
|
2899
|
+
ArtProvider = property(None, None)
|
|
2900
|
+
Flags = property(None, None)
|
|
2901
|
+
PageCount = property(None, None)
|
|
2902
|
+
Pages = property(None, None)
|
|
2903
|
+
TabOffset = property(None, None)
|
|
2904
|
+
# end of class AuiTabContainer
|
|
2905
|
+
|
|
2906
|
+
|
|
2907
|
+
class AuiTabArt(object):
|
|
2908
|
+
"""
|
|
2909
|
+
AuiTabArt()
|
|
2910
|
+
|
|
2911
|
+
Tab art provider defines all the drawing functions used by
|
|
2912
|
+
wxAuiNotebook.
|
|
2913
|
+
"""
|
|
2914
|
+
|
|
2915
|
+
def __init__(self):
|
|
2916
|
+
"""
|
|
2917
|
+
AuiTabArt()
|
|
2918
|
+
|
|
2919
|
+
Tab art provider defines all the drawing functions used by
|
|
2920
|
+
wxAuiNotebook.
|
|
2921
|
+
"""
|
|
2922
|
+
|
|
2923
|
+
def Clone(self):
|
|
2924
|
+
"""
|
|
2925
|
+
Clone() -> AuiTabArt
|
|
2926
|
+
|
|
2927
|
+
Clones the art object.
|
|
2928
|
+
"""
|
|
2929
|
+
|
|
2930
|
+
def DrawBackground(self, dc, wnd, rect):
|
|
2931
|
+
"""
|
|
2932
|
+
DrawBackground(dc, wnd, rect)
|
|
2933
|
+
|
|
2934
|
+
Draws a background on the given area.
|
|
2935
|
+
"""
|
|
2936
|
+
|
|
2937
|
+
def DrawButton(self, dc, wnd, in_rect, bitmap_id, button_state, orientation, out_rect):
|
|
2938
|
+
"""
|
|
2939
|
+
DrawButton(dc, wnd, in_rect, bitmap_id, button_state, orientation, out_rect)
|
|
2940
|
+
|
|
2941
|
+
Draws a button.
|
|
2942
|
+
"""
|
|
2943
|
+
|
|
2944
|
+
def DrawTab(self, dc, wnd, page, rect, close_button_state, out_tab_rect, out_button_rect, x_extent):
|
|
2945
|
+
"""
|
|
2946
|
+
DrawTab(dc, wnd, page, rect, close_button_state, out_tab_rect, out_button_rect, x_extent)
|
|
2947
|
+
|
|
2948
|
+
Draws a tab.
|
|
2949
|
+
"""
|
|
2950
|
+
|
|
2951
|
+
def GetBestTabCtrlSize(self, , , ):
|
|
2952
|
+
"""
|
|
2953
|
+
GetBestTabCtrlSize(, , ) -> int
|
|
2954
|
+
|
|
2955
|
+
Returns the tab control size.
|
|
2956
|
+
"""
|
|
2957
|
+
|
|
2958
|
+
def GetIndentSize(self):
|
|
2959
|
+
"""
|
|
2960
|
+
GetIndentSize() -> int
|
|
2961
|
+
|
|
2962
|
+
Returns the indent size.
|
|
2963
|
+
"""
|
|
2964
|
+
|
|
2965
|
+
def GetTabSize(self, dc, wnd, caption, bitmap, active, close_button_state, x_extent):
|
|
2966
|
+
"""
|
|
2967
|
+
GetTabSize(dc, wnd, caption, bitmap, active, close_button_state, x_extent) -> wx.Size
|
|
2968
|
+
|
|
2969
|
+
Returns the tab size for the given caption, bitmap and state.
|
|
2970
|
+
"""
|
|
2971
|
+
|
|
2972
|
+
def SetFlags(self, flags):
|
|
2973
|
+
"""
|
|
2974
|
+
SetFlags(flags)
|
|
2975
|
+
|
|
2976
|
+
Sets flags.
|
|
2977
|
+
"""
|
|
2978
|
+
|
|
2979
|
+
def SetMeasuringFont(self, font):
|
|
2980
|
+
"""
|
|
2981
|
+
SetMeasuringFont(font)
|
|
2982
|
+
|
|
2983
|
+
Sets the font used for calculating measurements.
|
|
2984
|
+
"""
|
|
2985
|
+
|
|
2986
|
+
def SetNormalFont(self, font):
|
|
2987
|
+
"""
|
|
2988
|
+
SetNormalFont(font)
|
|
2989
|
+
|
|
2990
|
+
Sets the normal font for drawing labels.
|
|
2991
|
+
"""
|
|
2992
|
+
|
|
2993
|
+
def SetSelectedFont(self, font):
|
|
2994
|
+
"""
|
|
2995
|
+
SetSelectedFont(font)
|
|
2996
|
+
|
|
2997
|
+
Sets the font for drawing text for selected UI elements.
|
|
2998
|
+
"""
|
|
2999
|
+
|
|
3000
|
+
def SetColour(self, colour):
|
|
3001
|
+
"""
|
|
3002
|
+
SetColour(colour)
|
|
3003
|
+
|
|
3004
|
+
Sets the colour of the inactive tabs.
|
|
3005
|
+
"""
|
|
3006
|
+
|
|
3007
|
+
def SetActiveColour(self, colour):
|
|
3008
|
+
"""
|
|
3009
|
+
SetActiveColour(colour)
|
|
3010
|
+
|
|
3011
|
+
Sets the colour of the selected tab.
|
|
3012
|
+
"""
|
|
3013
|
+
|
|
3014
|
+
def SetSizingInfo(self, tab_ctrl_size, tab_count):
|
|
3015
|
+
"""
|
|
3016
|
+
SetSizingInfo(tab_ctrl_size, tab_count)
|
|
3017
|
+
|
|
3018
|
+
Sets sizing information.
|
|
3019
|
+
"""
|
|
3020
|
+
IndentSize = property(None, None)
|
|
3021
|
+
# end of class AuiTabArt
|
|
3022
|
+
|
|
3023
|
+
|
|
3024
|
+
class AuiDefaultTabArt(AuiTabArt):
|
|
3025
|
+
"""
|
|
3026
|
+
AuiDefaultTabArt()
|
|
3027
|
+
|
|
3028
|
+
Default art provider for wxAuiNotebook.
|
|
3029
|
+
"""
|
|
3030
|
+
|
|
3031
|
+
def __init__(self):
|
|
3032
|
+
"""
|
|
3033
|
+
AuiDefaultTabArt()
|
|
3034
|
+
|
|
3035
|
+
Default art provider for wxAuiNotebook.
|
|
3036
|
+
"""
|
|
3037
|
+
|
|
3038
|
+
def Clone(self):
|
|
3039
|
+
"""
|
|
3040
|
+
Clone() -> AuiTabArt
|
|
3041
|
+
|
|
3042
|
+
Clones the art object.
|
|
3043
|
+
"""
|
|
3044
|
+
|
|
3045
|
+
def SetFlags(self, flags):
|
|
3046
|
+
"""
|
|
3047
|
+
SetFlags(flags)
|
|
3048
|
+
|
|
3049
|
+
Sets flags.
|
|
3050
|
+
"""
|
|
3051
|
+
|
|
3052
|
+
def SetSizingInfo(self, tab_ctrl_size, tab_count):
|
|
3053
|
+
"""
|
|
3054
|
+
SetSizingInfo(tab_ctrl_size, tab_count)
|
|
3055
|
+
|
|
3056
|
+
Sets sizing information.
|
|
3057
|
+
"""
|
|
3058
|
+
|
|
3059
|
+
def SetNormalFont(self, font):
|
|
3060
|
+
"""
|
|
3061
|
+
SetNormalFont(font)
|
|
3062
|
+
|
|
3063
|
+
Sets the normal font for drawing labels.
|
|
3064
|
+
"""
|
|
3065
|
+
|
|
3066
|
+
def SetSelectedFont(self, font):
|
|
3067
|
+
"""
|
|
3068
|
+
SetSelectedFont(font)
|
|
3069
|
+
|
|
3070
|
+
Sets the font for drawing text for selected UI elements.
|
|
3071
|
+
"""
|
|
3072
|
+
|
|
3073
|
+
def SetMeasuringFont(self, font):
|
|
3074
|
+
"""
|
|
3075
|
+
SetMeasuringFont(font)
|
|
3076
|
+
|
|
3077
|
+
Sets the font used for calculating measurements.
|
|
3078
|
+
"""
|
|
3079
|
+
|
|
3080
|
+
def SetColour(self, colour):
|
|
3081
|
+
"""
|
|
3082
|
+
SetColour(colour)
|
|
3083
|
+
|
|
3084
|
+
Sets the colour of the inactive tabs.
|
|
3085
|
+
"""
|
|
3086
|
+
|
|
3087
|
+
def SetActiveColour(self, colour):
|
|
3088
|
+
"""
|
|
3089
|
+
SetActiveColour(colour)
|
|
3090
|
+
|
|
3091
|
+
Sets the colour of the selected tab.
|
|
3092
|
+
"""
|
|
3093
|
+
|
|
3094
|
+
def DrawBackground(self, dc, wnd, rect):
|
|
3095
|
+
"""
|
|
3096
|
+
DrawBackground(dc, wnd, rect)
|
|
3097
|
+
|
|
3098
|
+
Draws a background on the given area.
|
|
3099
|
+
"""
|
|
3100
|
+
|
|
3101
|
+
def DrawTab(self, dc, wnd, page, rect, close_button_state, out_tab_rect, out_button_rect, x_extent):
|
|
3102
|
+
"""
|
|
3103
|
+
DrawTab(dc, wnd, page, rect, close_button_state, out_tab_rect, out_button_rect, x_extent)
|
|
3104
|
+
|
|
3105
|
+
Draws a tab.
|
|
3106
|
+
"""
|
|
3107
|
+
|
|
3108
|
+
def DrawButton(self, dc, wnd, in_rect, bitmap_id, button_state, orientation, out_rect):
|
|
3109
|
+
"""
|
|
3110
|
+
DrawButton(dc, wnd, in_rect, bitmap_id, button_state, orientation, out_rect)
|
|
3111
|
+
|
|
3112
|
+
Draws a button.
|
|
3113
|
+
"""
|
|
3114
|
+
|
|
3115
|
+
def GetIndentSize(self):
|
|
3116
|
+
"""
|
|
3117
|
+
GetIndentSize() -> int
|
|
3118
|
+
|
|
3119
|
+
Returns the indent size.
|
|
3120
|
+
"""
|
|
3121
|
+
|
|
3122
|
+
def GetTabSize(self, dc, wnd, caption, bitmap, active, close_button_state, x_extent):
|
|
3123
|
+
"""
|
|
3124
|
+
GetTabSize(dc, wnd, caption, bitmap, active, close_button_state, x_extent) -> wx.Size
|
|
3125
|
+
|
|
3126
|
+
Returns the tab size for the given caption, bitmap and state.
|
|
3127
|
+
"""
|
|
3128
|
+
|
|
3129
|
+
def ShowDropDown(self, wnd, items, activeIdx):
|
|
3130
|
+
"""
|
|
3131
|
+
ShowDropDown(wnd, items, activeIdx) -> int
|
|
3132
|
+
"""
|
|
3133
|
+
|
|
3134
|
+
def GetBestTabCtrlSize(self, , , ):
|
|
3135
|
+
"""
|
|
3136
|
+
GetBestTabCtrlSize(, , ) -> int
|
|
3137
|
+
|
|
3138
|
+
Returns the tab control size.
|
|
3139
|
+
"""
|
|
3140
|
+
IndentSize = property(None, None)
|
|
3141
|
+
# end of class AuiDefaultTabArt
|
|
3142
|
+
|
|
3143
|
+
|
|
3144
|
+
class AuiSimpleTabArt(AuiTabArt):
|
|
3145
|
+
"""
|
|
3146
|
+
AuiSimpleTabArt()
|
|
3147
|
+
|
|
3148
|
+
Another standard tab art provider for wxAuiNotebook.
|
|
3149
|
+
"""
|
|
3150
|
+
|
|
3151
|
+
def __init__(self):
|
|
3152
|
+
"""
|
|
3153
|
+
AuiSimpleTabArt()
|
|
3154
|
+
|
|
3155
|
+
Another standard tab art provider for wxAuiNotebook.
|
|
3156
|
+
"""
|
|
3157
|
+
|
|
3158
|
+
def Clone(self):
|
|
3159
|
+
"""
|
|
3160
|
+
Clone() -> AuiTabArt
|
|
3161
|
+
|
|
3162
|
+
Clones the art object.
|
|
3163
|
+
"""
|
|
3164
|
+
|
|
3165
|
+
def SetFlags(self, flags):
|
|
3166
|
+
"""
|
|
3167
|
+
SetFlags(flags)
|
|
3168
|
+
|
|
3169
|
+
Sets flags.
|
|
3170
|
+
"""
|
|
3171
|
+
|
|
3172
|
+
def SetSizingInfo(self, tab_ctrl_size, tab_count):
|
|
3173
|
+
"""
|
|
3174
|
+
SetSizingInfo(tab_ctrl_size, tab_count)
|
|
3175
|
+
|
|
3176
|
+
Sets sizing information.
|
|
3177
|
+
"""
|
|
3178
|
+
|
|
3179
|
+
def SetNormalFont(self, font):
|
|
3180
|
+
"""
|
|
3181
|
+
SetNormalFont(font)
|
|
3182
|
+
|
|
3183
|
+
Sets the normal font for drawing labels.
|
|
3184
|
+
"""
|
|
3185
|
+
|
|
3186
|
+
def SetSelectedFont(self, font):
|
|
3187
|
+
"""
|
|
3188
|
+
SetSelectedFont(font)
|
|
3189
|
+
|
|
3190
|
+
Sets the font for drawing text for selected UI elements.
|
|
3191
|
+
"""
|
|
3192
|
+
|
|
3193
|
+
def SetMeasuringFont(self, font):
|
|
3194
|
+
"""
|
|
3195
|
+
SetMeasuringFont(font)
|
|
3196
|
+
|
|
3197
|
+
Sets the font used for calculating measurements.
|
|
3198
|
+
"""
|
|
3199
|
+
|
|
3200
|
+
def SetColour(self, colour):
|
|
3201
|
+
"""
|
|
3202
|
+
SetColour(colour)
|
|
3203
|
+
|
|
3204
|
+
Sets the colour of the inactive tabs.
|
|
3205
|
+
"""
|
|
3206
|
+
|
|
3207
|
+
def SetActiveColour(self, colour):
|
|
3208
|
+
"""
|
|
3209
|
+
SetActiveColour(colour)
|
|
3210
|
+
|
|
3211
|
+
Sets the colour of the selected tab.
|
|
3212
|
+
"""
|
|
3213
|
+
|
|
3214
|
+
def DrawBackground(self, dc, wnd, rect):
|
|
3215
|
+
"""
|
|
3216
|
+
DrawBackground(dc, wnd, rect)
|
|
3217
|
+
|
|
3218
|
+
Draws a background on the given area.
|
|
3219
|
+
"""
|
|
3220
|
+
|
|
3221
|
+
def DrawTab(self, dc, wnd, page, rect, close_button_state, out_tab_rect, out_button_rect, x_extent):
|
|
3222
|
+
"""
|
|
3223
|
+
DrawTab(dc, wnd, page, rect, close_button_state, out_tab_rect, out_button_rect, x_extent)
|
|
3224
|
+
|
|
3225
|
+
Draws a tab.
|
|
3226
|
+
"""
|
|
3227
|
+
|
|
3228
|
+
def DrawButton(self, dc, wnd, in_rect, bitmap_id, button_state, orientation, out_rect):
|
|
3229
|
+
"""
|
|
3230
|
+
DrawButton(dc, wnd, in_rect, bitmap_id, button_state, orientation, out_rect)
|
|
3231
|
+
|
|
3232
|
+
Draws a button.
|
|
3233
|
+
"""
|
|
3234
|
+
|
|
3235
|
+
def GetIndentSize(self):
|
|
3236
|
+
"""
|
|
3237
|
+
GetIndentSize() -> int
|
|
3238
|
+
|
|
3239
|
+
Returns the indent size.
|
|
3240
|
+
"""
|
|
3241
|
+
|
|
3242
|
+
def GetTabSize(self, dc, wnd, caption, bitmap, active, close_button_state, x_extent):
|
|
3243
|
+
"""
|
|
3244
|
+
GetTabSize(dc, wnd, caption, bitmap, active, close_button_state, x_extent) -> wx.Size
|
|
3245
|
+
|
|
3246
|
+
Returns the tab size for the given caption, bitmap and state.
|
|
3247
|
+
"""
|
|
3248
|
+
|
|
3249
|
+
def ShowDropDown(self, wnd, items, activeIdx):
|
|
3250
|
+
"""
|
|
3251
|
+
ShowDropDown(wnd, items, activeIdx) -> int
|
|
3252
|
+
"""
|
|
3253
|
+
|
|
3254
|
+
def GetBestTabCtrlSize(self, , , ):
|
|
3255
|
+
"""
|
|
3256
|
+
GetBestTabCtrlSize(, , ) -> int
|
|
3257
|
+
|
|
3258
|
+
Returns the tab control size.
|
|
3259
|
+
"""
|
|
3260
|
+
IndentSize = property(None, None)
|
|
3261
|
+
# end of class AuiSimpleTabArt
|
|
3262
|
+
|
|
3263
|
+
|
|
3264
|
+
class AuiNotebookEvent(wx.BookCtrlEvent):
|
|
3265
|
+
"""
|
|
3266
|
+
AuiNotebookEvent(command_type=wx.wxEVT_NULL, win_id=0)
|
|
3267
|
+
|
|
3268
|
+
This class is used by the events generated by wxAuiNotebook.
|
|
3269
|
+
"""
|
|
3270
|
+
|
|
3271
|
+
def __init__(self, command_type=wx.wxEVT_NULL, win_id=0):
|
|
3272
|
+
"""
|
|
3273
|
+
AuiNotebookEvent(command_type=wx.wxEVT_NULL, win_id=0)
|
|
3274
|
+
|
|
3275
|
+
This class is used by the events generated by wxAuiNotebook.
|
|
3276
|
+
"""
|
|
3277
|
+
|
|
3278
|
+
def Clone(self):
|
|
3279
|
+
"""
|
|
3280
|
+
Clone() -> wx.Event
|
|
3281
|
+
"""
|
|
3282
|
+
# end of class AuiNotebookEvent
|
|
3283
|
+
|
|
3284
|
+
|
|
3285
|
+
EVT_AUINOTEBOOK_PAGE_CLOSE = wx.PyEventBinder( wxEVT_AUINOTEBOOK_PAGE_CLOSE, 1 )
|
|
3286
|
+
EVT_AUINOTEBOOK_PAGE_CLOSED = wx.PyEventBinder( wxEVT_AUINOTEBOOK_PAGE_CLOSED, 1 )
|
|
3287
|
+
EVT_AUINOTEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_AUINOTEBOOK_PAGE_CHANGED, 1 )
|
|
3288
|
+
EVT_AUINOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_AUINOTEBOOK_PAGE_CHANGING, 1 )
|
|
3289
|
+
EVT_AUINOTEBOOK_BUTTON = wx.PyEventBinder( wxEVT_AUINOTEBOOK_BUTTON, 1 )
|
|
3290
|
+
EVT_AUINOTEBOOK_BEGIN_DRAG = wx.PyEventBinder( wxEVT_AUINOTEBOOK_BEGIN_DRAG, 1 )
|
|
3291
|
+
EVT_AUINOTEBOOK_END_DRAG = wx.PyEventBinder( wxEVT_AUINOTEBOOK_END_DRAG, 1 )
|
|
3292
|
+
EVT_AUINOTEBOOK_DRAG_MOTION = wx.PyEventBinder( wxEVT_AUINOTEBOOK_DRAG_MOTION, 1 )
|
|
3293
|
+
EVT_AUINOTEBOOK_ALLOW_DND = wx.PyEventBinder( wxEVT_AUINOTEBOOK_ALLOW_DND, 1 )
|
|
3294
|
+
EVT_AUINOTEBOOK_DRAG_DONE = wx.PyEventBinder( wxEVT_AUINOTEBOOK_DRAG_DONE, 1 )
|
|
3295
|
+
EVT_AUINOTEBOOK_TAB_MIDDLE_DOWN = wx.PyEventBinder( wxEVT_AUINOTEBOOK_TAB_MIDDLE_DOWN, 1 )
|
|
3296
|
+
EVT_AUINOTEBOOK_TAB_MIDDLE_UP = wx.PyEventBinder( wxEVT_AUINOTEBOOK_TAB_MIDDLE_UP, 1 )
|
|
3297
|
+
EVT_AUINOTEBOOK_TAB_RIGHT_DOWN = wx.PyEventBinder( wxEVT_AUINOTEBOOK_TAB_RIGHT_DOWN, 1 )
|
|
3298
|
+
EVT_AUINOTEBOOK_TAB_RIGHT_UP = wx.PyEventBinder( wxEVT_AUINOTEBOOK_TAB_RIGHT_UP, 1 )
|
|
3299
|
+
EVT_AUINOTEBOOK_BG_DCLICK = wx.PyEventBinder( wxEVT_AUINOTEBOOK_BG_DCLICK, 1 )
|
|
3300
|
+
|
|
3301
|
+
class AuiTabCtrl(wx.Control, AuiTabContainer):
|
|
3302
|
+
"""
|
|
3303
|
+
AuiTabCtrl(parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
|
|
3304
|
+
"""
|
|
3305
|
+
|
|
3306
|
+
def __init__(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=0):
|
|
3307
|
+
"""
|
|
3308
|
+
AuiTabCtrl(parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=0)
|
|
3309
|
+
"""
|
|
3310
|
+
|
|
3311
|
+
def IsDragging(self):
|
|
3312
|
+
"""
|
|
3313
|
+
IsDragging() -> bool
|
|
3314
|
+
"""
|
|
3315
|
+
|
|
3316
|
+
@staticmethod
|
|
3317
|
+
def GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL):
|
|
3318
|
+
"""
|
|
3319
|
+
GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL) -> wx.VisualAttributes
|
|
3320
|
+
"""
|
|
3321
|
+
# end of class AuiTabCtrl
|
|
3322
|
+
|
|
3323
|
+
|
|
3324
|
+
#-- end-auibook --#
|
|
3325
|
+
#-- begin-auitabmdi --#
|
|
3326
|
+
|
|
3327
|
+
class AuiMDIParentFrame(wx.Frame):
|
|
3328
|
+
"""
|
|
3329
|
+
AuiMDIParentFrame()
|
|
3330
|
+
AuiMDIParentFrame(parent, winid=wx.ID_ANY, title=wx.EmptyString, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE|wx.VSCROLL|wx.HSCROLL, name=wx.FrameNameStr)
|
|
3331
|
+
"""
|
|
3332
|
+
|
|
3333
|
+
def __init__(self, *args, **kw):
|
|
3334
|
+
"""
|
|
3335
|
+
AuiMDIParentFrame()
|
|
3336
|
+
AuiMDIParentFrame(parent, winid=wx.ID_ANY, title=wx.EmptyString, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE|wx.VSCROLL|wx.HSCROLL, name=wx.FrameNameStr)
|
|
3337
|
+
"""
|
|
3338
|
+
|
|
3339
|
+
def Create(self, parent, winid=wx.ID_ANY, title=wx.EmptyString, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE|wx.VSCROLL|wx.HSCROLL, name=wx.FrameNameStr):
|
|
3340
|
+
"""
|
|
3341
|
+
Create(parent, winid=wx.ID_ANY, title=wx.EmptyString, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE|wx.VSCROLL|wx.HSCROLL, name=wx.FrameNameStr) -> bool
|
|
3342
|
+
"""
|
|
3343
|
+
|
|
3344
|
+
def SetArtProvider(self, provider):
|
|
3345
|
+
"""
|
|
3346
|
+
SetArtProvider(provider)
|
|
3347
|
+
"""
|
|
3348
|
+
|
|
3349
|
+
def GetArtProvider(self):
|
|
3350
|
+
"""
|
|
3351
|
+
GetArtProvider() -> AuiTabArt
|
|
3352
|
+
"""
|
|
3353
|
+
|
|
3354
|
+
def GetNotebook(self):
|
|
3355
|
+
"""
|
|
3356
|
+
GetNotebook() -> AuiNotebook
|
|
3357
|
+
"""
|
|
3358
|
+
|
|
3359
|
+
def GetWindowMenu(self):
|
|
3360
|
+
"""
|
|
3361
|
+
GetWindowMenu() -> wx.Menu
|
|
3362
|
+
"""
|
|
3363
|
+
|
|
3364
|
+
def SetWindowMenu(self, pMenu):
|
|
3365
|
+
"""
|
|
3366
|
+
SetWindowMenu(pMenu)
|
|
3367
|
+
"""
|
|
3368
|
+
|
|
3369
|
+
def SetMenuBar(self, menuBar):
|
|
3370
|
+
"""
|
|
3371
|
+
SetMenuBar(menuBar)
|
|
3372
|
+
|
|
3373
|
+
Tells the frame to show the given menu bar.
|
|
3374
|
+
"""
|
|
3375
|
+
|
|
3376
|
+
def SetChildMenuBar(self, pChild):
|
|
3377
|
+
"""
|
|
3378
|
+
SetChildMenuBar(pChild)
|
|
3379
|
+
"""
|
|
3380
|
+
|
|
3381
|
+
def GetActiveChild(self):
|
|
3382
|
+
"""
|
|
3383
|
+
GetActiveChild() -> AuiMDIChildFrame
|
|
3384
|
+
"""
|
|
3385
|
+
|
|
3386
|
+
def SetActiveChild(self, pChildFrame):
|
|
3387
|
+
"""
|
|
3388
|
+
SetActiveChild(pChildFrame)
|
|
3389
|
+
"""
|
|
3390
|
+
|
|
3391
|
+
def GetClientWindow(self):
|
|
3392
|
+
"""
|
|
3393
|
+
GetClientWindow() -> AuiMDIClientWindow
|
|
3394
|
+
"""
|
|
3395
|
+
|
|
3396
|
+
def OnCreateClient(self):
|
|
3397
|
+
"""
|
|
3398
|
+
OnCreateClient() -> AuiMDIClientWindow
|
|
3399
|
+
"""
|
|
3400
|
+
|
|
3401
|
+
def Cascade(self):
|
|
3402
|
+
"""
|
|
3403
|
+
Cascade()
|
|
3404
|
+
"""
|
|
3405
|
+
|
|
3406
|
+
def Tile(self, orient=wx.HORIZONTAL):
|
|
3407
|
+
"""
|
|
3408
|
+
Tile(orient=wx.HORIZONTAL)
|
|
3409
|
+
"""
|
|
3410
|
+
|
|
3411
|
+
def ArrangeIcons(self):
|
|
3412
|
+
"""
|
|
3413
|
+
ArrangeIcons()
|
|
3414
|
+
"""
|
|
3415
|
+
|
|
3416
|
+
def ActivateNext(self):
|
|
3417
|
+
"""
|
|
3418
|
+
ActivateNext()
|
|
3419
|
+
"""
|
|
3420
|
+
|
|
3421
|
+
def ActivatePrevious(self):
|
|
3422
|
+
"""
|
|
3423
|
+
ActivatePrevious()
|
|
3424
|
+
"""
|
|
3425
|
+
|
|
3426
|
+
@staticmethod
|
|
3427
|
+
def GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL):
|
|
3428
|
+
"""
|
|
3429
|
+
GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL) -> wx.VisualAttributes
|
|
3430
|
+
"""
|
|
3431
|
+
ActiveChild = property(None, None)
|
|
3432
|
+
ArtProvider = property(None, None)
|
|
3433
|
+
ClientWindow = property(None, None)
|
|
3434
|
+
Notebook = property(None, None)
|
|
3435
|
+
WindowMenu = property(None, None)
|
|
3436
|
+
# end of class AuiMDIParentFrame
|
|
3437
|
+
|
|
3438
|
+
|
|
3439
|
+
class AuiMDIChildFrame(TDIChildFrame):
|
|
3440
|
+
"""
|
|
3441
|
+
AuiMDIChildFrame()
|
|
3442
|
+
AuiMDIChildFrame(parent, winid=wx.ID_ANY, title=wx.EmptyString, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE, name=wx.FrameNameStr)
|
|
3443
|
+
"""
|
|
3444
|
+
|
|
3445
|
+
def __init__(self, *args, **kw):
|
|
3446
|
+
"""
|
|
3447
|
+
AuiMDIChildFrame()
|
|
3448
|
+
AuiMDIChildFrame(parent, winid=wx.ID_ANY, title=wx.EmptyString, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE, name=wx.FrameNameStr)
|
|
3449
|
+
"""
|
|
3450
|
+
|
|
3451
|
+
def Create(self, parent, winid=wx.ID_ANY, title=wx.EmptyString, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE, name=wx.FrameNameStr):
|
|
3452
|
+
"""
|
|
3453
|
+
Create(parent, winid=wx.ID_ANY, title=wx.EmptyString, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE, name=wx.FrameNameStr) -> bool
|
|
3454
|
+
"""
|
|
3455
|
+
|
|
3456
|
+
def SetMenuBar(self, menuBar):
|
|
3457
|
+
"""
|
|
3458
|
+
SetMenuBar(menuBar)
|
|
3459
|
+
"""
|
|
3460
|
+
|
|
3461
|
+
def GetMenuBar(self):
|
|
3462
|
+
"""
|
|
3463
|
+
GetMenuBar() -> wx.MenuBar
|
|
3464
|
+
"""
|
|
3465
|
+
|
|
3466
|
+
def SetTitle(self, title):
|
|
3467
|
+
"""
|
|
3468
|
+
SetTitle(title)
|
|
3469
|
+
"""
|
|
3470
|
+
|
|
3471
|
+
def GetTitle(self):
|
|
3472
|
+
"""
|
|
3473
|
+
GetTitle() -> String
|
|
3474
|
+
"""
|
|
3475
|
+
|
|
3476
|
+
def SetIcons(self, icons):
|
|
3477
|
+
"""
|
|
3478
|
+
SetIcons(icons)
|
|
3479
|
+
"""
|
|
3480
|
+
|
|
3481
|
+
def GetIcons(self):
|
|
3482
|
+
"""
|
|
3483
|
+
GetIcons() -> wx.IconBundle
|
|
3484
|
+
"""
|
|
3485
|
+
|
|
3486
|
+
def SetIcon(self, icon):
|
|
3487
|
+
"""
|
|
3488
|
+
SetIcon(icon)
|
|
3489
|
+
"""
|
|
3490
|
+
|
|
3491
|
+
def GetIcon(self):
|
|
3492
|
+
"""
|
|
3493
|
+
GetIcon() -> wx.Icon
|
|
3494
|
+
"""
|
|
3495
|
+
|
|
3496
|
+
def Activate(self):
|
|
3497
|
+
"""
|
|
3498
|
+
Activate()
|
|
3499
|
+
"""
|
|
3500
|
+
|
|
3501
|
+
def Destroy(self):
|
|
3502
|
+
"""
|
|
3503
|
+
Destroy() -> bool
|
|
3504
|
+
|
|
3505
|
+
Destroys the window safely.
|
|
3506
|
+
"""
|
|
3507
|
+
|
|
3508
|
+
def Show(self, show=True):
|
|
3509
|
+
"""
|
|
3510
|
+
Show(show=True) -> bool
|
|
3511
|
+
|
|
3512
|
+
Shows or hides the window.
|
|
3513
|
+
"""
|
|
3514
|
+
|
|
3515
|
+
def CreateStatusBar(self, number=1, style=1, winid=1, name=wx.EmptyString):
|
|
3516
|
+
"""
|
|
3517
|
+
CreateStatusBar(number=1, style=1, winid=1, name=wx.EmptyString) -> wx.StatusBar
|
|
3518
|
+
"""
|
|
3519
|
+
|
|
3520
|
+
def GetStatusBar(self):
|
|
3521
|
+
"""
|
|
3522
|
+
GetStatusBar() -> wx.StatusBar
|
|
3523
|
+
"""
|
|
3524
|
+
|
|
3525
|
+
def SetStatusText(self, text, number=0):
|
|
3526
|
+
"""
|
|
3527
|
+
SetStatusText(text, number=0)
|
|
3528
|
+
"""
|
|
3529
|
+
|
|
3530
|
+
def SetStatusWidths(self, widths):
|
|
3531
|
+
"""
|
|
3532
|
+
SetStatusWidths(widths)
|
|
3533
|
+
"""
|
|
3534
|
+
|
|
3535
|
+
def CreateToolBar(self, style, winid, name):
|
|
3536
|
+
"""
|
|
3537
|
+
CreateToolBar(style, winid, name) -> wx.ToolBar
|
|
3538
|
+
"""
|
|
3539
|
+
|
|
3540
|
+
def GetToolBar(self):
|
|
3541
|
+
"""
|
|
3542
|
+
GetToolBar() -> wx.ToolBar
|
|
3543
|
+
"""
|
|
3544
|
+
|
|
3545
|
+
def Maximize(self, maximize=True):
|
|
3546
|
+
"""
|
|
3547
|
+
Maximize(maximize=True)
|
|
3548
|
+
"""
|
|
3549
|
+
|
|
3550
|
+
def Restore(self):
|
|
3551
|
+
"""
|
|
3552
|
+
Restore()
|
|
3553
|
+
"""
|
|
3554
|
+
|
|
3555
|
+
def Iconize(self, iconize=True):
|
|
3556
|
+
"""
|
|
3557
|
+
Iconize(iconize=True)
|
|
3558
|
+
"""
|
|
3559
|
+
|
|
3560
|
+
def IsMaximized(self):
|
|
3561
|
+
"""
|
|
3562
|
+
IsMaximized() -> bool
|
|
3563
|
+
"""
|
|
3564
|
+
|
|
3565
|
+
def IsIconized(self):
|
|
3566
|
+
"""
|
|
3567
|
+
IsIconized() -> bool
|
|
3568
|
+
"""
|
|
3569
|
+
|
|
3570
|
+
def ShowFullScreen(self, show, style):
|
|
3571
|
+
"""
|
|
3572
|
+
ShowFullScreen(show, style) -> bool
|
|
3573
|
+
"""
|
|
3574
|
+
|
|
3575
|
+
def IsFullScreen(self):
|
|
3576
|
+
"""
|
|
3577
|
+
IsFullScreen() -> bool
|
|
3578
|
+
"""
|
|
3579
|
+
|
|
3580
|
+
def IsTopLevel(self):
|
|
3581
|
+
"""
|
|
3582
|
+
IsTopLevel() -> bool
|
|
3583
|
+
|
|
3584
|
+
Returns true if the given window is a top-level one.
|
|
3585
|
+
"""
|
|
3586
|
+
|
|
3587
|
+
def SetMDIParentFrame(self, parent):
|
|
3588
|
+
"""
|
|
3589
|
+
SetMDIParentFrame(parent)
|
|
3590
|
+
"""
|
|
3591
|
+
|
|
3592
|
+
def GetMDIParentFrame(self):
|
|
3593
|
+
"""
|
|
3594
|
+
GetMDIParentFrame() -> AuiMDIParentFrame
|
|
3595
|
+
"""
|
|
3596
|
+
|
|
3597
|
+
@staticmethod
|
|
3598
|
+
def GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL):
|
|
3599
|
+
"""
|
|
3600
|
+
GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL) -> wx.VisualAttributes
|
|
3601
|
+
"""
|
|
3602
|
+
Icon = property(None, None)
|
|
3603
|
+
Icons = property(None, None)
|
|
3604
|
+
MDIParentFrame = property(None, None)
|
|
3605
|
+
MenuBar = property(None, None)
|
|
3606
|
+
StatusBar = property(None, None)
|
|
3607
|
+
Title = property(None, None)
|
|
3608
|
+
ToolBar = property(None, None)
|
|
3609
|
+
# end of class AuiMDIChildFrame
|
|
3610
|
+
|
|
3611
|
+
|
|
3612
|
+
class AuiMDIClientWindow(AuiNotebook):
|
|
3613
|
+
"""
|
|
3614
|
+
AuiMDIClientWindow()
|
|
3615
|
+
AuiMDIClientWindow(parent, style=0)
|
|
3616
|
+
"""
|
|
3617
|
+
|
|
3618
|
+
def __init__(self, *args, **kw):
|
|
3619
|
+
"""
|
|
3620
|
+
AuiMDIClientWindow()
|
|
3621
|
+
AuiMDIClientWindow(parent, style=0)
|
|
3622
|
+
"""
|
|
3623
|
+
|
|
3624
|
+
def CreateClient(self, parent, style=wx.VSCROLL|wx.HSCROLL):
|
|
3625
|
+
"""
|
|
3626
|
+
CreateClient(parent, style=wx.VSCROLL|wx.HSCROLL) -> bool
|
|
3627
|
+
"""
|
|
3628
|
+
|
|
3629
|
+
def SetSelection(self, new_page):
|
|
3630
|
+
"""
|
|
3631
|
+
SetSelection(new_page) -> int
|
|
3632
|
+
|
|
3633
|
+
Sets the page selection.
|
|
3634
|
+
"""
|
|
3635
|
+
|
|
3636
|
+
def GetActiveChild(self):
|
|
3637
|
+
"""
|
|
3638
|
+
GetActiveChild() -> AuiMDIChildFrame
|
|
3639
|
+
"""
|
|
3640
|
+
|
|
3641
|
+
def SetActiveChild(self, pChildFrame):
|
|
3642
|
+
"""
|
|
3643
|
+
SetActiveChild(pChildFrame)
|
|
3644
|
+
"""
|
|
3645
|
+
|
|
3646
|
+
@staticmethod
|
|
3647
|
+
def GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL):
|
|
3648
|
+
"""
|
|
3649
|
+
GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL) -> wx.VisualAttributes
|
|
3650
|
+
"""
|
|
3651
|
+
ActiveChild = property(None, None)
|
|
3652
|
+
# end of class AuiMDIClientWindow
|
|
3653
|
+
|
|
3654
|
+
|
|
3655
|
+
#-- end-auitabmdi --#
|