~smartboyhw/ubuntu/raring/calligra/2.6.0-0ubuntu1

« back to all changes in this revision

Viewing changes to plan/libs/kernel/kpttask.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2012-10-23 21:09:16 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20121023210916-m82w6zxnxhaxz7va
Tags: 1:2.5.90-0ubuntu1
* New upstream alpha release (LP: #1070436)
  - Add libkactivities-dev and libopenimageio-dev to build-depends
  - Add kubuntu_build_calligraactive.diff to build calligraactive by default
  - Add package for calligraauthor and move files that are shared between
    calligrawords and calligraauthor to calligrawords-common
* Document the patches
* Remove numbers from patches so they follow the same naming scheme as
  the rest of our patches.
* calligra-data breaks replaces krita-data (<< 1:2.5.3) (LP: #1071686)

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
    UsedEffort *usedEffort( const Resource *r ) const { return m_usedEffort.value( const_cast<Resource*>( r ) ); }
215
215
    const ResourceUsedEffortMap &usedEffortMap() const { return m_usedEffort; }
216
216
    
217
 
    void changed();
 
217
    void changed( int propert = -1 );
218
218
    Node *node() const { return m_node; }
219
219
    void setNode( Node *node ) { m_node = node; }
220
220
    
459
459
    /// Returns the cost planned to be used to reach the actual percent finished
460
460
    virtual double budgetedCostPerformed( const QDate &date, long id = CURRENTSCHEDULE ) const;
461
461
 
 
462
    using Node::bcwsPrDay;
462
463
    /// Return map of Budgeted Cost of Work Scheduled pr day
463
 
    virtual EffortCostMap bcwsPrDay( long id = CURRENTSCHEDULE, EffortCostCalculationType type = ECCT_All ) const;
 
464
    virtual EffortCostMap bcwsPrDay( long id = CURRENTSCHEDULE, EffortCostCalculationType type = ECCT_All );
464
465
    
465
466
    /// Budgeted Cost of Work Scheduled
466
467
    virtual double bcws( const QDate &date, long id = CURRENTSCHEDULE ) const;
467
468
 
 
469
    using Node::bcwpPrDay;
468
470
    /// Return map of Budgeted Cost of Work Performed pr day (also includes bcwsPrDay)
469
 
    virtual EffortCostMap bcwpPrDay( long id = CURRENTSCHEDULE, EffortCostCalculationType type = ECCT_All ) const;
 
471
    virtual EffortCostMap bcwpPrDay( long id = CURRENTSCHEDULE, EffortCostCalculationType type = ECCT_All );
470
472
    /// Budgeted Cost of Work Performed
471
473
    virtual double bcwp( long id = CURRENTSCHEDULE ) const;
472
474
    /// Budgeted Cost of Work Performed ( up to @p date )
473
475
    virtual double bcwp( const QDate &date, long id = CURRENTSCHEDULE ) const;
474
476
 
 
477
    using Node::acwp;
475
478
    /// Map of Actual Cost of Work Performed
476
 
    virtual EffortCostMap acwp( long id = CURRENTSCHEDULE, EffortCostCalculationType type = ECCT_All ) const;
 
479
    virtual EffortCostMap acwp( long id = CURRENTSCHEDULE, EffortCostCalculationType type = ECCT_All );
477
480
    /// Actual Cost of Work Performed up to dat
478
481
    virtual EffortCost acwp( const QDate &date, long id = CURRENTSCHEDULE ) const;
479
482