that allow Unicode objects to be passed as well as String objects. If a Unicode object is passed PyString_AsStringAndSize is used to convert it to a wxString using the default encoding. Fixed the generic buttons so tool tips work for them. Fixed a bug in the demo's tree control. Added a listbox to the listbox demo that shows how to find items with a patching prefix as keys are typed. Added code to the wxListCtrl demo to show how to get text from a column in report mode. Added code to the toolbar demo to clear the long help from the status bar after 2 seconds. Added wxJoystick. Fixed wxTimer so it can be used as described in the docs, either with a Notify method in a subclass, or sending an event to a wxEvtHandler object, (usually a window.) Added wxNotifyEvent.Allow() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8764 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
from wxPython.wx import *
 | 
						|
from wxPython.lib.buttons import wxGenButton, wxGenBitmapButton, \
 | 
						|
                                 wxGenToggleButton, wxGenBitmapToggleButton
 | 
						|
 | 
						|
#----------------------------------------------------------------------
 | 
						|
 | 
						|
 | 
						|
class TestPanel(wxPanel):
 | 
						|
    def __init__(self, parent, log):
 | 
						|
        wxPanel.__init__(self, parent, -1)
 | 
						|
        self.log = log
 | 
						|
 | 
						|
        b = wxButton(self, -1, "A real button", (10,10))
 | 
						|
        b.SetDefault()
 | 
						|
        EVT_BUTTON(self, b.GetId(), self.OnButton)
 | 
						|
        b = wxButton(self, -1, "non-default", (140, 10))
 | 
						|
        EVT_BUTTON(self, b.GetId(), self.OnButton)
 | 
						|
        #wxTextCtrl(self, -1, "", (10,40))
 | 
						|
 | 
						|
        b = wxGenButton(self, -1, 'Hello', (10,65))
 | 
						|
        EVT_BUTTON(self, b.GetId(), self.OnButton)
 | 
						|
        b = wxGenButton(self, -1, 'disabled', (140,65))
 | 
						|
        EVT_BUTTON(self, b.GetId(), self.OnButton)
 | 
						|
        b.Enable(false)
 | 
						|
 | 
						|
        b = wxGenButton(self, -1, 'bigger', (250,50))
 | 
						|
        EVT_BUTTON(self, b.GetId(), self.OnButton)
 | 
						|
        b.SetFont(wxFont(20, wxSWISS, wxNORMAL, wxBOLD, false))
 | 
						|
        b.SetBezelWidth(5)
 | 
						|
        b.SetBestSize()
 | 
						|
        b.SetBackgroundColour(wxNamedColour("Navy"))
 | 
						|
        b.SetForegroundColour(wxWHITE)
 | 
						|
        #b.SetUseFocusIndicator(false)
 | 
						|
        b.SetToolTipString("This is a BIG button...")
 | 
						|
 | 
						|
        bmp = wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP)
 | 
						|
        b = wxGenBitmapButton(self, -1, bmp, (10, 130))
 | 
						|
        EVT_BUTTON(self, b.GetId(), self.OnButton)
 | 
						|
 | 
						|
 | 
						|
        b = wxGenBitmapButton(self, -1, None, (140, 130))
 | 
						|
        EVT_BUTTON(self, b.GetId(), self.OnButton)
 | 
						|
        bmp = wxBitmap('bitmaps/lb1.bmp', wxBITMAP_TYPE_BMP)
 | 
						|
        mask = wxMaskColour(bmp, wxBLUE)
 | 
						|
        bmp.SetMask(mask)
 | 
						|
        b.SetBitmapLabel(bmp)
 | 
						|
        bmp = wxBitmap('bitmaps/lb2.bmp', wxBITMAP_TYPE_BMP)
 | 
						|
        mask = wxMaskColour(bmp, wxBLUE)
 | 
						|
        bmp.SetMask(mask)
 | 
						|
        b.SetBitmapSelected(bmp)
 | 
						|
        b.SetBestSize()
 | 
						|
 | 
						|
        b = wxGenToggleButton(self, -1, "Toggle Button", (10, 230))
 | 
						|
        EVT_BUTTON(self, b.GetId(), self.OnToggleButton)
 | 
						|
 | 
						|
 | 
						|
        b = wxGenBitmapToggleButton(self, -1, None, (140, 230))
 | 
						|
        EVT_BUTTON(self, b.GetId(), self.OnToggleButton)
 | 
						|
        bmp = wxBitmap('bitmaps/lb1.bmp', wxBITMAP_TYPE_BMP)
 | 
						|
        mask = wxMaskColour(bmp, wxBLUE)
 | 
						|
        bmp.SetMask(mask)
 | 
						|
        b.SetBitmapLabel(bmp)
 | 
						|
        bmp = wxBitmap('bitmaps/lb2.bmp', wxBITMAP_TYPE_BMP)
 | 
						|
        mask = wxMaskColour(bmp, wxBLUE)
 | 
						|
        bmp.SetMask(mask)
 | 
						|
        b.SetBitmapSelected(bmp)
 | 
						|
        b.SetToggle(true)
 | 
						|
        b.SetBestSize()
 | 
						|
 | 
						|
 | 
						|
    def OnButton(self, event):
 | 
						|
        self.log.WriteText("Button Clicked: %d\n" % event.GetId())
 | 
						|
 | 
						|
    def OnToggleButton(self, event):
 | 
						|
        msg = (event.GetIsDown() and "on") or "off"
 | 
						|
        self.log.WriteText("Button %d Toggled: %s\n" % (event.GetId(), msg))
 | 
						|
 | 
						|
 | 
						|
 | 
						|
#----------------------------------------------------------------------
 | 
						|
 | 
						|
 | 
						|
def runTest(frame, nb, log):
 | 
						|
    win = TestPanel(nb, log)
 | 
						|
    return win
 | 
						|
 | 
						|
 | 
						|
#----------------------------------------------------------------------
 | 
						|
 | 
						|
 | 
						|
import wxPython.lib.buttons
 | 
						|
overview = wxPython.lib.buttons.__doc__
 |