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
38
39
40
41
42
43
44
45
46
47
48
49
|
#ifndef __SNAPPOINT_H
#define __SNAPPOINT_H
#include <bfc/ptrlist.h>
#include <bfc/string/StringW.h>
#include <api/skin/xmlobject.h>
#define SNAPPOINT_XMLPARENT XmlObjectI
class Container;
class Layout;
class SnapPoint;
class ifc_window;
class SnapPoint : public SNAPPOINT_XMLPARENT {
public:
SnapPoint(Layout *l, Container *c);
virtual ~SnapPoint();
virtual int setXmlParam(const wchar_t *name, const wchar_t *strvalue);
virtual void setParentContainer(Container *c);
virtual void setParentLayout(Layout *l);
virtual Container *getParentContainer();
virtual Layout *getParentLayout();
virtual const wchar_t *getId();
virtual int getX();
virtual int getY();
static int match(ifc_window *master, RECT *z, ifc_window *slave, int flag, int *donex, int *doney, int w, int h);
static void removeAll();
private:
int x;
int y;
int relatx;
int relaty;
StringW id;
Container *pcontainer;
Layout *playout;
static PtrList<SnapPoint> points;
static int do_match(SnapPoint *pmast, SnapPoint *pslav, RECT *z, int mask, int *donex, int *doney, int w, int h);
};
#endif
|