File: RelinkablePathVisualization.cpp

package info (click to toggle)
scantailor 0.9.12.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,556 kB
  • ctags: 9,057
  • sloc: cpp: 71,264; ansic: 481; sh: 121; makefile: 10
file content (318 lines) | stat: -rw-r--r-- 9,266 bytes parent folder | download | duplicates (2)
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/*
    Scan Tailor - Interactive post-processing tool for scanned pages.
    Copyright (C)  Joseph Artsimovich <joseph.artsimovich@gmail.com>

    This program 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.

    This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "RelinkablePathVisualization.h"
#include "RelinkablePathVisualization.h.moc"
#include "RelinkablePath.h"
#include "QtSignalForwarder.h"
#include <QHBoxLayout>
#include <QLayoutItem>
#include <QStringList>
#include <QPushButton>
#include <QPaintEvent>
#include <QCursor>
#include <QPalette>
#include <QStyle>
#include <QStylePainter>
#include <QStyleOption>
#include <QStyleOptionButton>
#include <QFile>
#include <QVariant>
#ifndef Q_MOC_RUN
#include <boost/bind.hpp>
#include <boost/foreach.hpp>
#endif
#include <vector>

struct RelinkablePathVisualization::PathComponent
{
	QString label;
	QString prefixPath; // Including the component itself.
	QString suffixPath; // Rest of the path.
	RelinkablePath::Type type; // File or Dir.
	bool exists;

	PathComponent(QString const& lbl, QString const& prefix_path, QString const& suffix_path, RelinkablePath::Type t)
		: label(lbl), prefixPath(prefix_path), suffixPath(suffix_path), type(t), exists(false) {}
};


class RelinkablePathVisualization::ComponentButton : public QPushButton
{
public:
	ComponentButton(QWidget* parent = 0) : QPushButton(parent) {}
protected:
	virtual void paintEvent(QPaintEvent* evt);
};


RelinkablePathVisualization::RelinkablePathVisualization(QWidget* parent)
:	QWidget(parent)
,	m_pLayout(new QHBoxLayout(this))
{
	m_pLayout->setSpacing(0);
	m_pLayout->setMargin(0);
}

void
RelinkablePathVisualization::clear()
{
	for (int count; (count = m_pLayout->count()); ) {
		QLayoutItem* item = m_pLayout->takeAt(count - 1);
		if (QWidget* wgt = item->widget()) {
			wgt->deleteLater(); // We may be called from the widget's signal.
		}
		delete item;
	}
}

void
RelinkablePathVisualization::setPath(RelinkablePath const& path, bool clickable)
{
	clear();

	QStringList components(path.normalizedPath().split(QChar('/'), QString::SkipEmptyParts));
	if (components.empty()) {
		return;
	}

	// prefix_path is the path up to and including the current component.
	QString prefix_path;

	if (path.normalizedPath().startsWith(QLatin1String("//"))) {
		// That's the Windows \\host\path thing.
		components.front().prepend(QLatin1String("//"));
	} else if (path.normalizedPath().startsWith(QChar('/'))) {
		// Unix paths start with a slash.
		prefix_path += QChar('/');
	}

	std::vector<PathComponent> path_components;
	path_components.reserve(components.size());
	
	for (QStringList::const_iterator it(components.begin()); it != components.end(); ++it) {
		QString const& component = *it;
		
		if (!prefix_path.isEmpty() && !prefix_path.endsWith('/')) {
			prefix_path += QChar('/');
		}
		prefix_path += component;

		// Rest of the path.
		QString suffix_path;
		for (QStringList::const_iterator it2(it); ++it2 != components.end(); ) {
			if (!suffix_path.isEmpty()) {
				suffix_path += QChar('/');
			}
			suffix_path += *it2;
		}

		path_components.push_back(PathComponent(component, prefix_path, suffix_path, RelinkablePath::Dir));
	}

	// The last path component is either a file or a dir, while all the previous ones are dirs.
	path_components.back().type = path.type();

	checkForExistence(path_components);

	int component_idx = -1;
	BOOST_FOREACH(PathComponent& path_component, path_components) {
		++component_idx;
		ComponentButton* btn = new ComponentButton(this);
		m_pLayout->addWidget(btn);
		btn->setText(path_component.label.replace(QChar('/'), QChar('\\')));
		btn->setEnabled(clickable);
		if (clickable) {
			btn->setCursor(QCursor(Qt::PointingHandCursor));
		}
		stylePathComponentButton(btn, path_component.exists);
		
		new QtSignalForwarder(
			btn, SIGNAL(clicked()), boost::bind(
				&RelinkablePathVisualization::onClicked, this,
				component_idx, path_component.prefixPath,
				path_component.suffixPath, path_component.type
			)
		);
	}

	m_pLayout->addStretch();
}

void
RelinkablePathVisualization::stylePathComponentButton(QAbstractButton* btn, bool exists)
{
	QColor const border_color(palette().color(QPalette::Window).darker(150));

	QString style =
		"QAbstractButton {\n"
		"	border: 2px solid " + border_color.name() + ";\n"
		"	border-radius: 0.5em;\n"
		"	padding: 0.2em;\n"
		"	margin-left: 1px;\n"
		"	margin-right: 1px;\n"
		"	min-width: 2em;\n"
		"	font-weight: bold;\n";
	if (exists) {
		style +=
		"	color: #3a5827;\n"
		"	background: qradialgradient(cx: 0.3, cy: -0.4, fx: 0.3, fy: -0.4, radius: 1.35, stop: 0 #fff, stop: 1 #89e74a);\n";
	} else {
		style +=
		"	color: #6f2719;\n"
		"	background: qradialgradient(cx: 0.3, cy: -0.4, fx: 0.3, fy: -0.4, radius: 1.35, stop: 0 #fff, stop: 1 #ff674b);\n";
	}
	style +=
		"}\n"
		"QAbstractButton:hover {\n"
		"	color: #333;\n"
		"	background: qradialgradient(cx: 0.3, cy: -0.4, fx: 0.3, fy: -0.4, radius: 1.35, stop: 0 #fff, stop: 1 #bbb);\n"
		"}\n"
		"QAbstractButton:pressed {\n"
		"	color: #333;\n"
		"	background: qradialgradient(cx: 0.4, cy: -0.1, fx: 0.4, fy: -0.1, radius: 1.35, stop: 0 #fff, stop: 1 #ddd);\n"
		"}\n";

	btn->setStyleSheet(style);
}

void
RelinkablePathVisualization::paintEvent(QPaintEvent* evt)
{
	int const total_items = m_pLayout->count(); // Note that there is an extra stretch item.
	for (int i = 0; i < total_items; ++i) {
		QWidget* widget = m_pLayout->itemAt(i)->widget();
		if (!widget) {
			continue;
		}
		
		QStyleOption option;
		option.initFrom(widget);

		if (option.state & QStyle::State_MouseOver) {
			widget->setProperty("highlightEnforcer", true);

			// Update the forceHighlight attribute for all buttons.
			for (int j = 0; j < total_items; ++j) {
				widget = m_pLayout->itemAt(j)->widget();
				if (widget) {
					bool const highlight = j <= i;
					if (widget->property("forceHighlight").toBool() != highlight) {
						widget->setProperty("forceHighlight", highlight);
						widget->update();
					}
				}
			}
			break;
		} else if (widget->property("highlightEnforcer").toBool()) {
			widget->setProperty("highlightEnforcer", false);

			// Update the forceHighlight attribute for all buttons.
			for (int j = 0; j < total_items; ++j) {
				widget = m_pLayout->itemAt(j)->widget();
				if (widget) {
					bool const highlight = false;
					if (widget->property("forceHighlight").toBool() != highlight) {
						widget->setProperty("forceHighlight", highlight);
						widget->update();
					}
				}
			}
			break;
		}
	}
}

void
RelinkablePathVisualization::onClicked(
	int component_idx, QString const& prefix_path, QString const& suffix_path, int type)
{
	// We'd like highlighting to stick until this method returns.

	for (int i = 0; i <= component_idx; ++i) {
		QWidget* widget = m_pLayout->itemAt(i)->widget();
		if (widget) {
			widget->setProperty("stickHighlight", true);
		}
	}

	emit clicked(prefix_path, suffix_path, type);

	// Note that clear() or setPath() might have been called by a signal handler.
	int const total_items = m_pLayout->count(); // Note that there is an extra stretch item.
	for (int i = 0; i <= component_idx && i < total_items; ++i) {
		QWidget* widget = m_pLayout->itemAt(i)->widget();
		if (widget) {
			widget->setProperty("stickHighlight", false);
		}
	}
}

void
RelinkablePathVisualization::checkForExistence(std::vector<PathComponent>& components)
{
	// Instead of calling QFile::exists() [which also works on directories]
	// for every component, we use binary search. That's especially important
	// when dealing with network paths.

	if (components.empty()) {
		return;
	}

	if (QFile::exists(components.back().prefixPath)) {
		BOOST_FOREACH(PathComponent& comp, components) {
			comp.exists = true;
		}
		return;
	}

	int left = -1; // Existing component (unless -1).
	int right = components.size() - 1; // Non-existing component (we checked it above).
	while (right - left > 1) {
		int const mid = (left + right + 1) >> 1;
		if (QFile::exists(components[mid].prefixPath)) {
			left = mid;
		} else {
			right = mid;
		}
	}

	for (int i = components.size() - 1; i >= 0; --i) {
		components[i].exists = (i < right);
	}
}


/*============================ ComponentButton ============================*/

void
RelinkablePathVisualization::ComponentButton::paintEvent(QPaintEvent* evt)
{
	QStyleOptionButton option;
	option.initFrom(this);
	option.text = text();
	if (property("forceHighlight").toBool() || property("stickHighlight").toBool()) {
		option.state |= QStyle::State_MouseOver;
	}

	// Prevent weird looking font effects for disabled buttons with Windows XP style.
	option.state |= QStyle::State_Enabled;
	
	QStylePainter painter(this);
	painter.drawControl(QStyle::CE_PushButton, option);
}