from wxPython.wx import *
from CDate import *
-import string, time
CalDays = [6, 0, 1, 2, 3, 4, 5]
self.DefParms()
def DefParms(self):
- self.num_auto = TRUE # auto scale of the cal number day size
+ self.num_auto = True # auto scale of the cal number day size
self.num_size = 12 # default size of calendar if no auto size
self.max_num_size = 12 # maximum size for calendar number
self.num_indent_horz = 0 # points indent from position, used to offset if not centered
self.num_indent_vert = 0
- self.week_auto = TRUE # auto scale of week font text
+ self.week_auto = True # auto scale of week font text
self.week_size = 10
self.max_week_size = 12
self.font = wxSWISS
self.bold = wxNORMAL
- self.hide_title = FALSE
- self.hide_grid = FALSE
- self.outer_border = TRUE
+ self.hide_title = False
+ self.hide_grid = False
+ self.outer_border = True
self.title_offset = 0
self.cal_week_scale = 0.7
- self.show_weekend = FALSE
+ self.show_weekend = False
self.cal_type = "NORMAL"
def SetWeekColor(self, font_color, week_color): # set font and background color for week title
self.InitScale()
self.DrawBorder()
- if self.hide_title is FALSE:
+ if self.hide_title is False:
self.DrawMonth()
self.Center()
self.DrawGrid()
self.GetRect()
- if self.show_weekend is TRUE: # highlight weekend dates
+ if self.show_weekend is True: # highlight weekend dates
self.SetWeekEnd()
self.AddSelect(sel_lst) # overrides the weekend highlight
self.DC.SetBrush(brush)
self.DC.SetPen(wxPen(wxNamedColour(self.border_color), 1))
- if self.outer_border is TRUE:
+ if self.outer_border is True:
rect = wxRect(self.cx_st, self.cy_st, self.sizew, self.sizeh) # full display window area
self.DC.DrawRectangle(rect.x, rect.y, rect.width, rect.height)
rect_w = self.gridx[7]-self.gridx[0]
f = wxFont(10, self.font, wxNORMAL, self.bold) # initial font setting
- if self.week_auto == TRUE:
+ if self.week_auto == True:
test_size = self.max_week_size # max size
test_day = ' Sun '
while test_size > 2:
def DrawNum(self): # draw the day numbers
f = wxFont(10, self.font, wxNORMAL, self.bold) # initial font setting
- if self.num_auto == TRUE:
+ if self.num_auto == True:
test_size = self.max_num_size # max size
test_day = ' 99 '
while test_size > 2:
brush = wxBrush(wxNamedColour(sel_color), wxSOLID)
self.DC.SetBrush(brush)
- if self.hide_grid is FALSE:
+ if self.hide_grid is False:
self.DC.SetPen(wxPen(wxNamedColour(self.grid_color), 0))
else:
self.DC.SetPen(wxPen(wxNamedColour(self.back_color), 0))
y2 = y1 + self.cheight
for i in range(8):
- if self.hide_grid is FALSE:
+ if self.hide_grid is False:
self.DC.DrawLine(x1, y1, x1, y2)
self.gridx.append(x1)
x1 = x1 + self.dl_w
x2 = x1 + self.cwidth
for i in range(8):
- if self.hide_grid is FALSE:
+ if self.hide_grid is False:
self.DC.DrawLine(x1, y1, x2, y1)
self.gridy.append(y1)
if i == 0:
self.grid_color = 'BLACK'
self.back_color = 'WHITE'
- self.hide_grid = FALSE
+ self.hide_grid = False
self.sel_color = 'RED'
- self.hide_title = FALSE
- self.show_weekend = FALSE
+ self.hide_title = False
+ self.show_weekend = False
self.cal_type = "NORMAL"
self.week_color = 'LIGHT GREY'
self.set_day = None
EVT_PAINT(self, self.OnPaint)
-
+ EVT_SIZE(self, self.OnSize)
# control some of the main calendar attributes
def HideTitle(self):
- self.hide_title = TRUE
+ self.hide_title = True
def HideGrid(self):
- self.hide_grid = TRUE
+ self.hide_grid = True
# determine the calendar rectangle click area and draw a selection
self.select_list.append(list_val)
def ShowWeekEnd(self):
- self.show_weekend = TRUE # highlight weekend
+ self.show_weekend = True # highlight weekend
def SetBusType(self):
self.cal_type = "BUS"
+ def OnSize(self, evt):
+ self.Refresh(False)
+ evt.Skip()
+
def OnPaint(self, event):
DC = wxPaintDC(self)
self.DoDrawing(DC)
def SelectDay(self, key):
sel_size = 1
self.DrawRect(self.sel_key, self.back_color, sel_size) # clear large selection
- if self.hide_grid is FALSE:
+ if self.hide_grid is False:
self.DrawRect(self.sel_key, self.grid_color)
self.DrawRect(key, self.sel_color, sel_size)
monthlist = GetMonthList()
# select the month
- mID = NewId()
+ mID = wxNewId()
self.date = wxComboBox(self, mID, Month[start_month], wxPoint(20, 20), wxSize(90, -1), monthlist, wxCB_DROPDOWN)
EVT_COMBOBOX(self, mID, self.EvtComboBox)
# alternate spin button to control the month
- mID = NewId()
+ mID = wxNewId()
h = self.date.GetSize().height
self.m_spin = wxSpinButton(self, mID, wxPoint(130, 20), wxSize(h*2, h), wxSP_VERTICAL)
self.m_spin.SetRange(1, 12)
EVT_SPIN(self, mID, self.OnMonthSpin)
# spin button to control the year
- mID = NewId()
+ mID = wxNewId()
self.dtext = wxTextCtrl(self, -1, str(start_year), wxPoint(160, 20), wxSize(60, -1))
h = self.dtext.GetSize().height
y_pos = 280
but_size = wxSize(60, 25)
- mID = NewId()
+ mID = wxNewId()
wxButton(self, mID, ' Ok ', wxPoint(x_pos, y_pos), but_size)
EVT_BUTTON(self, mID, self.OnOk)
- mID = NewId()
+ mID = wxNewId()
wxButton(self, mID, ' Close ', wxPoint(x_pos + 120, y_pos), but_size)
EVT_BUTTON(self, mID, self.OnCancel)