wxReportScheduler.py :  » Project-Management » Task-Coach » TaskCoach-1.0.3 » taskcoachlib » thirdparty » calendar » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Project Management » Task Coach 
Task Coach » TaskCoach 1.0.3 » taskcoachlib » thirdparty » calendar » wxReportScheduler.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from wxSchedulerPrint import *
import calendar
import wx


class wxReportScheduler( wx.Printout ):
  """
  This is a class which demonstrate how to use the in-memory wxSchedulerPrint() 
  object on wxPython printing framework.
  You can control wxScheduler in the same way on GUI.
  For other info on wxPrintOut class and methods check the wxPython 
  documentation (RTFM for nerds ;-) ).
  """
  def __init__( self, format, style, drawerClass, day, schedules ):
    self._format  = format
    self._style = style
    self._drawerClass = drawerClass
    self._day    = day
    self._schedules  = schedules
    self.pages    = 1
    
    wx.Printout.__init__( self )
      
  def _GetScheduler( self, dc, day ):
    """
    Return an in-memory wxSchedulerPrint() object for adding 
    schedules and print on current wxDC
    """
    scheduler = wxSchedulerPrint( dc )
    scheduler.SetViewType( self._format )
    scheduler.SetStyle( self._style )
    scheduler.SetDrawer( self._drawerClass )
    scheduler.SetDate( day )
    
    return scheduler

  def OnPrintPage( self, page ):
    """
    This code draw a wxScheduler scaled to fit page using date, format and 
    schedules passed by the user.
    Note there is no difference on manage scheduler and schedules beetwen 
    GUI and printing framework
    """
    dc = self.GetDC()
    scheduler = self._GetScheduler( dc, self._day )
    
    for schedule in self._schedules:
      scheduler.Add( schedule )

    size = scheduler.GetViewSize()
    self.FitThisSizeToPage(size)

    scheduler.Draw()
    
    return True

  def HasPage( self, page ):
    return page <= self.pages

  def GetPageInfo( self ):
    return ( 1, self.pages, 1, 1 )
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.