-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GUI: Allow deleting video files with the Delete key
- Loading branch information
cantabile
committed
Jul 31, 2016
1 parent
a31f414
commit cb87b1b
Showing
5 changed files
with
96 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
Copyright (c) 2015, John Smith | ||
Permission to use, copy, modify, and/or distribute this software for | ||
any purpose with or without fee is hereby granted, provided that the | ||
above copyright notice and this permission notice appear in all copies. | ||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL | ||
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR | ||
BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES | ||
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, | ||
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, | ||
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS | ||
SOFTWARE. | ||
*/ | ||
|
||
|
||
#include <QKeyEvent> | ||
|
||
#include "ListWidget.h" | ||
|
||
void ListWidget::keyPressEvent(QKeyEvent *event) { | ||
auto mod = event->modifiers(); | ||
int key = event->key(); | ||
|
||
if (mod == Qt::NoModifier && key == Qt::Key_Delete) { | ||
emit deletePressed(); | ||
return; | ||
} | ||
|
||
QListWidget::keyPressEvent(event); | ||
} | ||
|
||
|
||
QList<QListWidgetItem *> ListWidget::selectedItems() const { | ||
auto selection = QListWidget::selectedItems(); | ||
|
||
auto cmp = [this] (const QListWidgetItem *a, const QListWidgetItem *b) -> bool { | ||
return row(a) < row(b); | ||
}; | ||
std::sort(selection.begin(), selection.end(), cmp); | ||
|
||
return selection; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
Copyright (c) 2015, John Smith | ||
Permission to use, copy, modify, and/or distribute this software for | ||
any purpose with or without fee is hereby granted, provided that the | ||
above copyright notice and this permission notice appear in all copies. | ||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL | ||
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR | ||
BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES | ||
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, | ||
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, | ||
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS | ||
SOFTWARE. | ||
*/ | ||
|
||
|
||
#ifndef D2V_WITCH_LISTWIDGET_H | ||
#define D2V_WITCH_LISTWIDGET_H | ||
|
||
#include <QListWidget> | ||
|
||
class ListWidget : public QListWidget { | ||
Q_OBJECT | ||
|
||
signals: | ||
void deletePressed(); | ||
|
||
private: | ||
void keyPressEvent(QKeyEvent *event); | ||
|
||
public: | ||
using QListWidget::QListWidget; | ||
|
||
QList<QListWidgetItem *> selectedItems() const; | ||
}; | ||
|
||
#endif // D2V_WITCH_LISTWIDGET_H |