Free Electron
DrawChainOps.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __plan_DrawChainOps_h__
8 #define __plan_DrawChainOps_h__
9 
10 #include "signal/signal.h"
11 #include "draw/draw.h"
12 #include "window/window.h"
13 #include "viewer/DrawView.h"
14 #include "shape/shapeAS.h"
15 #include "ai/aiAS.h"
16 #include "plan/planAS.h"
17 
18 namespace fe
19 {
20 
21 class FE_DL_EXPORT DrawChainOps :
22  public Initialize<DrawChainOps>,
23  virtual public Config,
24  virtual public HandlerI
25 {
26  public:
27  DrawChainOps(void);
28 virtual ~DrawChainOps(void);
29 
30  void initialize(void);
31 
32 virtual void handle( Record &r_sig);
33 
34  private:
35  AsChainOp m_asChainOp;
36  AsPoint m_asPoint;
37  AsNav m_asNav;
38  AsSelScreenTriangle m_asSelTri;
39  AsSelParent m_asSelParent;
40  AsNamed m_asNamed;
41  DrawView m_drawview;
42  AsSelectable m_asSelectable;
43  AsBounded m_asBounded;
44  sp<Layout> m_arrowheadLayout;
45  sp<RecordGroup> m_spWidgets;
46 };
47 
48 } /* namespace */
49 
50 #endif /* __plan_DrawChainOps_h__ */
51 
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Reference to an instance of a Layout.
Definition: RecordSB.h:35
Definition: DrawChainOps.h:21