Developer documentation | Axl-2.5.1

axlActorPointSet.h
Go to the documentation of this file.
1 /* axlActorPointSet.h ---
2  *
3  * Author: Meriadeg Perrinel
4  * Copyright (C) 2008 - Meriadeg Perrinel, Inria.
5  * Created: Fri Dec 17 10:58:38 2010 (+0100)
6  * Version: $Id$
7  * Last-Updated: Mon Dec 17 14:11:50 2012 (+0100)
8  * By: Julien Wintz
9  * Update #: 5
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
20 #ifndef AXLACTORPOINTSET_H
21 #define AXLACTORPOINTSET_H
22 
23 #include "axlActor.h"
24 
25 #include "axlVtkViewPluginExport.h"
26 
27 class axlPointSet;
28 class axlActorPointSetPrivate;
29 
31 {
32 public:
33 #if (VTK_MAJOR_VERSION <= 5)
34  vtkTypeRevisionMacro(axlActorPointSet, vtkAssembly);
35 #endif
36 
37  static axlActorPointSet *New(void);
38 
39 public:
40  dtkAbstractData *data(void);
41 
42 public:
43  void setPointSet(axlPointSet *axlPointsSet);
44  void setMode(int state);
45  void setSize(double size);
46 public slots:
47  void onModeChanged(int state);
48 
49 protected:
50  axlActorPointSet(void);
51  ~axlActorPointSet(void);
52 
53 private:
54  axlActorPointSet(const axlActorPointSet&); // Not implemented.
55  void operator = (const axlActorPointSet&); // Not implemented.
56 
57 private:
58  axlActorPointSetPrivate *d;
59 };
60 
61 #endif //AXLACTORPOINTSET_H
#define AXLVTKVIEWPLUGIN_EXPORT
virtual void setMode(int state)
virtual void setSize(double size)
Definition: axlActor.cpp:471
virtual dtkAbstractData * data(void)=0
virtual void onModeChanged(int state)