16 #ifndef xnodeconnectorH
17 #define xnodeconnectorH
26 DECLSPEC_KAME
void sharedPtrQDeleter_(QObject *);
34 : shared_ptr<T>(
static_cast<const shared_ptr<Y> &
>(p) ) {}
37 : shared_ptr<T>(p, sharedPtrQDeleter_) {
38 assert(isMainThread());
42 shared_ptr<T>::operator=(p);
59 shared_ptr<XQConnector> m_connector;
65 #include "xnodeconnector_prv.h"
68 #include "xlistnode.h"
69 #include "xitemnode.h"
78 extern DECLSPEC_KAME QWidget *g_pFrmMain;
81 template <
class FRM,
class UI>
82 struct QForm :
public FRM,
public UI {
83 QForm() : FRM(), UI() {this->setupUi(
this);}
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);}
97 public enable_shared_from_this<XQConnector> {
103 XQConnector(
const shared_ptr<XNode> &node, QWidget *item);
107 static shared_ptr<XNode> connectedNode(
const QWidget *item);
112 bool isItemAlive()
const {
return m_pWidget;}
113 shared_ptr<XListener> m_lsnUIEnabled;
114 virtual void onUIFlagsChanged(
const Snapshot &shot,
XNode *node);
118 class QAbstractButton;
123 XQButtonConnector(
const shared_ptr<XTouchableNode> &node, QAbstractButton *item);
127 virtual void onClick();
130 shared_ptr<XListener> m_lsnTouch;
131 const shared_ptr<XTouchableNode> m_node;
132 QAbstractButton *
const m_pItem;
142 shared_ptr<XListener> m_lsnValueChanged;
152 QLineEdit *item,
bool forcereturn =
true);
155 void onTextChanged(
const QString &);
156 void onTextChanged2(
const QString &);
157 void onReturnPressed();
161 const shared_ptr<XValueNodeBase> m_node;
162 QLineEdit *
const m_pItem;
177 const shared_ptr<XValueNodeBase> m_node;
178 QTextBrowser *
const m_pItem;
183 template <
class QN,
class XN,
class X>
187 QN *item, QSlider *slider);
190 virtual void onUIFlagsChanged(
const Snapshot &shot,
XNode *node);
191 void onChangeTMPL(X val);
192 void onSliderChangeTMPL(
int val);
194 const shared_ptr<XN> m_node;
196 QSlider *
const m_pSlider;
205 QSpinBox *item, QSlider *slider = 0L);
208 void onChange(
int val) {onChangeTMPL(val);}
209 void onSliderChange(
int val) {onSliderChangeTMPL(val);}
212 onValueChangedTMPL(shot, node); }
218 QSpinBox *item, QSlider *slider = 0L);
221 void onChange(
int val) {onChangeTMPL(val);}
222 void onSliderChange(
int val) {onSliderChangeTMPL(val);}
225 onValueChangedTMPL(shot, node); }
228 class QDoubleSpinBox;
233 QDoubleSpinBox *item, QSlider *slider = 0L);
236 void onChange(
double val) {onChangeTMPL(val);}
237 void onSliderChange(
int val) {onSliderChangeTMPL(val);}
240 onValueChangedTMPL(shot, node); }
254 const shared_ptr<XValueNodeBase> m_node;
255 QLabel *
const m_pItem;
268 const shared_ptr<XDoubleNode> m_node;
269 QLCDNumber *
const m_pItem;
283 const shared_ptr<XBoolNode> m_node;
284 QPushButton *
const m_pItem;
293 QAbstractButton *item);
299 const shared_ptr<XBoolNode> m_node;
300 QAbstractButton *
const m_pItem;
308 QLineEdit *edit, QAbstractButton *btn,
const char *filter,
bool saving);
314 QAbstractButton *
const m_pBtn;
323 XListQConnector(
const shared_ptr<XListNodeBase> &node, QTableWidget *item);
327 void OnSectionMoved(
int logicalIndex,
int oldVisualIndex,
int newVisualIndex);
329 shared_ptr<XListener> m_lsnMove;
331 shared_ptr<XListener> m_lsnCatch;
332 shared_ptr<XListener> m_lsnRelease;
335 QTableWidget *
const m_pItem;
336 const shared_ptr<XListNodeBase> m_list;
348 shared_ptr<XListener> m_lsnListChanged;
350 std::vector<XItemNodeBase::Item> m_itemStrings;
359 QComboBox *item,
const Snapshot &shot_of_list);
362 virtual void onSelect(
int index);
366 const shared_ptr<XItemNodeBase> m_node;
367 QComboBox *
const m_pItem;
368 int findItem(
const QString &);
372 class QListWidgetItem;
378 QListWidget *item,
const Snapshot &shot_of_list);
381 virtual void OnItemSelectionChanged();
385 const shared_ptr<XItemNodeBase> m_node;
386 QListWidget *
const m_pItem;
398 void OnColorSelected(
const QColor & color);
401 const shared_ptr<XHexNode> m_node;
402 QPushButton *
const m_pItem;
409 class DECLSPEC_KAME
XStatusPrinter :
public enable_shared_from_this<XStatusPrinter> {
413 static shared_ptr<XStatusPrinter> create(QMainWindow *window = NULL);
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);
421 enum :
int {Normal, Warning, Error} type;};
423 shared_ptr<XListener> m_lsn;
424 QMainWindow *m_pWindow;
426 void print(
const tstatus &status);