#include <ChartGraphicsItem.h>
Definition at line 41 of file ChartGraphicsItem.h.
Public Types | |
enum | { Type = UserType + 1 } |
Public Member Functions | |
ChartGraphicsItem (int row, int column) | |
ChartGraphicsItem () | |
int | column () const |
int | row () const |
int | type () const |
anonymous enum |
ChartGraphicsItem::ChartGraphicsItem | ( | ) |
Definition at line 34 of file ChartGraphicsItem.cpp.
00035 : QGraphicsPolygonItem() 00036 , m_row( -1 ) 00037 , m_column( -1 ) 00038 { 00039 }
ChartGraphicsItem::ChartGraphicsItem | ( | int | row, | |
int | column | |||
) |
Definition at line 41 of file ChartGraphicsItem.cpp.
00042 : QGraphicsPolygonItem() 00043 , m_row( row ) 00044 , m_column( column ) 00045 { 00046 }
int KDChart::ChartGraphicsItem::column | ( | ) | const |
Definition at line 51 of file ChartGraphicsItem.h.
Referenced by KDChart::ReverseMapper::addItem(), KDChart::ReverseMapper::indexesAt(), and KDChart::ReverseMapper::indexesIn().
int KDChart::ChartGraphicsItem::row | ( | ) | const |
Definition at line 50 of file ChartGraphicsItem.h.
Referenced by KDChart::ReverseMapper::addItem(), KDChart::ReverseMapper::indexesAt(), and KDChart::ReverseMapper::indexesIn().
int KDChart::ChartGraphicsItem::type | ( | ) | const |