ImageSel Pile   version 0.0.1
ImageSel pile.
layoutinterf.h
1 
10 #ifndef GUARD_LAYOUTINTERF_H_INCLUDE
11 #define GUARD_LAYOUTINTERF_H_INCLUDE
12 
13 #include <imagesel/imagesel-config.h>
14 #include <QPoint>
15 
16 class ImageSel;
17 class ActiveGrip;
18 
20 class IMAGESEL_EXPORT LayoutInterf {
21 
22 public:
23 
25  virtual ~LayoutInterf ();
26 
27  virtual void
28  paint (
29  ImageSel * target) = 0;
30 
31  virtual void
32  globalMove (
33  ImageSel * target,
34  const QPoint & pos) = 0;
35 
36  virtual QPoint
37  gripMode (
38  ImageSel * target,
39  ActiveGrip *grip,
40  const QPoint & pos) = 0;
41 
42 protected:
43 
44 private:
45 
46 };
47 
48 #endif // GUARD_LAYOUTINTERF_H_INCLUDE
brief description
Definition: layoutinterf.h:20
brief description
Definition: activegrip.h:19
brief description
Definition: imagesel.h:20