~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to kplato/libs/ui/kptdependencyeditor.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-09-21 15:36:35 UTC
  • mfrom: (1.4.1 upstream) (60.2.11 maverick)
  • Revision ID: james.westby@ubuntu.com-20100921153635-6tejqkiro2u21ydi
Tags: 1:2.2.2-0ubuntu3
Add kubuntu_03_fix-crash-on-closing-sqlite-connection-2.2.2.diff and
kubuntu_04_support-large-memo-values-for-msaccess-2.2.2.diff as
recommended by upstream http://kexi-
project.org/wiki/wikiview/index.php@Kexi2.2_Patches.html#sqlite_stab
ility

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    int documentLastPage() const;
66
66
    void printPage( int page, QPainter &painter );
67
67
    
 
68
    QList<QWidget*> createOptionWidgets() const;
 
69
 
68
70
private:
69
71
    DependencyView *m_depview;
70
72
};
494
496
    void addTask();
495
497
    void addMilestone();
496
498
    void addSubtask();
 
499
    void addSubMilestone();
497
500
    void deleteTaskList( QList<Node*> );
498
501
 
499
502
    void addRelation( Node*, Node*, int );
521
524
    void slotAddTask();
522
525
    void slotAddSubtask();
523
526
    void slotAddMilestone();
 
527
    void slotAddSubMilestone();
524
528
    void slotDeleteTask();
525
529
 
526
530
private:
532
536
    Relation *m_currentrelation;
533
537
    ScheduleManager *m_manager;
534
538
 
 
539
    KActionMenu *menuAddTask;
 
540
    KActionMenu *menuAddSubTask;
535
541
    KAction *actionAddTask;
536
542
    KAction *actionAddMilestone;
537
543
    KAction *actionAddSubtask;
 
544
    KAction *actionAddSubMilestone;
538
545
    KAction *actionDeleteTask;
539
546
};
540
547