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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
|
/***************************************************************************
* Copyright (C) 2007 by Peter Penz <[email protected]> *
* *
* 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 2 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, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
#include "dolphincolumnview.h"
#include "dolphincontroller.h"
#include "dolphinsettings.h"
#include "dolphin_columnmodesettings.h"
#include <kcolorutils.h>
#include <kcolorscheme.h>
#include <kdirlister.h>
#include <kdirmodel.h>
#include <QAbstractProxyModel>
#include <QApplication>
#include <QPoint>
/**
* Represents one column inside the DolphinColumnView and has been
* extended to respect view options and hovering information.
*/
class ColumnWidget : public QListView
{
public:
ColumnWidget(QWidget* parent,
DolphinColumnView* columnView,
const KUrl& url);
virtual ~ColumnWidget();
/** Sets the size of the icons. */
void setDecorationSize(const QSize& size);
/**
* An active column is defined as column, which shows the same URL
* as indicated by the URL navigator. The active column is usually
* drawn in a lighter color. All operations are applied to this column.
*/
void setActive(bool active);
inline bool isActive() const;
inline const KUrl& url() const;
void obtainSelectionModel();
void releaseSelectionModel();
protected:
virtual QStyleOptionViewItem viewOptions() const;
virtual void dragEnterEvent(QDragEnterEvent* event);
virtual void dragLeaveEvent(QDragLeaveEvent* event);
virtual void dragMoveEvent(QDragMoveEvent* event);
virtual void dropEvent(QDropEvent* event);
virtual void mousePressEvent(QMouseEvent* event);
virtual void mouseMoveEvent(QMouseEvent* event);
virtual void mouseReleaseEvent(QMouseEvent* event);
virtual void paintEvent(QPaintEvent* event);
virtual void contextMenuEvent(QContextMenuEvent* event);
protected slots:
virtual void selectionChanged(const QItemSelection& selected, const QItemSelection& deselected);
private:
/** Used by ColumnWidget::setActive(). */
void activate();
/** Used by ColumnWidget::setActive(). */
void deactivate();
private:
bool m_active;
bool m_swallowMouseMoveEvents;
DolphinColumnView* m_view;
KUrl m_url;
KUrl m_childUrl; // URL of the next column that is shown
QStyleOptionViewItem m_viewOptions;
bool m_dragging; // TODO: remove this property when the issue #160611 is solved in Qt 4.4
QRect m_dropRect; // TODO: remove this property when the issue #160611 is solved in Qt 4.4
};
ColumnWidget::ColumnWidget(QWidget* parent,
DolphinColumnView* columnView,
const KUrl& url) :
QListView(parent),
m_active(true),
m_swallowMouseMoveEvents(false),
m_view(columnView),
m_url(url),
m_childUrl(),
m_dragging(false),
m_dropRect()
{
setMouseTracking(true);
viewport()->setAttribute(Qt::WA_Hover);
// apply the column mode settings to the widget
const ColumnModeSettings* settings = DolphinSettings::instance().columnModeSettings();
Q_ASSERT(settings != 0);
m_viewOptions = QListView::viewOptions();
QFont font(settings->fontFamily(), settings->fontSize());
font.setItalic(settings->italicFont());
font.setBold(settings->boldFont());
m_viewOptions.font = font;
const int iconSize = settings->iconSize();
m_viewOptions.decorationSize = QSize(iconSize, iconSize);
activate();
}
ColumnWidget::~ColumnWidget()
{
}
void ColumnWidget::setDecorationSize(const QSize& size)
{
m_viewOptions.decorationSize = size;
doItemsLayout();
}
void ColumnWidget::setActive(bool active)
{
if (active) {
obtainSelectionModel();
} else {
releaseSelectionModel();
}
if (m_active == active) {
return;
}
m_active = active;
if (active) {
activate();
} else {
deactivate();
}
}
inline bool ColumnWidget::isActive() const
{
return m_active;
}
const KUrl& ColumnWidget::url() const
{
return m_url;
}
void ColumnWidget::obtainSelectionModel()
{
if (selectionModel() != m_view->selectionModel()) {
selectionModel()->deleteLater();
setSelectionModel(m_view->selectionModel());
}
}
void ColumnWidget::releaseSelectionModel()
{
if (selectionModel() == m_view->selectionModel()) {
QItemSelectionModel* replacementModel = new QItemSelectionModel(model());
setSelectionModel(replacementModel);
}
}
QStyleOptionViewItem ColumnWidget::viewOptions() const
{
return m_viewOptions;
}
void ColumnWidget::dragEnterEvent(QDragEnterEvent* event)
{
if (event->mimeData()->hasUrls()) {
event->acceptProposedAction();
}
m_dragging = true;
}
void ColumnWidget::dragLeaveEvent(QDragLeaveEvent* event)
{
QListView::dragLeaveEvent(event);
// TODO: remove this code when the issue #160611 is solved in Qt 4.4
m_dragging = false;
setDirtyRegion(m_dropRect);
}
void ColumnWidget::dragMoveEvent(QDragMoveEvent* event)
{
QListView::dragMoveEvent(event);
// TODO: remove this code when the issue #160611 is solved in Qt 4.4
const QModelIndex index = indexAt(event->pos());
setDirtyRegion(m_dropRect);
m_dropRect = visualRect(index);
setDirtyRegion(m_dropRect);
}
void ColumnWidget::dropEvent(QDropEvent* event)
{
const KUrl::List urls = KUrl::List::fromMimeData(event->mimeData());
if (!urls.isEmpty()) {
event->acceptProposedAction();
m_view->m_controller->indicateDroppedUrls(urls,
indexAt(event->pos()),
event->source());
}
QListView::dropEvent(event);
m_dragging = false;
}
void ColumnWidget::mousePressEvent(QMouseEvent* event)
{
m_view->requestSelectionModel(this);
bool swallowMousePressEvent = false;
const QModelIndex index = indexAt(event->pos());
if (index.isValid()) {
// A click on an item has been done. Only request an activation
// if the item is not a directory.
const QAbstractProxyModel* proxyModel = static_cast<const QAbstractProxyModel*>(m_view->model());
const KDirModel* dirModel = static_cast<const KDirModel*>(proxyModel->sourceModel());
const QModelIndex dirIndex = proxyModel->mapToSource(index);
KFileItem* item = dirModel->itemForIndex(dirIndex);
if (item != 0) {
QItemSelectionModel* selModel = selectionModel();
const Qt::KeyboardModifiers modifier = QApplication::keyboardModifiers();
if (modifier & Qt::ControlModifier) {
m_view->requestActivation(this);
selModel->select(index, QItemSelectionModel::Select);
swallowMousePressEvent = true;
} else if (item->isDir()) {
m_childUrl = item->url();
viewport()->update();
// Only request the activation if not the left button is pressed.
// The left button on a directory opens a new column, hence requesting
// an activation is useless as the new column will request the activation
// afterwards.
if (event->button() != Qt::LeftButton) {
m_view->requestActivation(this);
}
} else {
m_view->requestActivation(this);
}
// TODO: check behavior with ShiftModifier
//if (modifier & Qt::ShiftModifier)
// TODO: is the assumption OK that Qt::RightButton always represents the context menu button?
if (event->button() == Qt::RightButton) {
swallowMousePressEvent = true;
if (!selModel->isSelected(index)) {
clearSelection();
}
selModel->select(index, QItemSelectionModel::Select);
}
}
} else {
// a click on the viewport has been done
m_view->requestActivation(this);
// Swallow mouse move events if a click is done on the viewport. Otherwise the QColumnView
// triggers an unwanted loading of directories on hovering folder items.
m_swallowMouseMoveEvents = true;
clearSelection();
}
if (!swallowMousePressEvent) {
QListView::mousePressEvent(event);
}
}
void ColumnWidget::mouseMoveEvent(QMouseEvent* event)
{
// see description in ColumnView::mousePressEvent()
if (!m_swallowMouseMoveEvents) {
QListView::mouseMoveEvent(event);
}
}
void ColumnWidget::mouseReleaseEvent(QMouseEvent* event)
{
QListView::mouseReleaseEvent(event);
m_swallowMouseMoveEvents = false;
}
void ColumnWidget::paintEvent(QPaintEvent* event)
{
if (!m_childUrl.isEmpty()) {
// indicate the shown URL of the next column by highlighting the shown folder item
const QAbstractProxyModel* proxyModel = static_cast<const QAbstractProxyModel*>(m_view->model());
const KDirModel* dirModel = static_cast<const KDirModel*>(proxyModel->sourceModel());
const QModelIndex dirIndex = dirModel->indexForUrl(m_childUrl);
const QModelIndex proxyIndex = proxyModel->mapFromSource(dirIndex);
if (proxyIndex.isValid() && !selectionModel()->isSelected(proxyIndex)) {
const QRect itemRect = visualRect(proxyIndex);
QPainter painter(viewport());
painter.save();
QColor color = KColorScheme(KColorScheme::View).foreground();
color.setAlpha(32);
painter.setPen(Qt::NoPen);
painter.setBrush(color);
painter.drawRect(itemRect);
painter.restore();
}
}
QListView::paintEvent(event);
// TODO: remove this code when the issue #160611 is solved in Qt 4.4
if (m_dragging) {
const QBrush& brush = m_viewOptions.palette.brush(QPalette::Normal, QPalette::Highlight);
DolphinController::drawHoverIndication(viewport(), m_dropRect, brush);
}
}
void ColumnWidget::contextMenuEvent(QContextMenuEvent* event)
{
if (!m_active) {
m_view->requestActivation(this);
}
QListView::contextMenuEvent(event);
const QModelIndex index = indexAt(event->pos());
if (index.isValid() || m_active) {
// Only open a context menu above an item or if the mouse is above
// the active column.
const QPoint pos = m_view->viewport()->mapFromGlobal(event->globalPos());
m_view->m_controller->triggerContextMenuRequest(pos);
}
}
void ColumnWidget::selectionChanged(const QItemSelection& selected, const QItemSelection& deselected)
{
// inactive views should not have any selection
if (!m_active) {
clearSelection();
}
QListView::selectionChanged(selected, deselected);
}
void ColumnWidget::activate()
{
const QColor bgColor = KColorScheme(KColorScheme::View).background();
QPalette palette = viewport()->palette();
palette.setColor(viewport()->backgroundRole(), bgColor);
viewport()->setPalette(palette);
update();
}
void ColumnWidget::deactivate()
{
QColor bgColor = KColorScheme(KColorScheme::View).background();
const QColor fgColor = KColorScheme(KColorScheme::View).foreground();
bgColor = KColorUtils::mix(bgColor, fgColor, 0.04);
QPalette palette = viewport()->palette();
palette.setColor(viewport()->backgroundRole(), bgColor);
viewport()->setPalette(palette);
update();
}
// ---
DolphinColumnView::DolphinColumnView(QWidget* parent, DolphinController* controller) :
QColumnView(parent),
m_controller(controller)
{
Q_ASSERT(controller != 0);
setAcceptDrops(true);
setDragDropMode(QAbstractItemView::DragDrop);
setDropIndicatorShown(false);
setSelectionMode(ExtendedSelection);
if (KGlobalSettings::singleClick()) {
connect(this, SIGNAL(clicked(const QModelIndex&)),
this, SLOT(triggerItem(const QModelIndex&)));
} else {
connect(this, SIGNAL(doubleClicked(const QModelIndex&)),
this, SLOT(triggerItem(const QModelIndex&)));
}
connect(this, SIGNAL(entered(const QModelIndex&)),
controller, SLOT(emitItemEntered(const QModelIndex&)));
connect(this, SIGNAL(viewportEntered()),
controller, SLOT(emitViewportEntered()));
connect(controller, SIGNAL(zoomIn()),
this, SLOT(zoomIn()));
connect(controller, SIGNAL(zoomOut()),
this, SLOT(zoomOut()));
connect(controller, SIGNAL(urlChanged(const KUrl&)),
this, SLOT(updateColumnsState(const KUrl&)));
updateDecorationSize();
}
DolphinColumnView::~DolphinColumnView()
{
}
QAbstractItemView* DolphinColumnView::createColumn(const QModelIndex& index)
{
// let the column widget be aware about its URL...
KUrl columnUrl;
if (viewport()->children().count() == 0) {
// For the first column widget the directory lister has not been started
// yet, hence use the URL from the controller instead.
columnUrl = m_controller->url();
} else {
const QAbstractProxyModel* proxyModel = static_cast<const QAbstractProxyModel*>(model());
const KDirModel* dirModel = static_cast<const KDirModel*>(proxyModel->sourceModel());
const QModelIndex dirModelIndex = proxyModel->mapToSource(index);
KFileItem* fileItem = dirModel->itemForIndex(dirModelIndex);
if (fileItem != 0) {
columnUrl = fileItem->url();
}
}
ColumnWidget* view = new ColumnWidget(viewport(), this, columnUrl);
// The following code has been copied 1:1 from QColumnView::createColumn().
// Copyright (C) 1992-2007 Trolltech ASA. In Qt 4.4 the new method
// QColumnView::initializeColumn() will be available for this.
view->setFrameShape(QFrame::NoFrame);
view->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
view->setMinimumWidth(100);
view->setAttribute(Qt::WA_MacShowFocusRect, false);
// copy the 'view' behavior
view->setDragDropMode(dragDropMode());
view->setDragDropOverwriteMode(dragDropOverwriteMode());
view->setDropIndicatorShown(showDropIndicator());
view->setAlternatingRowColors(alternatingRowColors());
view->setAutoScroll(hasAutoScroll());
view->setEditTriggers(editTriggers());
view->setHorizontalScrollMode(horizontalScrollMode());
view->setIconSize(iconSize());
view->setSelectionBehavior(selectionBehavior());
view->setSelectionMode(selectionMode());
view->setTabKeyNavigation(tabKeyNavigation());
view->setTextElideMode(textElideMode());
view->setVerticalScrollMode(verticalScrollMode());
view->setModel(model());
// set the delegate to be the columnview delegate
QAbstractItemDelegate* delegate = view->itemDelegate();
view->setItemDelegate(itemDelegate());
delete delegate;
view->setRootIndex(index);
if (model()->canFetchMore(index)) {
model()->fetchMore(index);
}
return view;
}
void DolphinColumnView::mousePressEvent(QMouseEvent* event)
{
m_controller->triggerActivation();
QColumnView::mousePressEvent(event);
}
void DolphinColumnView::dragEnterEvent(QDragEnterEvent* event)
{
if (event->mimeData()->hasUrls()) {
event->acceptProposedAction();
}
}
void DolphinColumnView::dropEvent(QDropEvent* event)
{
const KUrl::List urls = KUrl::List::fromMimeData(event->mimeData());
if (!urls.isEmpty()) {
m_controller->indicateDroppedUrls(urls,
indexAt(event->pos()),
event->source());
event->acceptProposedAction();
}
QColumnView::dropEvent(event);
}
void DolphinColumnView::zoomIn()
{
if (isZoomInPossible()) {
ColumnModeSettings* settings = DolphinSettings::instance().columnModeSettings();
// TODO: get rid of K3Icon sizes
switch (settings->iconSize()) {
case K3Icon::SizeSmall: settings->setIconSize(K3Icon::SizeMedium); break;
case K3Icon::SizeMedium: settings->setIconSize(K3Icon::SizeLarge); break;
default: Q_ASSERT(false); break;
}
updateDecorationSize();
}
}
void DolphinColumnView::zoomOut()
{
if (isZoomOutPossible()) {
ColumnModeSettings* settings = DolphinSettings::instance().columnModeSettings();
// TODO: get rid of K3Icon sizes
switch (settings->iconSize()) {
case K3Icon::SizeLarge: settings->setIconSize(K3Icon::SizeMedium); break;
case K3Icon::SizeMedium: settings->setIconSize(K3Icon::SizeSmall); break;
default: Q_ASSERT(false); break;
}
updateDecorationSize();
}
}
void DolphinColumnView::triggerItem(const QModelIndex& index)
{
m_controller->triggerItem(index);
updateColumnsState(m_controller->url());
}
void DolphinColumnView::updateColumnsState(const KUrl& url)
{
foreach (QObject* object, viewport()->children()) {
if (object->inherits("QListView")) {
ColumnWidget* widget = static_cast<ColumnWidget*>(object);
widget->setActive(widget->url() == url);
}
}
}
void DolphinColumnView::updateDecorationSize()
{
ColumnModeSettings* settings = DolphinSettings::instance().columnModeSettings();
const int iconSize = settings->iconSize();
foreach (QObject* object, viewport()->children()) {
if (object->inherits("QListView")) {
ColumnWidget* widget = static_cast<ColumnWidget*>(object);
widget->setDecorationSize(QSize(iconSize, iconSize));
}
}
m_controller->setZoomInPossible(isZoomInPossible());
m_controller->setZoomOutPossible(isZoomOutPossible());
doItemsLayout();
}
bool DolphinColumnView::isZoomInPossible() const
{
ColumnModeSettings* settings = DolphinSettings::instance().columnModeSettings();
return settings->iconSize() < K3Icon::SizeLarge;
}
bool DolphinColumnView::isZoomOutPossible() const
{
ColumnModeSettings* settings = DolphinSettings::instance().columnModeSettings();
return settings->iconSize() > K3Icon::SizeSmall;
}
void DolphinColumnView::requestActivation(QWidget* column)
{
foreach (QObject* object, viewport()->children()) {
if (object->inherits("QListView")) {
ColumnWidget* widget = static_cast<ColumnWidget*>(object);
const bool isActive = (widget == column);
widget->setActive(isActive);
if (isActive) {
m_controller->setUrl(widget->url());
}
}
}
}
void DolphinColumnView::requestSelectionModel(QAbstractItemView* view)
{
foreach (QObject* object, viewport()->children()) {
if (object->inherits("QListView")) {
ColumnWidget* widget = static_cast<ColumnWidget*>(object);
if (widget == view) {
widget->obtainSelectionModel();
} else {
widget->releaseSelectionModel();
}
}
}
}
#include "dolphincolumnview.moc"
|