• Skip to content
  • Skip to link menu
KDE 4.2 API Reference
  • KDE API Reference
  • kdepim
  • Sitemap
  • Contact Us
 

kdgantt1

KDGanttXML Namespace Reference


Functions

QString brushStyleToString (Qt::BrushStyle style)
void createBoolNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, bool value)
void createBrushNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QBrush &brush)
void createColorNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QColor &color)
void createDateNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QDate &date)
void createDateTimeNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QDateTime &datetime)
void createDoubleNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, double value)
void createFontNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QFont &font)
void createIntNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, int value)
void createPenNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QPen &pen)
void createPixmapNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QPixmap &pixmap, int id)
void createRectNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QRect &rect)
void createSizeNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QSize &value)
void createStringListNodes (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QStringList *list)
void createStringNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QString &text)
void createTimeNode (QDomDocument &doc, QDomNode &parent, const QString &elementName, const QTime &time)
QString penStyleToString (Qt::PenStyle style)
bool readBoolNode (const QDomElement &element, bool &value)
bool readBrushNode (const QDomElement &element, QBrush &brush)
bool readColorNode (const QDomElement &element, QColor &value)
bool readDateNode (const QDomElement &element, QDate &value)
bool readDateTimeNode (const QDomElement &element, QDateTime &datetime)
bool readDoubleNode (const QDomElement &element, double &value)
bool readFontNode (const QDomElement &element, QFont &font)
bool readIntNode (const QDomElement &element, int &value)
bool readPenNode (const QDomElement &element, QPen &pen)
bool readPixmapNode (const QDomElement &element, QPixmap &pixmap)
bool readRectNode (const QDomElement &element, QRect &value)
bool readStringNode (const QDomElement &element, QString &value)
bool readTimeNode (const QDomElement &element, QTime &value)
Qt::BrushStyle stringToBrushStyle (const QString &style)
Qt::PenStyle stringToPenStyle (const QString &style)

Function Documentation

QString KDGanttXML::brushStyleToString ( Qt::BrushStyle  style  ) 

Definition at line 300 of file KDGanttXMLTools.cpp.

void KDGanttXML::createBoolNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
bool  value 
)

Definition at line 41 of file KDGanttXMLTools.cpp.

void KDGanttXML::createBrushNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QBrush &  brush 
)

Definition at line 116 of file KDGanttXMLTools.cpp.

void KDGanttXML::createColorNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QColor &  color 
)

Definition at line 102 of file KDGanttXMLTools.cpp.

void KDGanttXML::createDateNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QDate &  date 
)

Definition at line 251 of file KDGanttXMLTools.cpp.

void KDGanttXML::createDateTimeNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QDateTime &  datetime 
)

Definition at line 240 of file KDGanttXMLTools.cpp.

void KDGanttXML::createDoubleNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
double  value 
)

Definition at line 77 of file KDGanttXMLTools.cpp.

void KDGanttXML::createFontNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QFont &  font 
)

Definition at line 212 of file KDGanttXMLTools.cpp.

void KDGanttXML::createIntNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
int  value 
)

Definition at line 65 of file KDGanttXMLTools.cpp.

void KDGanttXML::createPenNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QPen &  pen 
)

Definition at line 229 of file KDGanttXMLTools.cpp.

void KDGanttXML::createPixmapNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QPixmap &  pixmap,
int  id 
)

Definition at line 130 of file KDGanttXMLTools.cpp.

void KDGanttXML::createRectNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QRect &  rect 
)

Definition at line 171 of file KDGanttXMLTools.cpp.

void KDGanttXML::createSizeNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QSize &  value 
)

Definition at line 54 of file KDGanttXMLTools.cpp.

void KDGanttXML::createStringListNodes ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QStringList *  list 
)

Definition at line 195 of file KDGanttXMLTools.cpp.

void KDGanttXML::createStringNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QString &  text 
)

Definition at line 89 of file KDGanttXMLTools.cpp.

void KDGanttXML::createTimeNode ( QDomDocument &  doc,
QDomNode &  parent,
const QString &  elementName,
const QTime &  time 
)

Definition at line 262 of file KDGanttXMLTools.cpp.

QString KDGanttXML::penStyleToString ( Qt::PenStyle  style  ) 

Definition at line 278 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readBoolNode ( const QDomElement &  element,
bool &  value 
)

Definition at line 367 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readBrushNode ( const QDomElement &  element,
QBrush &  brush 
)

Definition at line 407 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readColorNode ( const QDomElement &  element,
QColor &  value 
)

Definition at line 380 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readDateNode ( const QDomElement &  element,
QDate &  value 
)

Definition at line 663 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readDateTimeNode ( const QDomElement &  element,
QDateTime &  datetime 
)

Definition at line 633 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readDoubleNode ( const QDomElement &  element,
double &  value 
)

Definition at line 357 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readFontNode ( const QDomElement &  element,
QFont &  font 
)

Definition at line 551 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readIntNode ( const QDomElement &  element,
int &  value 
)

Definition at line 347 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readPenNode ( const QDomElement &  element,
QPen &  pen 
)

Definition at line 516 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readPixmapNode ( const QDomElement &  element,
QPixmap &  pixmap 
)

Definition at line 444 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readRectNode ( const QDomElement &  element,
QRect &  value 
)

Definition at line 597 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readStringNode ( const QDomElement &  element,
QString &  value 
)

Definition at line 340 of file KDGanttXMLTools.cpp.

bool KDGanttXML::readTimeNode ( const QDomElement &  element,
QTime &  value 
)

Definition at line 688 of file KDGanttXMLTools.cpp.

Qt::BrushStyle KDGanttXML::stringToBrushStyle ( const QString &  style  ) 

Definition at line 737 of file KDGanttXMLTools.cpp.

Qt::PenStyle KDGanttXML::stringToPenStyle ( const QString &  style  ) 

Definition at line 718 of file KDGanttXMLTools.cpp.

kdgantt1

Skip menu "kdgantt1"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

kdepim

Skip menu "kdepim"
  • akonadi
  •   clients
  •   kabc
  •   kcal
  •   kcm
  • akregator
  • console
  •   kabcclient
  •   konsolekalendar
  • kaddressbook
  • kalarm
  •   lib
  • kdgantt
  • kdgantt1
  • kjots
  • kleopatra
  • kmail
  • kmobiletools
  • knode
  • knotes
  • kontact
  • kontactinterfaces
  • korganizer
  •   korgac
  • kpilot
  • ktimetracker
  •   doc
  • libkdepim
  • libkholidays
  • libkleo
  • libkpgp
  • maildir
Generated for kdepim by doxygen 1.5.4
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal