From: John L. <jr...@us...> - 2007-06-21 22:03:02
|
Update of /cvsroot/wxlua/wxLua/samples In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30945/wxLua/samples Modified Files: controls.wx.lua Log Message: Add the rest of the controls to the sample Index: controls.wx.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/samples/controls.wx.lua,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** controls.wx.lua 21 Jun 2007 03:58:24 -0000 1.3 --- controls.wx.lua 21 Jun 2007 22:02:58 -0000 1.4 *************** *** 13,17 **** textCtrl = nil ! bmp = wx.wxArtProvider.GetBitmap(wx.wxART_INFORMATION) ID_PARENT_SCROLLEDWINDOW = 1000 --- 13,24 ---- textCtrl = nil ! bmp = wx.wxArtProvider.GetBitmap(wx.wxART_INFORMATION, wx.wxART_TOOLBAR, wx.wxSize(16, 16)) ! imageList = wx.wxImageList(16, 16) [...1146 lines suppressed...] *** 696,702 **** splitter:SetSashGravity(.8) - textCtrl = wx.wxTextCtrl(splitter, wx.wxID_ANY, "", - wx.wxDefaultPosition, wx.wxDefaultSize, - wx.wxTE_READONLY+wx.wxTE_MULTILINE+wx.wxTE_DONTWRAP) splitter2 = wx.wxSplitterWindow(splitter, wx.wxID_ANY) --- 799,802 ---- *************** *** 710,713 **** --- 810,817 ---- controlsWin = CreateControlsWindow(splitter2) + textCtrl = wx.wxTextCtrl(splitter, wx.wxID_ANY, "", + wx.wxDefaultPosition, wx.wxDefaultSize, + wx.wxTE_READONLY+wx.wxTE_MULTILINE+wx.wxTE_DONTWRAP) + splitter2:SplitVertically(eventCheckListBox, controlsWin, 300) splitter:SplitHorizontally(splitter2, textCtrl, 300) |