#include "kdganttstyleoptionganttitem.h"
Go to the source code of this file.
Typedefs | |
typedef QStyleOptionViewItem | BASE |
Functions | |
QDebug | operator<< (QDebug dbg, const KDGantt::StyleOptionGanttItem &s) |
QDebug | operator<< (QDebug dbg, KDGantt::StyleOptionGanttItem::Position p) |
typedef QStyleOptionViewItem BASE |
Definition at line 34 of file kdganttstyleoptionganttitem.cpp.
QDebug operator<< | ( | QDebug | dbg, | |
const KDGantt::StyleOptionGanttItem & | s | |||
) |
Definition at line 76 of file kdganttstyleoptionganttitem.cpp.
References KDGantt::StyleOptionGanttItem::boundingRect, KDGantt::StyleOptionGanttItem::displayPosition, KDGantt::StyleOptionGanttItem::grid, KDGantt::StyleOptionGanttItem::itemRect, and KDGantt::StyleOptionGanttItem::text.
00077 { 00078 dbg << "KDGantt::StyleOptionGanttItem[ boundingRect="<<s.boundingRect 00079 <<", itemRect="<<s.itemRect 00080 <<", displayPosition="<<s.displayPosition 00081 <<", grid="<<s.grid 00082 <<", text="<<s.text 00083 <<"]"; 00084 return dbg; 00085 }
QDebug operator<< | ( | QDebug | dbg, | |
KDGantt::StyleOptionGanttItem::Position | p | |||
) |
Definition at line 65 of file kdganttstyleoptionganttitem.cpp.
References KDGantt::StyleOptionGanttItem::Center, KDGantt::StyleOptionGanttItem::Left, and KDGantt::StyleOptionGanttItem::Right.
00066 { 00067 switch( p ) { 00068 case KDGantt::StyleOptionGanttItem::Left: dbg << "KDGantt::StyleOptionGanttItem::Left"; break; 00069 case KDGantt::StyleOptionGanttItem::Right: dbg << "KDGantt::StyleOptionGanttItem::Right"; break; 00070 case KDGantt::StyleOptionGanttItem::Center: dbg << "KDGantt::StyleOptionGanttItem::Center"; break; 00071 default: dbg << static_cast<int>( p ); 00072 } 00073 return dbg; 00074 }