~ubuntu-branches/ubuntu/vivid/qgo/vivid

« back to all changes in this revision

Viewing changes to src/mark.h

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Chaboisseau
  • Date: 2008-03-16 23:53:01 UTC
  • mfrom: (2.1.14 hardy)
  • Revision ID: james.westby@ubuntu.com-20080316235301-j1a8p2sgprtkgxm1
Tags: 1.5.4-r2-2
* fix several minor issues
* remove libqt3-compat-headers from control (closes: #464760)
* Bumped Standards-Version to 3.7.3. No changes needed.
* adding qgo-16.xpm

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
        bool small;
81
81
};
82
82
 
 
83
class MarkRedCircle : public MarkCircle // QQQ
 
84
{
 
85
public:
 
86
        MarkRedCircle(int x, int y, int size, QCanvas *canvas, QColor col=black, bool s=false)
 
87
        : MarkCircle(x,y,size,canvas,QColor(255,0,0),s) {}
 
88
        virtual ~MarkRedCircle() { hide(); }
 
89
};
 
90
 
83
91
class MarkTriangle : public QCanvasPolygon, public Mark
84
92
{
85
93
public: