xnodeconnector.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13  ***************************************************************************/
14 //---------------------------------------------------------------------------
15 
16 #ifndef xnodeconnectorH
17 #define xnodeconnectorH
18 
19 #include "support.h"
20 #include <QObject>
21 
22 #include "xsignal.h"
23 
24 class QWidget;
25 
26 DECLSPEC_KAME void sharedPtrQDeleter_(QObject *);
27 
28 template <class T>
29 class qshared_ptr : public shared_ptr<T> {
30 public:
31  qshared_ptr() : shared_ptr<T>() {}
32  template <class Y>
33  qshared_ptr(const qshared_ptr<Y> &p)
34  : shared_ptr<T>(static_cast<const shared_ptr<Y> &>(p) ) {}
35  template <class Y>
36  explicit qshared_ptr(Y * p)
37  : shared_ptr<T>(p, sharedPtrQDeleter_) {
38  assert(isMainThread());
39  }
40  template <class Y>
41  qshared_ptr<T> &operator=(const qshared_ptr<Y> &p) {
42  shared_ptr<T>::operator=(p);
43  return *this;
44  }
45 };
46 
47 class XQConnector;
48 
49 class DECLSPEC_KAME XQConnectorHolder_ : public QObject {
50  Q_OBJECT
51 public:
54  bool isAlive() const;
55 private slots:
56  protected slots:
57 void destroyed ();
58 protected:
59  shared_ptr<XQConnector> m_connector;
60 public:
61 };
62 
64 
65 #include "xnodeconnector_prv.h"
66 
67 #include "xnode.h"
68 #include "xlistnode.h"
69 #include "xitemnode.h"
70 
71 #include <fstream>
72 
73 #include <QColor>
74 #include <QPoint>
75 #include <QTimer>
76 
77 //! Needed for making new forms.
78 extern DECLSPEC_KAME QWidget *g_pFrmMain;
79 
80 //! Providing an easy access to make a new form with UIs designed by Qt designer.
81 template <class FRM, class UI>
82 struct QForm : public FRM, public UI {
83  QForm() : FRM(), UI() {this->setupUi(this);}
84  template <typename A>
85  explicit QForm(A a) : FRM(a), UI() {this->setupUi(this);}
86  template <typename A, typename B>
87  QForm(A a, B b) : FRM(a, b), UI() {this->setupUi(this);}
88  template <typename A, typename B, typename C>
89  QForm(A a, B b, C c) : FRM(a, b, c), UI() {this->setupUi(this);}
90 };
91 
92 //! Associate QWidget to XNode.
93 //! use connectWeak() to make XListener.
94 //! use xqcon_create<T>() to make instances.
95 //! \sa xqcon_create()
96 class DECLSPEC_KAME XQConnector : public QObject,
97 public enable_shared_from_this<XQConnector> {
98  //! Don't forget this macro for XQConnector objects.
99  Q_OBJECT
100 public:
101  //! Don't use this stuff directly, use xqcon_create() instead
102  //! \sa xqcon_create()
103  XQConnector(const shared_ptr<XNode> &node, QWidget *item);
104  //! Disconnect all signals & slots
105  virtual ~XQConnector();
106 
107  static shared_ptr<XNode> connectedNode(const QWidget *item);
108 private slots:
109 protected slots:
110 protected:
111  friend class XQConnectorHolder_;
112  bool isItemAlive() const {return m_pWidget;}
113  shared_ptr<XListener> m_lsnUIEnabled;
114  virtual void onUIFlagsChanged(const Snapshot &shot, XNode *node);
115  QWidget *m_pWidget;
116 };
117 
118 class QAbstractButton;
119 
120 class DECLSPEC_KAME XQButtonConnector : public XQConnector {
121  Q_OBJECT
122 public:
123  XQButtonConnector(const shared_ptr<XTouchableNode> &node, QAbstractButton *item);
124  virtual ~XQButtonConnector();
125 private slots:
126 protected slots:
127 virtual void onClick();
128 protected:
129  virtual void onTouch(const Snapshot &shot, XTouchableNode *node);
130  shared_ptr<XListener> m_lsnTouch;
131  const shared_ptr<XTouchableNode> m_node;
132  QAbstractButton *const m_pItem;
133 };
134 
135 class DECLSPEC_KAME XValueQConnector : public XQConnector {
136  Q_OBJECT
137 public:
138  XValueQConnector(const shared_ptr<XValueNodeBase> &node, QWidget *item);
139  virtual ~XValueQConnector();
140 private slots:
141 protected:
142  shared_ptr<XListener> m_lsnValueChanged;
143  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node) = 0;
144 };
145 
146 class QLineEdit;
147 
148 class DECLSPEC_KAME XQLineEditConnector : public XValueQConnector {
149  Q_OBJECT
150 public:
151  XQLineEditConnector(const shared_ptr<XValueNodeBase> &node,
152  QLineEdit *item, bool forcereturn = true);
153  virtual ~XQLineEditConnector() {}
154 protected slots:
155 void onTextChanged(const QString &);
156 void onTextChanged2(const QString &);
157 void onReturnPressed();
158 void onExit();
159 protected:
160  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
161  const shared_ptr<XValueNodeBase> m_node;
162  QLineEdit *const m_pItem;
163  bool m_editing;
164 };
165 
166 class QTextBrowser;
167 
168 class DECLSPEC_KAME XQTextBrowserConnector : public XValueQConnector {
169  Q_OBJECT
170 public:
171  XQTextBrowserConnector(const shared_ptr<XValueNodeBase> &node,
172  QTextBrowser *item);
173  virtual ~XQTextBrowserConnector() {}
174 protected slots:
175 protected:
176  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
177  const shared_ptr<XValueNodeBase> m_node;
178  QTextBrowser *const m_pItem;
179 };
180 
181 class QSlider;
182 
183 template <class QN, class XN, class X>
185 public:
186  XQSpinBoxConnectorTMPL(const shared_ptr<XN> &node,
187  QN *item, QSlider *slider);
188  virtual ~XQSpinBoxConnectorTMPL() {}
189 protected:
190  virtual void onUIFlagsChanged(const Snapshot &shot, XNode *node);
191  void onChangeTMPL(X val);
192  void onSliderChangeTMPL(int val);
193  void onValueChangedTMPL(const Snapshot &shot, XValueNodeBase *node);
194  const shared_ptr<XN> m_node;
195  QN *const m_pItem;
196  QSlider *const m_pSlider;
197 };
198 
199 class QSpinBox;
200 
201 class DECLSPEC_KAME XQSpinBoxConnector : public XQSpinBoxConnectorTMPL<QSpinBox, XIntNode, int> {
202  Q_OBJECT
203 public:
204  XQSpinBoxConnector(const shared_ptr<XIntNode> &node,
205  QSpinBox *item, QSlider *slider = 0L);
206  virtual ~XQSpinBoxConnector() {}
207 protected slots:
208 void onChange(int val) {onChangeTMPL(val);}
209 void onSliderChange(int val) {onSliderChangeTMPL(val);}
210 protected:
211  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node) {
212  onValueChangedTMPL(shot, node); }
213 };
214 class DECLSPEC_KAME XQSpinBoxUnsignedConnector : public XQSpinBoxConnectorTMPL<QSpinBox, XUIntNode, int> {
215  Q_OBJECT
216 public:
217  XQSpinBoxUnsignedConnector(const shared_ptr<XUIntNode> &node,
218  QSpinBox *item, QSlider *slider = 0L);
219  virtual ~XQSpinBoxUnsignedConnector() {}
220 protected slots:
221  void onChange(int val) {onChangeTMPL(val);}
222  void onSliderChange(int val) {onSliderChangeTMPL(val);}
223 protected:
224  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node) {
225  onValueChangedTMPL(shot, node); }
226 };
227 
228 class QDoubleSpinBox;
229 class DECLSPEC_KAME XQDoubleSpinBoxConnector : public XQSpinBoxConnectorTMPL<QDoubleSpinBox, XDoubleNode, double> {
230  Q_OBJECT
231 public:
232  XQDoubleSpinBoxConnector(const shared_ptr<XDoubleNode> &node,
233  QDoubleSpinBox *item, QSlider *slider = 0L);
234  virtual ~XQDoubleSpinBoxConnector() {}
235 protected slots:
236  void onChange(double val) {onChangeTMPL(val);}
237  void onSliderChange(int val) {onSliderChangeTMPL(val);}
238 protected:
239  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node) {
240  onValueChangedTMPL(shot, node); }
241 };
242 
243 class QLabel;
244 
245 class DECLSPEC_KAME XQLabelConnector : public XValueQConnector {
246  Q_OBJECT
247 public:
248  XQLabelConnector(const shared_ptr<XValueNodeBase> &node,
249  QLabel *item);
250  virtual ~XQLabelConnector() {}
251 protected slots:
252 protected:
253  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
254  const shared_ptr<XValueNodeBase> m_node;
255  QLabel *const m_pItem;
256 };
257 
258 class QLCDNumber;
259 
260 class DECLSPEC_KAME XQLCDNumberConnector : public XValueQConnector {
261  Q_OBJECT
262 public:
263  XQLCDNumberConnector(const shared_ptr<XDoubleNode> &node,
264  QLCDNumber *item);
265  virtual ~XQLCDNumberConnector() {}
266 protected:
267  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
268  const shared_ptr<XDoubleNode> m_node;
269  QLCDNumber *const m_pItem;
270 };
271 
272 class QIcon;
273 class QPushButton;
274 class DECLSPEC_KAME XQLedConnector : public XValueQConnector {
275  Q_OBJECT
276 public:
277  XQLedConnector(const shared_ptr<XBoolNode> &node,
278  QPushButton *item);
279  virtual ~XQLedConnector() {}
280 protected slots:
281 protected:
282  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
283  const shared_ptr<XBoolNode> m_node;
284  QPushButton *const m_pItem;
285  QIcon *m_pIconOn;
286  QIcon *m_pIconOff;
287 };
288 
289 class DECLSPEC_KAME XQToggleButtonConnector : public XValueQConnector {
290  Q_OBJECT
291 public:
292  XQToggleButtonConnector(const shared_ptr<XBoolNode> &node,
293  QAbstractButton *item);
294  virtual ~XQToggleButtonConnector() {}
295 protected slots:
296 void onClick();
297 protected:
298  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
299  const shared_ptr<XBoolNode> m_node;
300  QAbstractButton *const m_pItem;
301 };
302 
303 class QToolButton;
304 class DECLSPEC_KAME XFilePathConnector : public XQLineEditConnector {
305  Q_OBJECT
306 public:
307  XFilePathConnector(const shared_ptr<XStringNode> &node,
308  QLineEdit *edit, QAbstractButton *btn, const char *filter, bool saving);
309  virtual ~XFilePathConnector() {}
310 protected slots:
311 void onClick();
312 protected:
313  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
314  QAbstractButton *const m_pBtn;
315  bool m_saving;
316  XString m_filter;
317 };
318 
319 class QTableWidget;
320 class DECLSPEC_KAME XListQConnector : public XQConnector {
321  Q_OBJECT
322 public:
323  XListQConnector(const shared_ptr<XListNodeBase> &node, QTableWidget *item);
324  virtual ~XListQConnector();
325 private slots:
326 protected slots:
327 void OnSectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex);
328 protected:
329  shared_ptr<XListener> m_lsnMove;
330  virtual void onMove(const Snapshot &shot, const XListNodeBase::Payload::MoveEvent &e);
331  shared_ptr<XListener> m_lsnCatch;
332  shared_ptr<XListener> m_lsnRelease;
333  virtual void onCatch(const Snapshot &shot, const XListNodeBase::Payload::CatchEvent &e) = 0;
334  virtual void onRelease(const Snapshot &shot, const XListNodeBase::Payload::ReleaseEvent &e) = 0;
335  QTableWidget *const m_pItem;
336  const shared_ptr<XListNodeBase> m_list;
337 };
338 
339 class DECLSPEC_KAME XItemQConnector : public XValueQConnector {
340  Q_OBJECT
341 public:
342  XItemQConnector(const shared_ptr<XItemNodeBase> &node,
343  QWidget *item);
344  virtual ~XItemQConnector();
345 private slots:
346 protected slots:
347 protected:
348  shared_ptr<XListener> m_lsnListChanged;
349  virtual void onListChanged(const Snapshot &shot, const XItemNodeBase::Payload::ListChangeEvent &e) = 0;
350  std::vector<XItemNodeBase::Item> m_itemStrings;
351 };
352 
353 class QComboBox;
354 
355 class DECLSPEC_KAME XQComboBoxConnector : public XItemQConnector {
356  Q_OBJECT
357 public:
358  XQComboBoxConnector(const shared_ptr<XItemNodeBase> &node,
359  QComboBox *item, const Snapshot &shot_of_list);
360  virtual ~XQComboBoxConnector() {}
361 protected slots:
362 virtual void onSelect(int index);
363 protected:
364  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
365  virtual void onListChanged(const Snapshot &shot, const XItemNodeBase::Payload::ListChangeEvent &e);
366  const shared_ptr<XItemNodeBase> m_node;
367  QComboBox *const m_pItem;
368  int findItem(const QString &);
369 };
370 
371 class QListWidget;
372 class QListWidgetItem;
373 
374 class DECLSPEC_KAME XQListWidgetConnector : public XItemQConnector {
375  Q_OBJECT
376 public:
377  XQListWidgetConnector(const shared_ptr<XItemNodeBase> &node,
378  QListWidget *item, const Snapshot &shot_of_list);
379  virtual ~XQListWidgetConnector();
380 protected slots:
381 virtual void OnItemSelectionChanged();
382 protected:
383  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
384  virtual void onListChanged(const Snapshot &shot, const XItemNodeBase::Payload::ListChangeEvent &e);
385  const shared_ptr<XItemNodeBase> m_node;
386  QListWidget *const m_pItem;
387 };
388 
389 class QColorDialog;
390 class QPushButton;
391 class DECLSPEC_KAME XColorConnector : public XValueQConnector {
392  Q_OBJECT
393 public:
394  XColorConnector(const shared_ptr<XHexNode> &node, QPushButton *item);
395  virtual ~XColorConnector() {}
396 protected slots:
397 void onClick();
398 void OnColorSelected(const QColor & color);
399 protected:
400  virtual void onValueChanged(const Snapshot &shot, XValueNodeBase *node);
401  const shared_ptr<XHexNode> m_node;
402  QPushButton *const m_pItem;
403  qshared_ptr<QColorDialog> m_dialog;
404 };
405 
406 //! Show status
407 class QMainWindow;
408 class QStatusBar;
409 class DECLSPEC_KAME XStatusPrinter : public enable_shared_from_this<XStatusPrinter> {
410 protected:
411  explicit XStatusPrinter(QMainWindow *window = NULL);
412 public:
413  static shared_ptr<XStatusPrinter> create(QMainWindow *window = NULL);
414  ~XStatusPrinter();
415  void printMessage(const XString &str, bool popup = true, const char *file = 0L, int line = 0, bool beep = false);
416  void printWarning(const XString &str, bool popup = false, const char *file = 0L, int line = 0, bool beep = false);
417  void printError(const XString &str, bool popup = true, const char *file = 0L, int line = 0, bool beep = false);
418  void clear();
419 private:
420  struct tstatus {XString str; XString tooltip; int ms; bool popup; bool beep;
421  enum : int {Normal, Warning, Error} type;};
422  Transactional::Talker<tstatus> m_tlkTalker;
423  shared_ptr<XListener> m_lsn;
424  QMainWindow *m_pWindow;
425  QStatusBar *m_pBar;
426  void print(const tstatus &status);
427 };
428 
429 //---------------------------------------------------------------------------
430 #endif

Generated for KAME4 by  doxygen 1.8.3