summaryrefslogtreecommitdiffstats
blob: df2cbfef2c6dec67191ead75b049e040fe066fe5 (plain)
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
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swift/QtUI/QtTabbable.h>

#include <QApplication>
#include <QKeyEvent>
#include <QShortcut>

#include <Swiften/Base/Platform.h>

#include <Swift/QtUI/QtChatTabs.h>
#include <Swift/QtUI/QtUtilities.h>

namespace Swift {

QtTabbable::QtTabbable() : QWidget() {

}

QtTabbable::~QtTabbable() {

}

bool QtTabbable::isWidgetSelected() {
    /*isActiveWindow() shouldn't be necessary, but I don't trust it as far as I can throw it*/
    if (!isActiveWindow()) {
        return false;
    }
    QtChatTabs* parent = qobject_cast<QtChatTabs*>(window());
    return parent ? parent->getCurrentTab() == this : isAncestorOf(QApplication::focusWidget());
}

bool QtTabbable::event(QEvent* event) {
    QKeyEvent* keyEvent = dynamic_cast<QKeyEvent*>(event);
    if (keyEvent) {
        // According to Qt's focus documentation, one can only override CTRL+TAB via reimplementing QWidget::event().
        if (keyEvent->modifiers().testFlag(QtUtilities::ctrlHardwareKeyModifier) && keyEvent->key() == Qt::Key_Tab) {
            // Only handle KeyRelease event as Linux also generate KeyPress event in case of CTRL+TAB being pressed
            // in the roster of a MUC.
            if (keyEvent->type() == QEvent::KeyRelease) {
                emit requestNextTab();
            }
            return true;
        }
#ifdef SWIFTEN_PLATFORM_LINUX
        else if (keyEvent->modifiers().testFlag(QtUtilities::ctrlHardwareKeyModifier) && keyEvent->key() == Qt::Key_Backtab && keyEvent->type() != QEvent::KeyRelease) {
#else
        else if (keyEvent->modifiers().testFlag(QtUtilities::ctrlHardwareKeyModifier) && keyEvent->key() == Qt::Key_Backtab) {
#endif
#ifdef SWIFTEN_PLATFORM_WINDOWS
            // Windows emits both the KeyPress and KeyRelease events.
            if (keyEvent->type() == QEvent::KeyPress) {
#else
            if (keyEvent->type() != QEvent::ShortcutOverride) {
#endif
                emit requestPreviousTab();
            }
            return true;
        }
    }
    return QWidget::event(event);
}

void QtTabbable::closeEvent(QCloseEvent* event) {
    emit windowClosing();
    event->accept();
}

}