kgantt Library API Documentation

KGantt Module
gantt.png

Version 3.1.5

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 kdelibs Version 3.1.5.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Sun Feb 15 11:40:15 2004 by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2001