1234567891011121314151617181920212223 |
- #include "focus-list.hpp"
- #include <QDragMoveEvent>
- FocusList::FocusList(QWidget *parent) : QListWidget(parent) {}
- void FocusList::focusInEvent(QFocusEvent *event)
- {
- QListWidget::focusInEvent(event);
- emit GotFocus();
- }
- void FocusList::dragMoveEvent(QDragMoveEvent *event)
- {
- QPoint pos = event->position().toPoint();
- int itemRow = row(itemAt(pos));
- if ((itemRow == currentRow() + 1) ||
- (currentRow() == count() - 1 && itemRow == -1))
- event->ignore();
- else
- QListWidget::dragMoveEvent(event);
- }
|