Line data Source code
1 : /****************************************************************************
2 : ** Meta object code from reading C++ file 'overviewpage.h'
3 : **
4 : **
5 : ** WARNING! All changes made in this file will be lost!
6 : *****************************************************************************/
7 :
8 : #include "qt/overviewpage.h"
9 : #if !defined(Q_MOC_OUTPUT_REVISION)
10 : #error "The header file 'overviewpage.h' doesn't include <QObject>."
11 : #elif Q_MOC_OUTPUT_REVISION != 63
12 : #error "This file was generated using the moc from 4.8.6. It"
13 : #error "cannot be used with the include files from this version of Qt."
14 : #error "(The moc has changed too much.)"
15 : #endif
16 :
17 : QT_BEGIN_MOC_NAMESPACE
18 : static const uint qt_meta_data_OverviewPage[] = {
19 :
20 : // content:
21 : 6, // revision
22 : 0, // classname
23 : 0, 0, // classinfo
24 : 6, 14, // methods
25 : 0, 0, // properties
26 : 0, 0, // enums/sets
27 : 0, 0, // constructors
28 : 0, // flags
29 : 1, // signalCount
30 :
31 : // signals: signature, parameters, type, tag, flags
32 : 20, 14, 13, 13, 0x05,
33 :
34 : // slots: signature, parameters, type, tag, flags
35 : 152, 52, 13, 13, 0x0a,
36 : 212, 13, 13, 13, 0x08,
37 : 232, 14, 13, 13, 0x08,
38 : 279, 270, 13, 13, 0x08,
39 : 315, 301, 13, 13, 0x08,
40 :
41 : 0 // eod
42 : };
43 :
44 : static const char qt_meta_stringdata_OverviewPage[] = {
45 : "OverviewPage\0\0index\0transactionClicked(QModelIndex)\0"
46 : "balance,unconfirmedBalance,immatureBalance,watchOnlyBalance,watchUncon"
47 : "fBalance,watchImmatureBalance\0"
48 : "setBalance(CAmount,CAmount,CAmount,CAmount,CAmount,CAmount)\0"
49 : "updateDisplayUnit()\0"
50 : "handleTransactionClicked(QModelIndex)\0"
51 : "warnings\0updateAlerts(QString)\0"
52 : "showWatchOnly\0updateWatchOnlyLabels(bool)\0"
53 : };
54 :
55 0 : void OverviewPage::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
56 : {
57 0 : if (_c == QMetaObject::InvokeMetaMethod) {
58 0 : Q_ASSERT(staticMetaObject.cast(_o));
59 0 : OverviewPage *_t = static_cast<OverviewPage *>(_o);
60 0 : switch (_id) {
61 0 : case 0: _t->transactionClicked((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break;
62 0 : case 1: _t->setBalance((*reinterpret_cast< const CAmount(*)>(_a[1])),(*reinterpret_cast< const CAmount(*)>(_a[2])),(*reinterpret_cast< const CAmount(*)>(_a[3])),(*reinterpret_cast< const CAmount(*)>(_a[4])),(*reinterpret_cast< const CAmount(*)>(_a[5])),(*reinterpret_cast< const CAmount(*)>(_a[6]))); break;
63 0 : case 2: _t->updateDisplayUnit(); break;
64 0 : case 3: _t->handleTransactionClicked((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break;
65 0 : case 4: _t->updateAlerts((*reinterpret_cast< const QString(*)>(_a[1]))); break;
66 0 : case 5: _t->updateWatchOnlyLabels((*reinterpret_cast< bool(*)>(_a[1]))); break;
67 : default: ;
68 : }
69 : }
70 0 : }
71 :
72 : const QMetaObjectExtraData OverviewPage::staticMetaObjectExtraData = {
73 : 0, qt_static_metacall
74 : };
75 :
76 : const QMetaObject OverviewPage::staticMetaObject = {
77 : { &QWidget::staticMetaObject, qt_meta_stringdata_OverviewPage,
78 : qt_meta_data_OverviewPage, &staticMetaObjectExtraData }
79 : };
80 :
81 : #ifdef Q_NO_DATA_RELOCATION
82 : const QMetaObject &OverviewPage::getStaticMetaObject() { return staticMetaObject; }
83 : #endif //Q_NO_DATA_RELOCATION
84 :
85 0 : const QMetaObject *OverviewPage::metaObject() const
86 : {
87 0 : return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
88 : }
89 :
90 0 : void *OverviewPage::qt_metacast(const char *_clname)
91 : {
92 0 : if (!_clname) return 0;
93 0 : if (!strcmp(_clname, qt_meta_stringdata_OverviewPage))
94 : return static_cast<void*>(const_cast< OverviewPage*>(this));
95 0 : return QWidget::qt_metacast(_clname);
96 : }
97 :
98 0 : int OverviewPage::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
99 : {
100 0 : _id = QWidget::qt_metacall(_c, _id, _a);
101 0 : if (_id < 0)
102 : return _id;
103 0 : if (_c == QMetaObject::InvokeMetaMethod) {
104 0 : if (_id < 6)
105 0 : qt_static_metacall(this, _c, _id, _a);
106 0 : _id -= 6;
107 : }
108 0 : return _id;
109 : }
110 :
111 : // SIGNAL 0
112 0 : void OverviewPage::transactionClicked(const QModelIndex & _t1)
113 : {
114 0 : void *_a[] = { 0, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
115 0 : QMetaObject::activate(this, &staticMetaObject, 0, _a);
116 0 : }
117 : QT_END_MOC_NAMESPACE
|