You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
632 B
35 lines
632 B
#ifndef KDCHARTCUSTOMBOX_H
|
|
#define KDCHARTCUSTOMBOX_H
|
|
|
|
#include <tqobject.h>
|
|
#include "KDChartCustomBox.h"
|
|
class KDChartCustomBox;
|
|
class KDChartTextPiece;
|
|
class KDChartCustomBoxWrapper :public TQObject
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
KDChartCustomBoxWrapper( KDChartCustomBox* );
|
|
|
|
public slots:
|
|
const KDChartTextPiece* content() const;
|
|
|
|
|
|
// These methods need to be here, for the enums to work.
|
|
void setAnchorPosition( int position )
|
|
{
|
|
_data->setAnchorPosition( (KDChartEnums::PositionFlag) position );
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
KDChartCustomBox* _data;
|
|
};
|
|
|
|
|
|
#endif /* KDCHARTCUSTOMBOX_H */
|
|
|