Free Electron
WorldWindow.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 __world_WorldWindow_h__
8 #define __world_WorldWindow_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /** world window.
15  */
16 class FE_DL_EXPORT WorldWindow :
17  virtual public ApplicationWindowI,
18  virtual public Config,
19  public Initialize<WorldWindow>
20 {
21  public:
22  WorldWindow(void);
23 virtual ~WorldWindow(void);
24 
25  void initialize(void);
26 
27  // AS ApplicationWindowI
28 virtual void populateDataLayout(sp<Layout> l_win_data);
29 virtual void makeWindow(sp<WindowI> a_window,
30  Record r_win_data,
31  sp<Layout> l_windowEvent,
32  sp<Layout> l_draw_hb,
33  sp<RecordGroup> rg_info);
34 
35  private:
36  AsOrtho m_asOrtho;
37  AsPerspective m_asPerspective;
38  AsSelection m_asSelection;
39  AsSelect m_asSelect;
40  AsPick m_asPick;
41 };
42 
43 
44 } /* namespace ext */
45 } /* namespace fe */
46 
47 #endif /* __world_WorldWindow_h__ */
48 
Convienience base class for specification and use of path accessors.
Definition: Config.h:19
orthographic projection related
Definition: windowAS.h:257
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
world space selection
Definition: windowAS.h:57
world window.
Definition: WorldWindow.h:16
Reference to an instance of a Layout.
Definition: RecordSB.h:35
perspective projection related
Definition: windowAS.h:274
general selection/picking
Definition: windowAS.h:16
screen space selection
Definition: windowAS.h:36