some little demo tweaks
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11600 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -71,7 +71,6 @@ class SimpleGrid(wxGrid): ##, wxGridAutoEditMixin):
|
|||||||
EVT_GRID_EDITOR_CREATED(self, self.OnEditorCreated)
|
EVT_GRID_EDITOR_CREATED(self, self.OnEditorCreated)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def OnCellLeftClick(self, evt):
|
def OnCellLeftClick(self, evt):
|
||||||
self.log.write("OnCellLeftClick: (%d,%d) %s\n" %
|
self.log.write("OnCellLeftClick: (%d,%d) %s\n" %
|
||||||
(evt.GetRow(), evt.GetCol(), evt.GetPosition()))
|
(evt.GetRow(), evt.GetCol(), evt.GetPosition()))
|
||||||
|
@@ -119,7 +119,7 @@ class wxPythonDemo(wxFrame):
|
|||||||
EVT_ERASE_BACKGROUND(splitter, EmptyHandler)
|
EVT_ERASE_BACKGROUND(splitter, EmptyHandler)
|
||||||
EVT_ERASE_BACKGROUND(splitter2, EmptyHandler)
|
EVT_ERASE_BACKGROUND(splitter2, EmptyHandler)
|
||||||
|
|
||||||
# Prevent TreeCtrl from displaying all items after destruction
|
# Prevent TreeCtrl from displaying all items after destruction when true
|
||||||
self.dying = false
|
self.dying = false
|
||||||
|
|
||||||
# Make a File menu
|
# Make a File menu
|
||||||
|
@@ -11,7 +11,8 @@ def runTest(frame, nb, log):
|
|||||||
win = wxSplitterWindow(nb, -1, size=(640, 480))
|
win = wxSplitterWindow(nb, -1, size=(640, 480))
|
||||||
shellWin = shell.Shell(win, -1, introText=intro)
|
shellWin = shell.Shell(win, -1, introText=intro)
|
||||||
fillingWin = filling.Filling(win, -1, size=(640, 480),
|
fillingWin = filling.Filling(win, -1, size=(640, 480),
|
||||||
ingredients=shellWin.interp.locals)
|
rootObject=shellWin.interp.locals
|
||||||
|
)
|
||||||
win.SplitHorizontally(shellWin, fillingWin)
|
win.SplitHorizontally(shellWin, fillingWin)
|
||||||
return win
|
return win
|
||||||
|
|
||||||
|
@@ -56,6 +56,21 @@ musicdata = {
|
|||||||
37: ("Spyro Gyra", "Song for Lorraine", "Jazz"),
|
37: ("Spyro Gyra", "Song for Lorraine", "Jazz"),
|
||||||
38: ("Yes", "Owner Of A Lonely Heart", "Rock"),
|
38: ("Yes", "Owner Of A Lonely Heart", "Rock"),
|
||||||
39: ("Yes", "Rhythm Of Love", "Rock"),
|
39: ("Yes", "Rhythm Of Love", "Rock"),
|
||||||
|
40: ("Cusco", "Dream Catcher", "New Age"),
|
||||||
|
41: ("Cusco", "Geronimos Laughter", "New Age"),
|
||||||
|
42: ("Cusco", "Ghost Dance", "New Age"),
|
||||||
|
43: ("Blue Man Group", "Drumbone", "New Age"),
|
||||||
|
44: ("Blue Man Group", "Endless Column", "New Age"),
|
||||||
|
45: ("Blue Man Group", "Klein Mandelbrot", "New Age"),
|
||||||
|
46: ("Kenny G", "Silhouette", "Jazz"),
|
||||||
|
47: ("Sade", "Smooth Operator", "Jazz"),
|
||||||
|
48: ("David Arkenstone", "Papillon (On The Wings Of The Butterfly)", "New Age"),
|
||||||
|
49: ("David Arkenstone", "Stepping Stars", "New Age"),
|
||||||
|
50: ("David Arkenstone", "Carnation Lily Lily Rose", "New Age"),
|
||||||
|
51: ("David Lanz", "Behind The Waterfall", "New Age"),
|
||||||
|
52: ("David Lanz", "Cristofori's Dream", "New Age"),
|
||||||
|
53: ("David Lanz", "Heartsounds", "New Age"),
|
||||||
|
54: ("David Lanz", "Leaves on the Seine", "New Age"),
|
||||||
}
|
}
|
||||||
|
|
||||||
import images
|
import images
|
||||||
@@ -170,6 +185,7 @@ class TestListCtrlPanel(wxPanel, wxColumnSorterMixin):
|
|||||||
self.x = event.GetX()
|
self.x = event.GetX()
|
||||||
self.y = event.GetY()
|
self.y = event.GetY()
|
||||||
self.log.WriteText("x, y = %s\n" % str((self.x, self.y)))
|
self.log.WriteText("x, y = %s\n" % str((self.x, self.y)))
|
||||||
|
print event.GetEventObject()
|
||||||
event.Skip()
|
event.Skip()
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user