]> git.mxchange.org Git - flightgear.git/blob - utils/fgviewer/HLAWindowDrawableClass.hxx
fgviewer: Import hla based viewer application.
[flightgear.git] / utils / fgviewer / HLAWindowDrawableClass.hxx
1 // Copyright (C) 2009 - 2012  Mathias Froehlich - Mathias.Froehlich@web.de
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16 //
17
18 #ifndef HLAWindowDrawableClass_hxx
19 #define HLAWindowDrawableClass_hxx
20
21 #include "HLADrawableClass.hxx"
22
23 namespace fgviewer {
24
25 class HLAWindowDrawableClass : public HLADrawableClass {
26 public:
27     HLAWindowDrawableClass(const std::string& name, simgear::HLAFederate* federate);
28     virtual ~HLAWindowDrawableClass();
29
30     /// Create a new instance of this class.
31     virtual simgear::HLAObjectInstance* createObjectInstance(const std::string& name);
32
33     virtual void createAttributeDataElements(simgear::HLAObjectInstance& objectInstance);
34
35     bool setFullscreenIndex(const std::string& path)
36     { return getDataElementIndex(_fullscreenIndex, path); }
37     const simgear::HLADataElementIndex& getFullscreenIndex() const
38     { return _fullscreenIndex; }
39
40     bool setPositionIndex(const std::string& path)
41     { return getDataElementIndex(_positionIndex, path); }
42     const simgear::HLADataElementIndex& getPositionIndex() const
43     { return _positionIndex; }
44
45     bool setSizeIndex(const std::string& path)
46     { return getDataElementIndex(_sizeIndex, path); }
47     const simgear::HLADataElementIndex& getSizeIndex() const
48     { return _sizeIndex; }
49
50 private:
51     simgear::HLADataElementIndex _fullscreenIndex;
52     simgear::HLADataElementIndex _positionIndex;
53     simgear::HLADataElementIndex _sizeIndex;
54 };
55
56 } // namespace fgviewer
57
58 #endif