#include <QItemDelegate>
#include <QBrush>
#include <QPen>
#include <QDebug>
#include "../kdchart_export.h"
#include "kdganttglobal.h"


Go to the source code of this file.
Namespaces | |
| namespace | KDGantt |
Classes | |
| class | KDGantt::ItemDelegate |
| Class used to render gantt items in a KDGantt::GraphicsView. More... | |
Functions | |
| QDebug | operator<< (QDebug dbg, KDGantt::ItemDelegate::InteractionState) |
| QDebug operator<< | ( | QDebug | dbg, | |
| KDGantt::ItemDelegate::InteractionState | ||||
| ) |
Definition at line 43 of file kdganttitemdelegate.cpp.
References PRINT_INTERACTIONSTATE, KDGantt::ItemDelegate::State_ExtendLeft, KDGantt::ItemDelegate::State_ExtendRight, KDGantt::ItemDelegate::State_Move, and KDGantt::ItemDelegate::State_None.
00044 { 00045 switch( state ) { 00046 PRINT_INTERACTIONSTATE( KDGantt::ItemDelegate::State_None ); 00047 PRINT_INTERACTIONSTATE( KDGantt::ItemDelegate::State_Move ); 00048 PRINT_INTERACTIONSTATE( KDGantt::ItemDelegate::State_ExtendLeft ); 00049 PRINT_INTERACTIONSTATE( KDGantt::ItemDelegate::State_ExtendRight ); 00050 default: 00051 break; 00052 } 00053 return dbg; 00054 }
1.5.4