1 #----------------------------------------------------------------------------
3 # Purpose: Calendar control display testing on panel for wxPython demo
5 # Author: Lorne White (email: lwhite1@planet.eon.net)
9 # Licence: wxWindows license
10 #----------------------------------------------------------------------------
12 from wxPython
.wx
import *
13 from wxPython
.lib
.calendar
import wxCalendar
, Month
, PrtCalDraw
, CalenDlg
16 dir_path
= os
.getcwd()
19 # highlighted days in month
32 11: [6, 9, 12, 28, 29],
33 12: [8, 9, 10, 11, 20] }
35 # test of full window calendar control functions
42 monthlist
.append(name
)
45 class TestPanel(wxPanel
):
46 def __init__(self
, parent
, log
, frame
):
47 wxPanel
.__init
__(self
, parent
, -1)
52 self
.calend
= wxCalendar(self
, -1, wxPoint(100, 50), wxSize(200, 180))
54 # start_month = 2 # preselect the date for calendar
57 start_month
= self
.calend
.GetMonth() # get the current month & year
58 start_year
= self
.calend
.GetYear()
60 # month list from DateTime module
62 monthlist
= GetMonthList()
65 self
.date
= wxComboBox(self
, mID
, Month
[start_month
], wxPoint(100, 20), wxSize(90, -1), monthlist
, wxCB_DROPDOWN
)
66 EVT_COMBOBOX(self
, mID
, self
.EvtComboBox
)
68 # set start month and year
70 self
.calend
.SetMonth(start_month
)
71 self
.calend
.SetYear(start_year
)
73 # set attributes of calendar
75 self
.calend
.hide_title
= TRUE
76 self
.calend
.HideGrid()
77 self
.calend
.SetWeekColor('WHITE', 'BLACK')
85 self
.Connect(self
.calend
.GetId(), -1, 2100, self
.MouseClick
)
87 # scroll bar for month selection
90 self
.scroll
= wxScrollBar(self
, mID
, wxPoint(100, 240), wxSize(200, 20), wxSB_HORIZONTAL
)
91 self
.scroll
.SetScrollbar(start_month
-1, 1, 12, 1, TRUE
)
92 EVT_COMMAND_SCROLL(self
, mID
, self
.Scroll
)
94 # spin control for year selection
96 self
.dtext
= wxTextCtrl(self
, -1, str(start_year
), wxPoint(200, 20), wxSize(60, -1))
97 h
= self
.dtext
.GetSize().height
100 self
.spin
= wxSpinButton(self
, mID
, wxPoint(270, 20), wxSize(h
*2, h
))
101 self
.spin
.SetRange(1980, 2010)
102 self
.spin
.SetValue(start_year
)
103 EVT_SPIN(self
, mID
, self
.OnSpin
)
105 # button for calendar dialog test
107 wxStaticText(self
, -1, "Test Calendar Dialog", wxPoint(350, 50), wxSize(150, -1))
110 bmp
= wxBitmap('bitmaps/Calend.bmp', wxBITMAP_TYPE_BMP
)
111 self
.but
= wxBitmapButton(self
, mID
, bmp
, wxPoint(380, 80))#, wxSize(30, 30))
112 EVT_BUTTON(self
, mID
, self
.TestDlg
)
114 # button for calendar window test
116 wxStaticText(self
, -1, "Test Calendar Window", wxPoint(350, 150), wxSize(150, -1))
119 bmp
= wxBitmap('bitmaps/Calend.bmp', wxBITMAP_TYPE_BMP
)
120 self
.but
= wxBitmapButton(self
, mID
, bmp
, wxPoint(380, 180))#, wxSize(30, 30))
121 EVT_BUTTON(self
, mID
, self
.TestFrame
)
123 wxStaticText(self
, -1, "Test Calendar Print", wxPoint(350, 250), wxSize(150, -1))
126 bmp
= wxBitmap('bitmaps/Calend.bmp', wxBITMAP_TYPE_BMP
)
127 self
.but
= wxBitmapButton(self
, mID
, bmp
, wxPoint(380, 280))#, wxSize(30, 30))
128 EVT_BUTTON(self
, mID
, self
.OnPreview
)
132 def TestDlg(self
, event
): # test the date dialog
135 if dlg
.ShowModal() == wxID_OK
:
140 new_date
= str(month
) + '/'+ str(day
) + '/'+ str(year
)
141 self
.log
.WriteText('Date Selected: %s\n' % new_date
)
143 self
.log
.WriteText('No Date Selected')
145 # calendar window test
147 def TestFrame(self
, event
):
148 frame
= CalendFrame(self
, -1, "Test Calendar", self
.log
)
152 # calendar print preview
154 def OnPreview(self
, event
):
155 month
= self
.calend
.GetMonth()
156 year
= self
.calend
.GetYear()
158 prt
= PrintCalend(self
.frame
, month
, year
)
161 # month and year control events
163 def OnSpin(self
, event
):
164 year
= event
.GetPosition()
165 self
.dtext
.SetValue(str(year
))
166 self
.calend
.SetYear(year
)
167 self
.calend
.Refresh()
169 def EvtComboBox(self
, event
):
170 name
= event
.GetString()
171 self
.log
.WriteText('EvtComboBox: %s\n' % name
)
172 monthval
= self
.date
.FindString(name
)
173 self
.scroll
.SetScrollbar(monthval
, 1, 12, 1, TRUE
)
175 self
.calend
.SetMonth(monthval
+1)
178 def Scroll(self
, event
):
179 value
= self
.scroll
.GetThumbPosition()
180 monthval
= int(value
)+1
181 self
.calend
.SetMonth(monthval
)
183 self
.log
.WriteText('Month: %s\n' % value
)
185 name
= Month
[monthval
]
186 self
.date
.SetValue(name
)
190 def MouseClick(self
, evt
):
191 text
= '%s CLICK %02d/%02d/%d' % (evt
.click
, evt
.day
, evt
.month
, evt
.year
) # format date
192 self
.log
.WriteText('Date Selected: ' + text
+ '\n')
195 # set the highlighted days for the calendar
197 def ResetDisplay(self
):
198 month
= self
.calend
.GetMonth()
200 set_days
= test_days
[month
]
202 set_days
= [1, 5, 12]
204 self
.calend
.AddSelect([4, 11], 'BLUE', 'WHITE')
205 self
.calend
.SetSelDay(set_days
)
206 self
.calend
.Refresh()
208 # increment and decrement toolbar controls
210 def OnIncYear(self
, event
):
211 self
.calend
.IncYear()
214 def OnDecYear(self
, event
):
215 self
.calend
.DecYear()
218 def OnIncMonth(self
, event
):
219 self
.calend
.IncMonth()
222 def OnDecMonth(self
, event
):
223 self
.calend
.DecMonth()
226 def OnCurrent(self
, event
):
227 self
.calend
.SetCurrentDay()
230 # test of full window calendar control functions
232 class CalendFrame(wxFrame
):
233 def __init__(self
, parent
, id, title
, log
):
234 wxFrame
.__init
__(self
, parent
, id, title
, wxPyDefaultPosition
, wxSize(400, 400))
235 EVT_CLOSE(self
, self
.OnCloseWindow
)
238 self
.CreateStatusBar()
239 self
.mainmenu
= wxMenuBar()
242 menu
= self
.MakeFileMenu()
243 self
.mainmenu
.Append(menu
, '&File')
245 self
.MakeToolMenu() # toolbar
247 self
.SetMenuBar(self
.mainmenu
)
248 self
.calend
= wxCalendar(self
, -1)
249 self
.calend
.SetCurrentDay()
250 self
.calend
.grid_color
= 'BLUE'
251 self
.calend
.SetBusType()
252 # self.calend.ShowWeekEnd()
256 self
.Connect(self
.calend
.GetId(), -1, 2100, self
.MouseClick
)
258 def MouseClick(self
, evt
):
259 text
= '%s CLICK %02d/%02d/%d' % (evt
.click
, evt
.day
, evt
.month
, evt
.year
) # format date
260 self
.log
.WriteText('Date Selected: ' + text
+ '\n')
262 def OnCloseWindow(self
, event
):
265 def ResetDisplay(self
):
266 month
= self
.calend
.GetMonth()
268 set_days
= test_days
[month
]
270 set_days
= [1, 5, 12]
272 self
.calend
.AddSelect([2, 16], 'GREEN', 'WHITE')
274 self
.calend
.SetSelDay(set_days
)
275 self
.calend
.Refresh()
277 def OnIncYear(self
, event
):
278 self
.calend
.IncYear()
281 def OnDecYear(self
, event
):
282 self
.calend
.DecYear()
285 def OnIncMonth(self
, event
):
286 self
.calend
.IncMonth()
289 def OnDecMonth(self
, event
):
290 self
.calend
.DecMonth()
293 def OnCurrent(self
, event
):
294 self
.calend
.SetCurrentDay()
297 def MakeFileMenu(self
):
301 menu
.Append(mID
, 'Decrement', 'Next')
302 EVT_MENU(self
, mID
, self
.OnDecMonth
)
305 menu
.Append(mID
, 'Increment', 'Dec')
306 EVT_MENU(self
, mID
, self
.OnIncMonth
)
308 menu
.AppendSeparator()
311 menu
.Append(mID
, 'E&xit', 'Exit')
312 EVT_MENU(self
, mID
, self
.OnCloseWindow
)
316 def MakeToolMenu(self
):
317 tb
= self
.CreateToolBar(wxTB_HORIZONTAL|wxNO_BORDER
)
319 bmp_path
= 'bitmaps/'
322 SetToolPath(self
, tb
, mID
, bmp_path
+ 'DbDec.bmp', 'Dec Year')
323 EVT_TOOL(self
, mID
, self
.OnDecYear
)
326 SetToolPath(self
, tb
, mID
, bmp_path
+ 'Dec.bmp', 'Dec Month')
327 EVT_TOOL(self
, mID
, self
.OnDecMonth
)
330 SetToolPath(self
, tb
, mID
, bmp_path
+ 'Pt.bmp', 'Current Month')
331 EVT_TOOL(self
, mID
, self
.OnCurrent
)
334 SetToolPath(self
, tb
, mID
, bmp_path
+ 'Inc.bmp', 'Inc Month')
335 EVT_TOOL(self
, mID
, self
.OnIncMonth
)
338 SetToolPath(self
, tb
, mID
, bmp_path
+ 'DbInc.bmp', 'Inc Year')
339 EVT_TOOL(self
, mID
, self
.OnIncYear
)
343 #---------------------------------------------------------------------------
345 # example class for printing/previewing calendars
348 def __init__(self
, parent
, month
, year
):
355 self
.printData
= wxPrintData()
358 self
.grid_color
= 'BLUE'
359 self
.back_color
= 'WHITE'
360 self
.sel_color
= 'RED'
361 self
.high_color
= 'LIGHT BLUE'
365 self
.sel_key
= None # last used by
366 self
.sel_lst
= [] # highlighted selected days
369 self
.hide_title
= FALSE
370 self
.hide_grid
= FALSE
391 def SetDates(self
, month
, year
):
395 def SetStyleDef(self
, desc
):
398 def SetCopies(self
, copies
): # number of copies of label
401 def SetStart(self
, start
): # start position of label
405 printout
= SetPrintout(self
)
406 printout2
= SetPrintout(self
)
407 self
.preview
= wxPrintPreview(printout
, printout2
, self
.printData
)
408 if not self
.preview
.Ok():
409 wxMessageBox("There was a problem printing!", "Printing", wxOK
)
412 self
.preview
.SetZoom(60) # initial zoom value
414 frame
= wxPreviewFrame(self
.preview
, self
.frame
, "Print preview")
417 frame
.SetPosition(self
.frame
.GetPosition())
418 frame
.SetSize(self
.frame
.GetSize())
422 pdd
= wxPrintDialogData()
423 pdd
.SetPrintData(self
.printData
)
424 printer
= wxPrinter(pdd
)
425 printout
= SetPrintout(self
)
426 frame
= wxFrame(NULL
, -1, "Test")
427 if not printer
.Print(frame
, printout
):
428 wxMessageBox("There was a problem printing.\nPerhaps your current printer is not set correctly?", "Printing", wxOK
)
430 self
.printData
= printer
.GetPrintDialogData().GetPrintData()
433 def DoDrawing(self
, DC
):
434 size
= DC
.GetSizeTuple()
437 cal
= PrtCalDraw(self
)
439 if self
.preview
is None:
440 cal
.SetPSize(size
[0]/self
.pagew
, size
[1]/self
.pageh
)
441 cal
.SetPreview(FALSE
)
444 if self
.preview
== 1:
445 cal
.SetPSize(size
[0]/self
.pagew
, size
[1]/self
.pageh
)
447 cal
.SetPSize(self
.pwidth
, self
.pheight
)
449 cal
.SetPreview(self
.preview
)
451 cal
.hide_title
= self
.hide_title
# set the calendar parameters
452 cal
.hide_grid
= self
.hide_grid
454 cal
.grid_color
= self
.grid_color
455 cal
.high_color
= self
.high_color
456 cal
.back_color
= self
.back_color
457 cal
.outer_border
= FALSE
461 cal_size
= wxSize(3.0, 3.0)
462 cal
.SetSize(cal_size
)
464 year
, month
= self
.year
, self
.month
470 cal
.SetCal(year
, month
) # current month
474 set_days
= test_days
[month
]
476 set_days
= [1, 5, 12]
478 cal
.AddSelect([2, 16], 'GREEN', 'WHITE')
480 cal
.DrawCal(DC
, set_days
)
482 year
, month
= self
.IncMonth(year
, month
)
484 x
= x
+ 4.0 # next colum
488 self
.ymax
= DC
.MaxY()
489 self
.xmax
= DC
.MaxX()
491 def IncMonth(self
, year
, month
): # next month
499 def GetTotalPages(self
):
503 def SetPage(self
, page
):
506 def SetPageSize(self
, width
, height
):
507 self
.pwidth
, self
.pheight
= width
, height
509 def SetTotalSize(self
, width
, height
):
510 self
.ptwidth
, self
.ptheight
= width
, height
512 def SetPreview(self
, preview
, scale
):
513 self
.preview
= preview
516 def SetTotalSize(self
, width
, height
):
518 self
.ptheight
= height
520 def SetToolPath(self
, tb
, id, bmp
, title
):
522 tb
.AddSimpleTool(id, wxBitmap(os
.path
.join(dir_path
, bmp
), wxBITMAP_TYPE_BMP
),
525 class SetPrintout(wxPrintout
):
526 def __init__(self
, canvas
):
527 wxPrintout
.__init
__(self
)
531 def OnBeginDocument(self
, start
, end
):
532 return self
.base_OnBeginDocument(start
, end
)
534 def OnEndDocument(self
):
535 self
.base_OnEndDocument()
537 def HasPage(self
, page
):
538 if page
<= self
.end_pg
:
543 def GetPageInfo(self
):
544 self
.end_pg
= self
.canvas
.GetTotalPages()
550 return (str_pg
, end_pg
, str_pg
, end_pg
)
552 def OnPreparePrinting(self
):
553 self
.base_OnPreparePrinting()
555 def OnBeginPrinting(self
):
558 self
.preview
= self
.IsPreview()
560 self
.pixelsPerInch
= self
.GetPPIScreen()
562 self
.pixelsPerInch
= self
.GetPPIPrinter()
564 (w
, h
) = dc
.GetSizeTuple()
565 scaleX
= float(w
) / 1000
566 scaleY
= float(h
) / 1000
567 self
.printUserScale
= min(scaleX
, scaleY
)
569 self
.base_OnBeginPrinting()
572 self
.psizew
, self
.psizeh
= self
.GetPPIPrinter()
573 return self
.psizew
, self
.psizeh
575 def GetTotalSize(self
):
576 self
.ptsizew
, self
.ptsizeh
= self
.GetPageSizePixels()
577 return self
.ptsizew
, self
.ptsizeh
579 def OnPrintPage(self
, page
):
581 (w
, h
) = dc
.GetSizeTuple()
582 scaleX
= float(w
) / 1000
583 scaleY
= float(h
) / 1000
584 self
.printUserScale
= min(scaleX
, scaleY
)
585 dc
.SetUserScale(self
.printUserScale
, self
.printUserScale
)
587 self
.preview
= self
.IsPreview()
589 self
.canvas
.SetPreview(self
.preview
, self
.printUserScale
)
590 self
.canvas
.SetPage(page
)
592 self
.ptsizew
, self
.ptsizeh
= self
.GetPageSizePixels()
593 self
.canvas
.SetTotalSize(self
.ptsizew
, self
.ptsizeh
)
595 self
.psizew
, self
.psizeh
= self
.GetPPIPrinter()
596 self
.canvas
.SetPageSize(self
.psizew
, self
.psizeh
)
598 self
.canvas
.DoDrawing(dc
)
603 frame
= CalendFrame(NULL
, -1, "Test Calendar")
605 self
.SetTopWindow(frame
)
608 #---------------------------------------------------------------------------
610 def MessageDlg(self
, message
, type = 'Message'):
611 dlg
= wxMessageDialog(self
, message
, type, wxOK | wxICON_INFORMATION
)
615 #---------------------------------------------------------------------------
622 if __name__
== '__main__':
626 #---------------------------------------------------------------------------
628 def runTest(frame
, nb
, log
):
629 win
= TestPanel(nb
, log
, frame
)
632 #---------------------------------------------------------------------------
636 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.
638 Additional features include weekend highlighting and business type Monday-Sunday format.
640 See example for various methods used to set display month, year, and highlighted dates (different font and background colours).