kgantt Library API Documentation

KGantt Module

Version 3.2.2

The kgantt module contains several classes (KGanttItem, KGantt) for drawing and editing gantt-diagramms.

This example shows how to use the gantt module:

  #include "kgantt/KGantt.h"
  
  int main(int args, char* argv[])
  {
       ...

       KGantt* gantt = new KGantt(0, mainwindow);

       KGanttItem* toplevel = gantt->getToplevelItem();

       KGanttItem* t1 = new KGanttItem(toplevel, 
                                       "task 1, no subtasks", 
                                   QDateTime::currentDateTime().addDays(10),
                                       QDateTime::currentDateTime().addDays(20) );

       ...

  }

You just have to create an object of class KGantt and add several objects of class KGanttItem.

KDE Logo
This file is part of the documentation for kgantt Library Version 3.2.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Sat May 1 11:37:42 2004 by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2003