File size: 2,723 Bytes
a4cf109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#include <QChildEvent>
#include "ButtonItem.h"
#include "GridLayoutItem.h"
#include "ModeItem.h"

namespace QuickKeyboard
{

ModeItem::ModeItem(QQuickItem *parent):
	QQuickItem(parent),
	m_layout(0)
{
	setVisible(false);
	setLayout(new GridLayoutItem());
}

ModeItem::~ModeItem()
{
}

LayoutItem *ModeItem::layout() const
{
	return m_layout;
}

void ModeItem::setLayout(LayoutItem *layout)
{
	if (m_layout == layout) {
		return;
	}

	if (m_layout) {
		m_layout->setParentItem(0);
		delete m_layout;
	}

	if (layout) {
		layout->setParentItem(this);
		for (ButtonItem *button : m_buttons) {
			m_layout->addButton(button);
		}
		layout->property("anchors").value<QObject *>()->setProperty("fill", QVariant::fromValue<QQuickItem *>(this));
	}
	m_layout = layout;
}

QQmlListProperty<ButtonItem> ModeItem::buttons()
{
	return QQmlListProperty<ButtonItem>(
		this,
		&m_buttons,
		&ModeItem::buttons_append,
		&ModeItem::buttons_count,
		&ModeItem::buttons_at,
		&ModeItem::buttons_clear
	);
}

void ModeItem::buttons_append(QQmlListProperty<ButtonItem> *property, ButtonItem *button)
{
	ModeItem *that = static_cast<ModeItem *>(property->object);
	button->setParentItem(that);
	that->m_buttons.append(button);
	if (that->m_layout) {
		that->m_layout->addButton(button);
	}
	QObject::connect(button, SIGNAL(symbolTriggered(const QString &)), that, SIGNAL(symbolTriggered(const QString &)));
	QObject::connect(button, SIGNAL(triggered()), that, SLOT(setModifiersInactive()));
}

int ModeItem::buttons_count(QQmlListProperty<ButtonItem> *property)
{
	ModeItem *that = static_cast<ModeItem *>(property->object);
	return that->m_buttons.count();
}

ButtonItem *ModeItem::buttons_at(QQmlListProperty<ButtonItem> *property, int idx)
{
	ModeItem *that = static_cast<ModeItem *>(property->object);
	return that->m_buttons.value(idx, 0);
}

void ModeItem::buttons_clear(QQmlListProperty<ButtonItem> *property)
{
	ModeItem *that = static_cast<ModeItem *>(property->object);
	if (that->m_layout) {
		that->m_layout->clearButtons();
	}
	for (ButtonItem *button : that->m_buttons) {
		QObject::disconnect(button, SIGNAL(symbolTriggered(const QString &)), that, SIGNAL(symbolTriggered(const QString &)));
		QObject::disconnect(button, SIGNAL(triggered()), that, SLOT(setModifiersInactive()));
		button->setParentItem(0);
	}
	that->m_buttons.clear();
}

void ModeItem::itemChange(ItemChange change, const ItemChangeData &value)
{
	QQuickItem::itemChange(change, value);
	if (change == QQuickItem::ItemVisibleHasChanged && !isVisible()) {
		setModifiersInactive();
	}
}

void ModeItem::setModifiersInactive()
{
	for (ButtonItem *button : m_buttons) {
		if (button->isModifier()) {
			button->setActive(false);
		}
	}
}

} /* QuickKeyboard */