- self.y_pos = self.y_pos + delta
- colours = [[255, 255, 0], [255, 0, 255], [0, 255, 0], [0, 0, 255]] # list of initial colours for display
- self.names = names = [ "Default Size", "Another Size", "Another Colour", "Larger"] # display names
- sizes = [ None, wxSize(60, 20), None, wxSize(60, 60)] # button sizes
- self.set_val = []
+ self.Bind(csel.EVT_COLOURSELECT, self.OnSelectColour, id=self.colourDefaults.GetId())
+
+ buttonSizer.AddMany([
+ (wx.StaticText(self, -1, "Default Colour/Size"), 0, wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL),
+ (self.colourDefaults, 0, wx.ALL, 3),
+ ])
+
+ # build several examples of buttons with different colours and sizes
+ buttonData = [
+ ("Default Size", (255, 255, 0), wx.DefaultSize, ""),
+ ("Another Size", (255, 0, 255), (60, 20), ""),
+ ("Another Colour", (0, 255, 0), wx.DefaultSize, ""),
+ ("Larger Size", (0, 0, 255), (60, 60), ""),
+ ("With a Label", (127, 0, 255), wx.DefaultSize, "Colour..."),
+ ("Another Colour/Label", (255, 100, 130), (120, -1), "Choose Colour..."),
+ ]
+
+ self.buttonRefs = [] # for saving references to buttons
+
+ # build each button and save a reference to it
+ for name, color, size, label in buttonData:
+ b = csel.ColourSelect(self, -1, label, color, size = size)
+
+ b.Bind(csel.EVT_COLOURSELECT, self.OnSelectColour)
+ self.buttonRefs.append((name, b)) # store reference to button
+
+ buttonSizer.AddMany([
+ (wx.StaticText(self, -1, name), 0, wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL),
+ (b, 0, wx.ALL, 3),
+ ])
+
+ mainSizer.Add(buttonSizer, 0, wx.ALL, 3)
+ self.Layout()
+
+ def OnSelectColour(self, event):
+ self.log.WriteText("Colour selected: %s" % str(event.GetValue()))
+
+ def OnShowAll(self, event):
+ # show the state of each button
+ result = []
+ colour = self.colourDefaults.GetColour() # default control value
+ result.append("Default Colour/Size: " + str(colour))