1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
'''
Task Coach - Your friendly task manager
Copyright (C) 2014 Task Coach developers <developers@taskcoach.org>
Task Coach is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Task Coach is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
'''
from wxevents import CalendarCanvas, CalendarPrintout, EVT_EVENT_SELECTION_CHANGED, EVT_EVENT_DATES_CHANGED
from taskcoachlib.domain import date
from taskcoachlib.widgets import draganddrop
from taskcoachlib import command, render
import tooltip
import wx, datetime
class HierarchicalCalendar(tooltip.ToolTipMixin, CalendarCanvas):
# Header formats (bitmask)
HDR_WEEKNUMBER = 1
HDR_DATE = 2
# Calendar formats
CAL_WEEKLY = 0
CAL_WORKWEEKLY = 1
CAL_MONTHLY = 2
def __init__(self, parent, tasks, onSelect, onEdit, onCreate, popupMenu, **kwargs):
self.__onDropURLCallback = kwargs.pop('onDropURL', None)
self.__onDropFilesCallback = kwargs.pop('onDropFiles', None)
self.__onDropMailCallback = kwargs.pop('onDropMail', None)
self.__taskList = tasks
self.__onSelect = onSelect
self.__onEdit = onEdit
self.__onCreate = onCreate
self.__popupMenu = popupMenu
self.__calFormat = self.CAL_WEEKLY
self.__hdrFormat = self.HDR_DATE
self.__drawNow = True
self.__adapter = parent
self.getItemTooltipData = parent.getItemTooltipData
super(HierarchicalCalendar, self).__init__(parent, **kwargs)
self.SetCalendarFormat(self.__calFormat) # This calls _Invalidate() so no need to call SetHeaderFormat
self.__tip = tooltip.SimpleToolTip(self)
self.__dropTarget = draganddrop.DropTarget(self.OnDropURL, self.OnDropFiles, self.OnDropMail)
self.SetDropTarget(self.__dropTarget)
EVT_EVENT_SELECTION_CHANGED(self, self._OnSelectionChanged)
EVT_EVENT_DATES_CHANGED(self, self._OnDatesChanged)
wx.EVT_LEFT_DCLICK(self, self._OnLeftDClick)
wx.EVT_RIGHT_UP(self, self._OnRightUp)
def _OnSelectionChanged(self, event):
self.__onSelect()
def _OnDatesChanged(self, event):
if event.start is None or event.end is None:
return
task = event.event
start = date.DateTime.fromDateTime(event.start)
end = date.DateTime.fromDateTime(event.end)
if task.plannedStartDateTime() != start:
command.EditPlannedStartDateTimeCommand(items=[task], newValue=start).do()
if task.dueDateTime() != end:
command.EditDueDateTimeCommand(items=[task],
newValue=end).do()
def _OnLeftDClick(self, event):
hit = self.HitTest(event.GetX(), event.GetY())
if hit.event is None:
self.__onCreate(date.DateTime.fromDateTime(hit.dateTime))
else:
self.__onEdit(hit.event)
def _OnRightUp(self, event):
self.PopupMenu(self.__popupMenu)
def OnBeforeShowToolTip(self, x, y):
hit = self.HitTest(x, y)
if hit is None or hit.event is None:
return None
tooltipData = self.getItemTooltipData(hit.event)
doShow = any(data[1] for data in tooltipData)
if doShow:
self.__tip.SetData(tooltipData)
return self.__tip
else:
return None
def GetMainWindow(self):
return self
def GetItemCount(self):
return len(self._coords)
def RefreshAllItems(self, count):
self._Invalidate()
self.Refresh()
def RefreshItems(self, *items):
self.Refresh()
def curselection(self):
return list(self.Selection())
def clear_selection(self):
self.Select([])
def select(self, items):
self.Select(items)
def select_all(self):
items = list()
for task in self.__taskList:
items.append(task)
items.extend(task.children(recursive=True))
self.select(items)
# Configuration
def SetCalendarFormat(self, fmt):
self.__calFormat = fmt
if self.__calFormat == self.CAL_WORKWEEKLY:
self._start = date.Now().startOfWorkWeek()
self._end = date.Now().endOfWorkWeek()
elif self.__calFormat == self.CAL_WEEKLY:
self._start = date.Now().startOfWeek()
self._end = date.Now().endOfWeek()
elif self.__calFormat == self.CAL_MONTHLY:
self._start = date.Now().startOfMonth()
self._end = date.Now().endOfMonth()
self._Invalidate()
self.Refresh()
def CalendarFormat(self):
return self.__calFormat
def SetHeaderFormat(self, fmt):
self.__hdrFormat = fmt
self._Invalidate()
self.Refresh()
def HeaderFormat(self):
return self.__hdrFormat
def SetDrawNow(self, drawNow):
self.__drawNow = drawNow
self.Refresh()
def DrawNow(self):
return self.__drawNow
def SetTodayColor(self, (r, g, b)):
super(HierarchicalCalendar, self).SetTodayColor(wx.Colour(r, g, b))
def TodayColor(self):
color = super(HierarchicalCalendar, self).TodayColor()
return color.Red(), color.Green(), color.Blue()
# Navigation
def Next(self):
start, end = self.ViewSpan()
if self.__calFormat in [self.CAL_WEEKLY, self.CAL_WORKWEEKLY]:
ts = datetime.timedelta(days=7)
start += ts
end += ts
elif self.__calFormat == self.CAL_MONTHLY:
start = date.DateTime.fromDateTime(start.endOfMonth()).startOfDay() + date.TimeDelta(days=1)
end = start.endOfMonth()
self.SetViewSpan(start, end)
def Prev(self):
start, end = self.ViewSpan()
if self.__calFormat in [self.CAL_WEEKLY, self.CAL_WORKWEEKLY]:
ts = datetime.timedelta(days=7)
start -= ts
end -= ts
elif self.__calFormat == self.CAL_MONTHLY:
start = (date.DateTime.fromDateTime(start) - date.TimeDelta(days=1)).startOfMonth()
end = start.endOfMonth()
self.SetViewSpan(start, end)
def Today(self):
now = date.Now()
if self.__calFormat == self.CAL_WEEKLY:
start = now.startOfWeek()
end = now.endOfWeek()
elif self.__calFormat == self.CAL_WORKWEEKLY:
start = now.startOfWorkWeek()
end = now.endOfWorkWeek()
else:
start = now.startOfMonth()
end = now.endOfMonth()
self.SetViewSpan(start, end)
# Overriden
def FormatDateTime(self, dateTime):
dateTime = date.DateTime.fromDateTime(dateTime)
components = []
if self.__hdrFormat & self.HDR_WEEKNUMBER:
components.append(render.weekNumber(dateTime))
if self.__hdrFormat & self.HDR_DATE:
components.append(render.date(dateTime, humanReadable=True))
return u' - '.join(components)
def _DrawNow(self, gc, h):
if self.__drawNow:
super(HierarchicalCalendar, self)._DrawNow(gc, h)
def GetRootEvents(self):
return self.__adapter.getRootItems()
def GetChildren(self, task):
return self.__adapter.children(task)
def GetStart(self, task):
dt = task.plannedStartDateTime()
return None if dt == date.DateTime() else dt
def GetEnd(self, task):
dt = task.dueDateTime()
return None if dt == date.DateTime() else dt
def GetText(self, task):
return self.__adapter.getItemText(task)
def GetBackgroundColor(self, task):
color = task.backgroundColor(True)
return wx.Colour(*color) if color else wx.WHITE
def GetForegroundColor(self, task):
color = task.foregroundColor(True)
return wx.Colour(*color) if color else wx.BLACK
def GetProgress(self, task):
p = task.percentageComplete(recursive=True)
if p:
return 1.0 * p / 100
return None
def GetIcons(self, task):
icons = [task.icon(recursive=True)]
if task.attachments():
icons.append('paperclip_icon')
if task.notes():
icons.append('note_icon')
return [wx.ArtProvider.GetIcon(name, wx.ART_FRAME_ICON, (16, 16)) for name in icons]
def GetFont(self, task):
return task.font(recursive=True) or wx.NORMAL_FONT
def OnDropURL(self, x, y, url):
self.__Drop(x, y, url, self.__onDropURLCallback)
def OnDropFiles(self, x, y, filenames):
self.__Drop(x, y, filenames, self.__onDropFilesCallback)
def OnDropMail(self, x, y, mail):
self.__Drop(x, y, filenames, self.__onDropMailCallback)
def __Drop(self, x, y, objects, callback):
if callback is not None:
hit = self.HitTest(x, y)
if hit.event is not None:
callback(hit.event, objects)
else:
callback(None, objects,
plannedStartDateTime=date.DateTime.fromDateTime(hit.dateTime).startOfDay(),
dueDateTime=date.DateTime.fromDateTime(hit.dateTime).endOfDay())
def GetPrintout(self, settings):
return CalendarPrintout(self, settings, _('Tasks'))
|