]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxCalendar.py
New wxDesigner-less version of the MimeTypesManager demo
[wxWidgets.git] / wxPython / demo / wxCalendar.py
index ca61fa20914658d9d482ff6b7eb26d2c56dc4daf..d9134beb5dcd8ea0e57a73835e2885827fccc510 100644 (file)
@@ -4,16 +4,47 @@
 #
 # Author:       Lorne White (email: lwhite1@planet.eon.net)
 #
-# Created:
-# Version       0.8 2000/04/16
+# Version       0.9
+# Date:         Feb 26, 2001
 # Licence:      wxWindows license
 #----------------------------------------------------------------------------
+# 11/15/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o Updated for wx namespace
+# o Some updating of the library itself will be needed for this demo to work
+#   correctly.
+#
+# 11/26/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o Problems have changed a little. The print dialog requires
+#   a wx.Size to work with the calendar library. wx.core doesn't
+#   approve, though, so we get deprecation warnings.
+# o Ugh. AFter updating to the Bind() method, things lock up
+#   on various control clicks. Will have to debug. Only seems
+#   to happen on windows with calendar controls, though. 
+#
+# 11/30/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o Lockup issue clarification: it appears that the spinner is
+#   the culprit.
+#
+# 12/01/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o New Bind() method now fully supported.
+#
+# 12/17/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o wxCalendar renamed to Calendar
+# o Got rid of unneeded IDs where Bind() could figure it
+#   out for itself.
+#
+
+import  os
 
-from wxPython.wx           import *
-from wxPython.lib.calendar import wxCalendar, Month, PrtCalDraw
+import  wx
+import  wx.lib.calendar 
 
-import os
-dir_path = os.getcwd()
+import  images
 
 
 # highlighted days in month
@@ -35,105 +66,120 @@ test_days ={ 0: [],
 # test of full window calendar control functions
 
 def GetMonthList():
+
     monthlist = []
+
     for i in range(13):
-        name = Month[i]
+        name = wx.lib.calendar.Month[i]
+
         if name != None:
             monthlist.append(name)
+
     return monthlist
 
-class TestPanel(wxPanel):
+class TestPanel(wx.Panel):
     def __init__(self, parent, log, frame):
-        wxPanel.__init__(self, parent, -1)
+        wx.Panel.__init__(self, parent, -1)
 
         self.log = log
         self.frame = frame
 
-        self.calend = wxCalendar(self, -1, wxPoint(100, 50), wxSize(200, 180))
+        self.calend = wx.lib.calendar.Calendar(self, -1, (100, 50), (200, 180))
+
+#        start_month = 2        # preselect the date for calendar
+#        start_year = 2001
 
-        start_month = 11
-        start_year = 1999
+        start_month = self.calend.GetMonth()        # get the current month & year
+        start_year = self.calend.GetYear()
 
-# month list from DateTime module
+        # month list from DateTime module
 
         monthlist = GetMonthList()
 
-        self.date = wxComboBox(self, 10, Month[start_month], wxPoint(100, 20), wxSize(90, -1), monthlist, wxCB_DROPDOWN)
-        EVT_COMBOBOX(self, 10, self.EvtComboBox)
+        self.date = wx.ComboBox(self, -1, "",
+                               (100, 20), (90, -1),
+                               monthlist, wx.CB_DROPDOWN)
 
-# set start month and year
+        self.date.SetSelection(start_month-1)
+        self.Bind(wx.EVT_COMBOBOX, self.EvtComboBox, self.date)
+
+        # set start month and year
 
         self.calend.SetMonth(start_month)
         self.calend.SetYear(start_year)
 
-# set attributes of calendar
+        # set attributes of calendar
 
-        self.calend.hide_title = TRUE
+        self.calend.hide_title = True
         self.calend.HideGrid()
         self.calend.SetWeekColor('WHITE', 'BLACK')
 
-# display routine
+        # display routine
 
         self.ResetDisplay()
 
-# mouse click event
-
-        self.Connect(self.calend.GetId(), -1, 2100, self.MouseClick)
+        # mouse click event
+        self.Bind(wx.lib.calendar.EVT_CALENDAR, self.MouseClick, self.calend)
 
-# scroll bar for month selection
+        # scroll bar for month selection
+        self.scroll = wx.ScrollBar(self, -1, (100, 240), (200, 20), wx.SB_HORIZONTAL)
+        self.scroll.SetScrollbar(start_month-1, 1, 12, 1, True)
+        self.Bind(wx.EVT_COMMAND_SCROLL, self.Scroll, self.scroll)
 
-        self.scroll = wxScrollBar(self, 40, wxPoint(100, 240), wxSize(200, 20), wxSB_HORIZONTAL)
-        self.scroll.SetScrollbar(start_month-1, 1, 12, 1, TRUE)
-        EVT_COMMAND_SCROLL(self, 40, self.Scroll)
+        # spin control for year selection
 
-# spin control for year selection
-
-        self.dtext = wxTextCtrl(self, -1, str(start_year), wxPoint(200, 20), wxSize(60, -1))
+        self.dtext = wx.TextCtrl(self, -1, str(start_year), (200, 20), (60, -1))
         h = self.dtext.GetSize().height
 
-        self.spin = wxSpinButton(self, 20, wxPoint(270, 20), wxSize(h*2, h))
+        self.spin = wx.SpinButton(self, -1, (270, 20), (h*2, h))
         self.spin.SetRange(1980, 2010)
         self.spin.SetValue(start_year)
-        EVT_SPIN(self, 20, self.OnSpin)
+        self.Bind(wx.EVT_SPIN, self.OnSpin, self.spin)
 
-# button for calendar dialog test
+        # button for calendar dialog test
 
-        wxStaticText(self, -1, "Test Calendar Dialog", wxPoint(350, 50), wxSize(150, -1))
+        wx.StaticText(self, -1, "Test Calendar Dialog", (350, 50), (150, -1))
 
-        bmp = wxBitmap('bitmaps/Calend.bmp', wxBITMAP_TYPE_BMP)
-        self.but = wxBitmapButton(self, 60, bmp, wxPoint(380, 80))#, wxSize(30, 30))
-        EVT_BUTTON(self, 60, self.TestDlg)
+        bmp = images.getCalendarBitmap()
+        self.but1 = wx.BitmapButton(self, -1, bmp, (380, 80))
+        self.Bind(wx.EVT_BUTTON, self.TestDlg, self.but1)
 
-# button for calendar window test
+        # button for calendar window test
 
-        wxStaticText(self, -1, "Test Calendar Window", wxPoint(350, 150), wxSize(150, -1))
+        wx.StaticText(self, -1, "Test Calendar Window", (350, 150), (150, -1))
 
-        bmp = wxBitmap('bitmaps/Calend.bmp', wxBITMAP_TYPE_BMP)
-        self.but = wxBitmapButton(self, 160, bmp, wxPoint(380, 180))#, wxSize(30, 30))
-        EVT_BUTTON(self, 160, self.TestFrame)
+        self.but2 = wx.BitmapButton(self, -1, bmp, (380, 180))
+        self.Bind(wx.EVT_BUTTON, self.TestFrame, self.but2)
 
-        wxStaticText(self, -1, "Test Calendar Print", wxPoint(350, 250), wxSize(150, -1))
+        wx.StaticText(self, -1, "Test Calendar Print", (350, 250), (150, -1))
 
-        bmp = wxBitmap('bitmaps/Calend.bmp', wxBITMAP_TYPE_BMP)
-        self.but = wxBitmapButton(self, 170, bmp, wxPoint(380, 280))#, wxSize(30, 30))
-        EVT_BUTTON(self, 170, self.OnPreview)
+        self.but3 = wx.BitmapButton(self, -1, bmp, (380, 280))
+        self.Bind(wx.EVT_BUTTON, self.OnPreview, self.but3)
 
-# calendar dialog
+        # calendar dialog
 
-    def TestDlg(self, event):
-        dlg = CalenDlg(self, self.log)
+    def TestDlg(self, event):       # test the date dialog
+        dlg = wx.lib.calendar.CalenDlg(self)
         dlg.Centre()
-        dlg.ShowModal()
-        dlg.Destroy()
 
-# calendar window test
+        if dlg.ShowModal() == wx.ID_OK:
+            result = dlg.result
+            day = result[1]
+            month = result[2]
+            year = result[3]
+            new_date = str(month) + '/'+ str(day) + '/'+ str(year)
+            self.log.WriteText('Date Selected: %s\n' % new_date)
+        else:
+            self.log.WriteText('No Date Selected')
+
+        # calendar window test
 
     def TestFrame(self, event):
         frame = CalendFrame(self, -1, "Test Calendar", self.log)
-        frame.Show(true)
-        return true
+        frame.Show(True)
+        return True
 
-# calendar print preview
+    # calendar print preview
 
     def OnPreview(self, event):
         month = self.calend.GetMonth()
@@ -142,7 +188,7 @@ class TestPanel(wxPanel):
         prt = PrintCalend(self.frame, month, year)
         prt.Preview()
 
-# month and year control events
+    # month and year control events
 
     def OnSpin(self, event):
         year = event.GetPosition()
@@ -154,7 +200,7 @@ class TestPanel(wxPanel):
         name = event.GetString()
         self.log.WriteText('EvtComboBox: %s\n' % name)
         monthval = self.date.FindString(name)
-        self.scroll.SetScrollbar(monthval, 1, 12, 1, TRUE)
+        self.scroll.SetScrollbar(monthval, 1, 12, 1, True)
 
         self.calend.SetMonth(monthval+1)
         self.ResetDisplay()
@@ -166,20 +212,21 @@ class TestPanel(wxPanel):
         self.ResetDisplay()
         self.log.WriteText('Month: %s\n' % value)
 
-        name = Month[monthval]
+        name = wx.lib.calendar.Month[monthval]
         self.date.SetValue(name)
 
-# log mouse events
+    # log mouse events
 
     def MouseClick(self, evt):
         text = '%s CLICK   %02d/%02d/%d' % (evt.click, evt.day, evt.month, evt.year)  # format date
         self.log.WriteText('Date Selected: ' + text + '\n')
 
 
-# set the highlighted days for the calendar
+    # set the highlighted days for the calendar
 
     def ResetDisplay(self):
         month = self.calend.GetMonth()
+
         try:
             set_days = test_days[month]
         except:
@@ -189,7 +236,7 @@ class TestPanel(wxPanel):
         self.calend.SetSelDay(set_days)
         self.calend.Refresh()
 
-# increment and decrement toolbar controls
+    # increment and decrement toolbar controls
 
     def OnIncYear(self, event):
         self.calend.IncYear()
@@ -211,116 +258,19 @@ class TestPanel(wxPanel):
         self.calend.SetCurrentDay()
         self.ResetDisplay()
 
-# test the calendar control in a dialog
-
-class CalenDlg(wxDialog):
-    def __init__(self, parent, log):
-        self.log = log
-        wxDialog.__init__(self, parent, -1, "Test Calendar", wxPyDefaultPosition, wxSize(280, 300))
-
-        start_month = 2
-        start_year = 1999
-
-# get month list from DateTime
-
-        monthlist = GetMonthList()
-
-# select the month
-
-        self.date = wxComboBox(self, 100, Month[start_month], wxPoint(20, 20), wxSize(90, -1), monthlist, wxCB_DROPDOWN)
-        EVT_COMBOBOX(self, 100, self.EvtComboBox)
-
-# alternate spin button to control the month
-
-        h = self.date.GetSize().height
-        self.m_spin = wxSpinButton(self, 120, wxPoint(120, 20), wxSize(h*2, h), wxSP_VERTICAL)
-        self.m_spin.SetRange(1, 12)
-        self.m_spin.SetValue(start_month)
-
-        EVT_SPIN(self, 120, self.OnMonthSpin)
-
-# spin button to conrol the year
-
-        self.dtext = wxTextCtrl(self, -1, str(start_year), wxPoint(160, 20), wxSize(60, -1))
-        h = self.dtext.GetSize().height
-
-        self.y_spin = wxSpinButton(self, 20, wxPoint(220, 20), wxSize(h*2, h), wxSP_VERTICAL)
-        self.y_spin.SetRange(1980, 2010)
-        self.y_spin.SetValue(start_year)
-
-        EVT_SPIN(self, 20, self.OnYrSpin)
-
-# set the calendar and attributes
-
-        self.calend = wxCalendar(self, -1, wxPoint(20, 60), wxSize(240, 200))
-        self.calend.SetMonth(start_month)
-        self.calend.SetYear(start_year)
-
-        self.calend.HideTitle()
-        self.calend.ShowWeekEnd()
-
-        self.ResetDisplay()
-
-        self.Connect(self.calend.GetId(), -1, 2100, self.MouseClick)
-
-# log the mouse clicks
-
-    def MouseClick(self, evt):
-        text = '%s CLICK   %02d/%02d/%d' % (evt.click, evt.day, evt.month, evt.year)  # format date
-        self.log.WriteText('Date Selected: ' + text + '\n')
-
-        if evt.click == 'DLEFT':
-            self.EndModal(wxID_OK)
-
-# month and year spin selection routines
-
-    def OnMonthSpin(self, event):
-        month = event.GetPosition()
-        if month >= 0 and month <= 12:
-            self.date.SetValue(Month[month])
-            self.calend.SetMonth(month)
-            self.calend.Refresh()
-
-    def OnYrSpin(self, event):
-        year = event.GetPosition()
-        self.dtext.SetValue(str(year))
-        self.calend.SetYear(year)
-        self.calend.Refresh()
-
-    def EvtComboBox(self, event):
-        name = event.GetString()
-        self.log.WriteText('EvtComboBox: %s\n' % name)
-        monthval = self.date.FindString(name)
-        self.m_spin.SetValue(monthval+1)
-
-        self.calend.SetMonth(monthval+1)
-        self.ResetDisplay()
-
-# set the calendar for highlighted days
-
-    def ResetDisplay(self):
-        month = self.calend.GetMonth()
-        try:
-            set_days = test_days[month]
-        except:
-            set_days = [1, 5, 12]
-
-        self.calend.AddSelect([4, 11], 'BLUE', 'WHITE')
-
-        self.calend.SetSelDay(set_days)
-        self.calend.Refresh()
-
 # test of full window calendar control functions
 
-class CalendFrame(wxFrame):
+class CalendFrame(wx.Frame):
     def __init__(self, parent, id, title, log):
-        wxFrame.__init__(self, parent, id, title, wxPyDefaultPosition, wxSize(400, 400))
-        EVT_CLOSE(self, self.OnCloseWindow)
+        wx.Frame.__init__(self, parent, id, title, size=(400, 400),
+                         style=wx.DEFAULT_FRAME_STYLE|wx.NO_FULL_REPAINT_ON_RESIZE)
+
+        self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
 
         self.log = log
         self.CreateStatusBar()
-        self.mainmenu = wxMenuBar()
-        menu = wxMenu()
+        self.mainmenu = wx.MenuBar()
+        menu = wx.Menu()
 
         menu = self.MakeFileMenu()
         self.mainmenu.Append(menu, '&File')
@@ -328,7 +278,7 @@ class CalendFrame(wxFrame):
         self.MakeToolMenu()             # toolbar
 
         self.SetMenuBar(self.mainmenu)
-        self.calend = wxCalendar(self, -1)
+        self.calend = wx.lib.calendar.Calendar(self, -1)
         self.calend.SetCurrentDay()
         self.calend.grid_color = 'BLUE'
         self.calend.SetBusType()
@@ -336,7 +286,7 @@ class CalendFrame(wxFrame):
 
         self.ResetDisplay()
 
-        self.Connect(self.calend.GetId(), -1, 2100, self.MouseClick)
+        self.Bind(wx.lib.calendar.EVT_CALENDAR, self.MouseClick, self.calend)
 
     def MouseClick(self, evt):
         text = '%s CLICK   %02d/%02d/%d' % (evt.click, evt.day, evt.month, evt.year)  # format date
@@ -347,6 +297,7 @@ class CalendFrame(wxFrame):
 
     def ResetDisplay(self):
         month = self.calend.GetMonth()
+
         try:
             set_days = test_days[month]
         except:
@@ -378,42 +329,46 @@ class CalendFrame(wxFrame):
         self.ResetDisplay()
 
     def MakeFileMenu(self):
-        menu = wxMenu()
+        menu = wx.Menu()
 
-        mID = NewId()
+        mID = wx.NewId()
         menu.Append(mID, 'Decrement', 'Next')
-        EVT_MENU(self, mID, self.OnDecMonth)
+        self.Bind(wx.EVT_MENU, self.OnDecMonth, id=mID)
 
-        mID = NewId()
+        mID = wx.NewId()
         menu.Append(mID, 'Increment', 'Dec')
-        EVT_MENU(self, mID, self.OnIncMonth)
+        self.Bind(wx.EVT_MENU, self.OnIncMonth, id=mID)
 
         menu.AppendSeparator()
 
-        mID = NewId()
+        mID = wx.NewId()
         menu.Append(mID, 'E&xit', 'Exit')
-        EVT_MENU(self, mID, self.OnCloseWindow)
+        self.Bind(wx.EVT_MENU, self.OnCloseWindow, id=mID)
 
         return menu
 
     def MakeToolMenu(self):
-        tb = self.CreateToolBar(wxTB_HORIZONTAL|wxNO_BORDER)
+        tb = self.CreateToolBar(wx.TB_HORIZONTAL|wx.NO_BORDER)
 
-        bmp_path = 'bitmaps/'
-        SetToolPath(self, tb, 10, bmp_path + 'DbDec.bmp', 'Dec Year')
-        EVT_TOOL(self, 10, self.OnDecYear)
+        mID = wx.NewId()
+        SetToolPath(self, tb, mID, images.getDbDecBitmap(), 'Dec Year')
+        self.Bind(wx.EVT_TOOL, self.OnDecYear, id=mID)
 
-        SetToolPath(self, tb, 15, bmp_path + 'Dec.bmp', 'Dec Month')
-        EVT_TOOL(self, 15, self.OnDecMonth)
+        mID = wx.NewId()
+        SetToolPath(self, tb, mID, images.getDecBitmap(), 'Dec Month')
+        self.Bind(wx.EVT_TOOL, self.OnDecMonth, id=mID)
 
-        SetToolPath(self, tb, 30, bmp_path + 'Pt.bmp', 'Current Month')
-        EVT_TOOL(self, 30, self.OnCurrent)
+        mID = wx.NewId()
+        SetToolPath(self, tb, mID, images.getPtBitmap(), 'Current Month')
+        self.Bind(wx.EVT_TOOL, self.OnCurrent, id=mID)
 
-        SetToolPath(self, tb, 40, bmp_path + 'Inc.bmp', 'Inc Month')
-        EVT_TOOL(self, 40, self.OnIncMonth)
+        mID = wx.NewId()
+        SetToolPath(self, tb, mID, images.getIncBitmap(), 'Inc Month')
+        self.Bind(wx.EVT_TOOL, self.OnIncMonth, id=mID)
 
-        SetToolPath(self, tb, 45, bmp_path + 'DbInc.bmp', 'Inc Year')
-        EVT_TOOL(self, 45, self.OnIncYear)
+        mID = wx.NewId()
+        SetToolPath(self, tb, mID, images.getDbIncBitmap(), 'Inc Year')
+        self.Bind(wx.EVT_TOOL, self.OnIncYear, id=mID)
 
         tb.Realize()
 
@@ -429,22 +384,22 @@ class PrintCalend:
 
         self.SetParms()
         self.SetCal()
-        self.printData = wxPrintData()
+        self.printData = wx.PrintData()
 
     def SetCal(self):
         self.grid_color = 'BLUE'
         self.back_color = 'WHITE'
         self.sel_color = 'RED'
         self.high_color = 'LIGHT BLUE'
-        self.font = wxSWISS
-        self.bold = wxNORMAL
+        self.font = wx.SWISS
+        self.bold = wx.NORMAL
 
         self.sel_key = None      #  last used by
         self.sel_lst = []        # highlighted selected days
 
         self.size = None
-        self.hide_title = FALSE
-        self.hide_grid = FALSE
+        self.hide_title = False
+        self.hide_grid = False
         self.set_day = None
 
     def SetParms(self):
@@ -481,41 +436,44 @@ class PrintCalend:
     def Preview(self):
         printout = SetPrintout(self)
         printout2 = SetPrintout(self)
-        self.preview = wxPrintPreview(printout, printout2, self.printData)
+        self.preview = wx.PrintPreview(printout, printout2, self.printData)
+
         if not self.preview.Ok():
-            wxMessageBox("There was a problem printing!", "Printing", wxOK)
+            wx.MessageBox("There was a problem printing!", "Printing", wx.OK)
             return
 
         self.preview.SetZoom(60)        # initial zoom value
 
-        frame = wxPreviewFrame(self.preview, self.frame, "Print preview")
+        frame = wx.PreviewFrame(self.preview, self.frame, "Print preview")
 
         frame.Initialize()
         frame.SetPosition(self.frame.GetPosition())
         frame.SetSize(self.frame.GetSize())
-        frame.Show(true)
+        frame.Show(True)
 
     def Print(self):
-        pdd = wxPrintDialogData()
+        pdd = wx.PrintDialogData()
         pdd.SetPrintData(self.printData)
-        printer = wxPrinter(pdd)
+        printer = wx.Printer(pdd)
         printout = SetPrintout(self)
-        frame = wxFrame(NULL, -1, "Test")
+        frame = wx.Frame(None, -1, "Test")
+
         if not printer.Print(frame, printout):
-            wxMessageBox("There was a problem printing.\nPerhaps your current printer is not set correctly?", "Printing", wxOK)
+            wx.MessageBox("There was a problem printing.\nPerhaps your current printer is not set correctly?", "Printing", wx.OK)
         else:
             self.printData = printer.GetPrintDialogData().GetPrintData()
+
         printout.Destroy()
 
     def DoDrawing(self, DC):
-        size = DC.GetSizeTuple()
+        size = DC.GetSize()
         DC.BeginDrawing()
 
-        cal = PrtCalDraw(self)
+        cal = wx.lib.calendar.PrtCalDraw(self)
 
         if self.preview is None:
             cal.SetPSize(size[0]/self.pagew, size[1]/self.pageh)
-            cal.SetPreview(FALSE)
+            cal.SetPreview(False)
 
         else:
             if self.preview == 1:
@@ -531,18 +489,19 @@ class PrintCalend:
         cal.grid_color = self.grid_color
         cal.high_color = self.high_color
         cal.back_color = self.back_color
-        cal.outer_border = FALSE
+        cal.outer_border = False
         cal.font = self.font
         cal.bold = self.bold
 
-        cal_size = wxSize(3.0, 3.0)
+        cal_size = (3.0, 3.0)
         cal.SetSize(cal_size)
 
         year, month = self.year, self.month
 
-        x = 1.0
+        x = 0.5
         for i in range(2):
             y = 0.5
+
             for j in range(3):
                 cal.SetCal(year, month)       # current month
                 cal.SetPos(x, y)
@@ -558,7 +517,8 @@ class PrintCalend:
 
                 year, month = self.IncMonth(year, month)
                 y = y + 3.5
-            x = x + 4.0     # next colum
+
+            x = x + 4.0     # next column
 
         DC.EndDrawing()
 
@@ -567,6 +527,7 @@ class PrintCalend:
 
     def IncMonth(self, year, month):     # next month
         month = month + 1
+
         if month > 12:
             month = 1
             year = year + 1
@@ -595,13 +556,11 @@ class PrintCalend:
         self.ptheight = height
 
 def SetToolPath(self, tb, id, bmp, title):
-    global dir_path
-    tb.AddSimpleTool(id, wxBitmap(os.path.join(dir_path, bmp), wxBITMAP_TYPE_BMP),
-                     title, title)
+    tb.AddSimpleTool(id, bmp, title, title)
 
-class SetPrintout(wxPrintout):
+class SetPrintout(wx.Printout):
     def __init__(self, canvas):
-        wxPrintout.__init__(self)
+        wx.Printout.__init__(self)
         self.canvas = canvas
         self.end_pg = 1
 
@@ -613,17 +572,19 @@ class SetPrintout(wxPrintout):
 
     def HasPage(self, page):
         if page <= self.end_pg:
-            return true
+            return True
         else:
-            return false
+            return False
 
     def GetPageInfo(self):
         self.end_pg = self.canvas.GetTotalPages()
         str_pg = 1
+
         try:
             end_pg = self.end_pg
         except:
             end_pg = 1
+
         return (str_pg, end_pg, str_pg, end_pg)
 
     def OnPreparePrinting(self):
@@ -633,12 +594,13 @@ class SetPrintout(wxPrintout):
         dc = self.GetDC()
 
         self.preview = self.IsPreview()
+
         if (self.preview):
             self.pixelsPerInch = self.GetPPIScreen()
         else:
             self.pixelsPerInch = self.GetPPIPrinter()
 
-        (w, h) = dc.GetSizeTuple()
+        (w, h) = dc.GetSize()
         scaleX = float(w) / 1000
         scaleY = float(h) / 1000
         self.printUserScale = min(scaleX, scaleY)
@@ -655,7 +617,7 @@ class SetPrintout(wxPrintout):
 
     def OnPrintPage(self, page):
         dc = self.GetDC()
-        (w, h) = dc.GetSizeTuple()
+        (w, h) = dc.GetSize()
         scaleX = float(w) / 1000
         scaleY = float(h) / 1000
         self.printUserScale = min(scaleX, scaleY)
@@ -673,35 +635,24 @@ class SetPrintout(wxPrintout):
         self.canvas.SetPageSize(self.psizew, self.psizeh)
 
         self.canvas.DoDrawing(dc)
-        return true
+        return True
 
-class MyApp(wxApp):
+class MyApp(wx.App):
     def OnInit(self):
-        frame = CalendFrame(NULL, -1, "Test Calendar")
-        frame.Show(true)
+        frame = CalendFrame(None, -1, "Test Calendar", log)
+        frame.Show(True)
         self.SetTopWindow(frame)
-        return true
+        return True
 
 #---------------------------------------------------------------------------
 
 def MessageDlg(self, message, type = 'Message'):
-    dlg = wxMessageDialog(self, message, type, wxOK | wxICON_INFORMATION)
+    dlg = wx.MessageDialog(self, message, type, wx.OK | wx.ICON_INFORMATION)
     dlg.ShowModal()
     dlg.Destroy()
 
 #---------------------------------------------------------------------------
 
-def main():
-    app = MyApp(0)
-    app.MainLoop()
-
-
-if __name__ == '__main__':
-    main()
-
-
-#---------------------------------------------------------------------------
-
 def runTest(frame, nb, log):
     win = TestPanel(nb, log, frame)
     return win
@@ -710,12 +661,24 @@ def runTest(frame, nb, log):
 
 
 overview = """\
-This control provides a calendar control class for displaying and selecting dates.  In addition, the class is extended and can now be used for printing/previewing.
+This control provides a Calendar control class for displaying and selecting dates.  
+In addition, the class is extended and can be used for printing/previewing.
 
-Additional features include weekend highlighting and business type Monday-Sunday format.
+Additional features include weekend highlighting and business type Monday-Sunday 
+format.
 
-See example for various methods used to set display month, year, and highlighted dates (different font and background colours).
+See example for various methods used to set display month, year, and highlighted 
+dates (different font and background colours).
 
 by Lorne White
 
 """
+
+
+
+
+if __name__ == '__main__':
+    import sys,os
+    import run
+    run.main(['', os.path.basename(sys.argv[0])])
+