NuriaProject Framework  0.1
The NuriaProject Framework
luaobject.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_LUAOBJECT_HPP
18 #define NURIA_LUAOBJECT_HPP
19 
20 #include <QSharedDataPointer>
21 #include "lua_global.hpp"
22 #include "luavalue.hpp"
23 
24 namespace Nuria {
25 
26 class LuaObjectPrivate;
27 class LuaStackUtils;
28 class LuaRuntime;
29 class MetaObject;
30 class LuaValue;
31 class MetaEnum;
32 
41 class NURIA_LUA_EXPORT LuaObject {
42 public:
43 
45  LuaObject ();
46 
48  LuaObject (const LuaObject &other);
49 
51  LuaObject &operator= (const LuaObject &other);
52 
54  ~LuaObject ();
55 
57  bool isValid () const;
58 
60  LuaRuntime *runtime () const;
61 
63  int reference () const;
64 
66  MetaObject *metaObject () const;
67 
74  void *object () const;
75 
82  QVariant toVariant () const;
83 
92  QVariant copy () const;
93 
101  static LuaObject fromStructure (void *object, MetaObject *metaObject, LuaRuntime *runtime,
102  bool takeOwnership = false);
103 
115  static LuaObject fromVariant (const QVariant &variant, LuaRuntime *runtime,
116  bool takeOwnership = false);
117 
118 private:
119  friend class LuaMetaObjectWrapper;
120  friend class LuaStackUtils;
121  friend class LuaRuntime;
122  friend class LuaValue;
123 
124  LuaObject (LuaRuntime *runtime, int userDataWrapperRef);
125 
126  static MetaObject *findMetaObjectOfData (LuaRuntime *runtime, int idx);
127  void pushOnStack ();
128 
129  //
130  QSharedDataPointer< LuaObjectPrivate > d;
131 };
132 
133 }
134 
135 Q_DECLARE_METATYPE(Nuria::LuaObject)
136 
137 #endif // NURIA_LUAOBJECT_HPP
The MetaObject class provides access to meta-data of types at run-time.
Definition: metaobject.hpp:560
Definition: abstractsessionmanager.hpp:24
Runtime for the LUA scripting language.
Definition: luaruntime.hpp:77
Stores a value from LUA.
Definition: luavalue.hpp:40
Stores a C++ object with an associated Nuria::MetaObject.
Definition: luaobject.hpp:41