blob: 90c339acce117ab0cbdcefdeb263e352c57721be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef __pprimitivesviews__
#define __pprimitivesviews__
#ifndef __vstgui__
#include "vstgui.h"
#endif
class PLinesView : public CView
{
public:
PLinesView (const CRect& size);
virtual void draw (CDrawContext *pContext);
};
class PRectsView : public CView
{
public:
PRectsView (const CRect& size);
virtual void draw (CDrawContext *pContext);
};
class PMiscView : public CView
{
public:
PMiscView (const CRect& size);
virtual void draw (CDrawContext* pContext);
virtual void mouse (CDrawContext* pContext, CPoint &where, long buttons = -1);
protected:
void drawGrid (CDrawContext* pContext);
long xOffset;
long yOffset;
};
#endif
|