QAlgorithm
 All Classes Files Functions Typedefs Properties Macros
qa_macros.h
Go to the documentation of this file.
1 // QAlgorithm: a class for Qt/C++ implementing generic algorithm logic.
2 // Copyright (C) 2018 Filippo Santarelli
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Lesser General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
16 //
17 // Contact me at: filippo2.santarelli@gmail.com
18 //
19 
24 #ifndef _QA_MACRO
25 #define _QA_MACRO
26 
27 #ifndef QA_IN
28 
29 #define QA_IN "algin_"
30 #endif
31 
32 #ifndef QA_OUT
33 
34 #define QA_OUT "algout_"
35 #endif
36 
37 #ifndef QA_PAR
38 
39 #define QA_PAR "par_"
40 #endif
41 
42 #ifndef QA_INPUT
43 
64 #define QA_INPUT(Type, Name) \
65 Q_PROPERTY(Type algin_##Name MEMBER m_algin_##Name READ getIn##Name WRITE setIn##Name) \
66 private: \
67  Type m_algin_##Name; \
68 public: \
69  void setIn##Name (Type value){ \
70  this->m_algin_##Name = value; \
71  } \
72  Type getIn##Name () const{ \
73  return this->m_algin_##Name; \
74  } \
75  Type& getInRef##Name (){ \
76  return std::ref(this->m_algin_##Name); \
77  } \
78  Type&& getInMove##Name (){ \
79  return std::move(this->m_algin_##Name); \
80  }
81 #endif
82 
83 #ifndef QA_INPUT_LIST
84 
108 #define QA_INPUT_LIST(Type, Name) \
109 Q_PROPERTY(Type algin_##Name MEMBER m_algin_##Name WRITE setIn##Name) \
110 private: \
111  Type m_algin_##Name; \
112  QList<Type> m_listin_##Name; \
113 public: \
114  void setIn##Name (Type value){ \
115  this->m_algin_##Name = value; \
116  this->m_listin_##Name << value; \
117  } \
118  QList<Type> getIn##Name () const{ \
119  return this->m_listin_##Name; \
120  } \
121  QList<Type>& getInRef##Name (){ \
122  return std::ref(this->m_listin_##Name); \
123  } \
124  QList<Type>&& getInMove##Name (){ \
125  return std::move(this->m_listin_##Name); \
126  }
127 #endif
128 
129 #ifndef QA_INPUT_VEC
130 
142 #define QA_INPUT_VEC(Type, Name) \
143 Q_PROPERTY(Type algin_##Name MEMBER m_algin_##Name WRITE setIn##Name) \
144 private: \
145  Type m_algin_##Name; \
146  QVector<Type> m_vecin_##Name; \
147 public: \
148  void setIn##Name (Type value){ \
149  this->m_algin_##Name = value; \
150  this->m_vecin_##Name << value; \
151  } \
152  QVector<Type> getIn##Name () const{ \
153  return this->m_vecin_##Name; \
154  } \
155  QVector<Type>& getInRef##Name (){ \
156  return std::ref(this->m_vecin_##Name); \
157  } \
158  QVector<Type>&& getInMove##Name (){ \
159  return std::move(this->m_vecin_##Name); \
160  }
161 #endif
162 
180 #ifndef QA_OUTPUT
181 #define QA_OUTPUT(Type, Name) \
182 Q_PROPERTY(Type algout_##Name MEMBER m_algout_##Name READ getOut##Name WRITE setOut##Name) \
183 private: \
184  Type m_algout_##Name; \
185 protected: \
186  void setOut##Name (Type value){ \
187  this->m_algout_##Name = value; \
188  } \
189 public: \
190  Type getOut##Name () const{ \
191  return this->m_algout_##Name; \
192  } \
193  Type& getOutRef##Name (){ \
194  return std::ref(this->m_algout_##Name); \
195  } \
196  Type&& getOutMove##Name (){ \
197  return std::move(this->m_algout_##Name); \
198  }
199 #endif
200 
201 #ifndef QA_PARAMETER
202 
221 #define QA_PARAMETER(Type, Name, Default) \
222 Q_PROPERTY(Type par_##Name READ get##Name WRITE set##Name) \
223 private: \
224  Type par_##Name = Default; \
225 public: \
226  void set##Name (Type value){ \
227  this->par_##Name = value; \
228  } \
229 Type get##Name (){ \
230  return this->par_##Name; \
231 }
232 #endif
233 
244 #ifndef QA_CTOR_INHERIT
245 #define QA_CTOR_INHERIT \
246 public: \
247  using QAlgorithm::QAlgorithm; \
248 protected: \
249  using QAlgorithm::setup;
250 #endif
251 
252 
272 #ifndef QA_IMPL_CREATE
273 #define QA_IMPL_CREATE(ClassName) \
274 public: \
275  static inline QSharedPointer<ClassName> create(QAPropertyMap parameters = QAPropertyMap(), \
276  QObject* parent = Q_NULLPTR){ \
277  auto ptr = QSharedPointer<ClassName>(new ClassName(parent), &QObject::deleteLater); \
278  ptr->setup(); \
279  if(!parameters.isEmpty()){ \
280  ptr->setParameters(parameters); \
281  } \
282  ptr->init(); \
283  return ptr; \
284  }
285 #endif
286 
287 #endif