00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef BUYARROW_HPP
00023 #define BUYARROW_HPP
00024
00025 #include "COBase.h"
00026 #include <qpointarray.h>
00027 #include <qdatetime.h>
00028
00029 class BuyArrow : public COBase
00030 {
00031 Q_OBJECT
00032
00033 public:
00034
00035 BuyArrow ();
00036 ~BuyArrow ();
00037 void draw (QPixmap &, Scaler &, int, int, int);
00038 void newObject (QString &, QString &);
00039 void loadDefaults ();
00040 void saveDefaults ();
00041 void getSettings (Setting &);
00042 void setSettings (Setting &);
00043 void adjustForSplit (QDateTime &, double);
00044
00045 public slots:
00046 void prefDialog ();
00047 COBase::Status pointerClick (QPoint &, QDateTime &, double);
00048 void pointerMoving (QPixmap &, QPoint &, QDateTime &, double y);
00049
00050 protected:
00051 QPointArray arrow;
00052 };
00053
00054 #endif