-
Notifications
You must be signed in to change notification settings - Fork 5
/
columneditor.cpp
258 lines (240 loc) · 8.46 KB
/
columneditor.cpp
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/****************************************************************************
** Copyright (C) 2017 Olaf Japp
**
** This file is part of FlatSiteBuilder.
**
** FlatSiteBuilder is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** FlatSiteBuilder is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with FlatSiteBuilder. If not, see <http://www.gnu.org/licenses/>.
**
****************************************************************************/
#include "columneditor.h"
#include "elementeditor.h"
#include "widgetmimedata.h"
#include "contenteditor.h"
#include "pageeditor.h"
#include <QVBoxLayout>
#include <QDragEnterEvent>
#include <QDragLeaveEvent>
#include <QDragMoveEvent>
#include <QMimeData>
#include <QXmlStreamWriter>
#include <QTest>
ColumnEditor::ColumnEditor()
{
QPalette pal = palette();
pal.setColor(QPalette::Background, QColor(palette().base().color().name()).lighter());
setPalette(pal);
setAutoFillBackground(true);
m_layout = new QVBoxLayout();
m_layout->setAlignment(Qt::AlignTop);
setLayout(m_layout);
setAcceptDrops(true);
ElementEditor *ee = new ElementEditor();
m_layout->addWidget(ee, 0, Qt::AlignTop);
connect(ee, SIGNAL(elementEnabled()), this, SLOT(addElement()));
connect(ee, SIGNAL(elementDragged()), this, SLOT(addElement()));
connect(ee, SIGNAL(elementCopied(ElementEditor*)), this, SLOT(copyElement(ElementEditor*)));
}
void ColumnEditor::save(QXmlStreamWriter *stream)
{
stream->writeStartElement("Column");
stream->writeAttribute("span", QString::number(m_span));
stream->writeCharacters("");
for(int i = 0; i < m_layout->count(); i++)
{
ElementEditor *ee = dynamic_cast<ElementEditor*>(m_layout->itemAt(i)->widget());
if(ee)
ee->save(stream);
}
stream->writeEndElement();
}
void ColumnEditor::addElement()
{
ElementEditor *ee = new ElementEditor();
m_layout->addWidget(ee, 0, Qt::AlignTop);
ContentEditor *ce = getContentEditor();
if(ce)
ce->editChanged("Add Element");
connect(ee, SIGNAL(elementEnabled()), this, SLOT(addElement()));
connect(ee, SIGNAL(elementDragged()), this, SLOT(addElement()));
connect(ee, SIGNAL(elementCopied(ElementEditor*)), this, SLOT(copyElement(ElementEditor*)));
}
void ColumnEditor::copyElement(ElementEditor *e)
{
addElement(e->clone());
ContentEditor *ce = getContentEditor();
if(ce)
ce->editChanged("Copy Element");
}
void ColumnEditor::addElement(ElementEditor *ee)
{
m_layout->insertWidget(m_layout->count() - 1, ee, 0, Qt::AlignTop);
connect(ee, SIGNAL(elementEnabled()), this, SLOT(addElement()));
connect(ee, SIGNAL(elementDragged()), this, SLOT(addElement()));
connect(ee, SIGNAL(elementCopied(ElementEditor*)), this, SLOT(copyElement(ElementEditor*)));
}
ColumnEditor* ColumnEditor::clone()
{
ColumnEditor *nce = new ColumnEditor();
nce->setSpan(m_span);
for(int i = 0; i < m_layout->count(); i++)
{
ElementEditor *ee = dynamic_cast<ElementEditor*>(m_layout->itemAt(i)->widget());
if(ee->mode() != ElementEditor::Mode::Empty)
nce->addElement(ee->clone());
}
return nce;
}
void ColumnEditor::dragEnterEvent(QDragEnterEvent *event)
{
const WidgetMimeData *myData = qobject_cast<const WidgetMimeData *>(event->mimeData());
if(myData)
{
ElementEditor *ee = dynamic_cast<ElementEditor*>(myData->getData());
if(ee)
{
for(int i = 0; i < m_layout->count(); i++)
{
ElementEditor *editor = dynamic_cast<ElementEditor*>(m_layout->itemAt(i)->widget());
if(editor && editor->mode() == ElementEditor::Mode::Empty)
{
editor->setMode(ElementEditor::Mode::Dropzone);
break;
}
}
event->accept();
}
else
event->ignore();
}
else
event->ignore();
}
void ColumnEditor::dragLeaveEvent(QDragLeaveEvent *event)
{
for(int i = 0; i < m_layout->count(); i++)
{
ElementEditor *editor = dynamic_cast<ElementEditor*>(m_layout->itemAt(i)->widget());
if(editor && editor->mode() == ElementEditor::Mode::Dropzone)
{
// put editor to the end of the list
editor->setMode(ElementEditor::Mode::Empty);
m_layout->removeWidget(editor);
m_layout->addWidget(editor);
break;
}
}
event->accept();
}
void ColumnEditor::dragMoveEvent(QDragMoveEvent *event)
{
const WidgetMimeData *myData = qobject_cast<const WidgetMimeData *>(event->mimeData());
if(myData)
{
ElementEditor *ee = dynamic_cast<ElementEditor*>(myData->getData());
if(ee)
{
int row = event->pos().y() / (50 + m_layout->margin());
for(int i = 0; i < m_layout->count(); i++)
{
ElementEditor *editor = dynamic_cast<ElementEditor*>(m_layout->itemAt(i)->widget());
if(editor && editor->mode() == ElementEditor::Mode::Dropzone)
{
if(i != row)
{
// put dropzone under mouse pointer
m_layout->insertWidget(row, editor);
}
break;
}
}
event->setDropAction(Qt::MoveAction);
event->accept();
}
else
event->ignore();
}
else
event->ignore();
}
void ColumnEditor::dropEvent(QDropEvent *event)
{
const WidgetMimeData *myData = qobject_cast<const WidgetMimeData *>(event->mimeData());
if (myData)
{
ElementEditor *ee = dynamic_cast<ElementEditor*>(myData->getData());
if(ee)
{
for(int i = 0; i < m_layout->count(); i++)
{
ElementEditor *dz = dynamic_cast<ElementEditor*>(m_layout->itemAt(i)->widget());
if(dz && dz->mode() == ElementEditor::Mode::Dropzone)
{
// remove widget if it belongs to this layout
m_layout->removeWidget(ee);
// replace dropzone with dragged element
m_layout->replaceWidget(dz, ee);
// and put dropzone to the end of the list
dz->setMode(ElementEditor::Mode::Empty);
m_layout->removeWidget(dz);
m_layout->addWidget(dz);
break;
}
}
ee->dropped();
ee->show();
ee->disconnect(SIGNAL(elementEnabled()));
ee->disconnect(SIGNAL(elementDragged()));
ee->disconnect(SIGNAL(elementCopied(ElementEditor*)));
ContentEditor *ce = getContentEditor();
if(ce)
ce->editChanged("Move Element");
connect(ee, SIGNAL(elementEnabled()), this, SLOT(addElement()));
connect(ee, SIGNAL(elementDragged()), this, SLOT(addElement()));
connect(ee, SIGNAL(elementCopied(ElementEditor*)), this, SLOT(copyElement(ElementEditor*)));
event->setDropAction(Qt::MoveAction);
event->accept();
}
else
event->ignore();
}
else
event->ignore();
}
ContentEditor* ColumnEditor::getContentEditor()
{
RowEditor *re = dynamic_cast<RowEditor*>(parentWidget());
if(re)
{
SectionEditor *se = dynamic_cast<SectionEditor*>(re->parentWidget());
if(se)
{
PageEditor *pe = dynamic_cast<PageEditor*>(se->parentWidget());
if(pe)
{
QWidget *sa = dynamic_cast<QWidget*>(pe->parentWidget());
if(sa)
{
QWidget *vp = dynamic_cast<QWidget*>(sa->parentWidget());
if(vp)
{
ContentEditor *cee = dynamic_cast<ContentEditor*>(vp->parentWidget());
if(cee)
return cee;
}
}
}
}
}
return NULL;
}