┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/filterbar.cpp
blob: 46c28f3c2f2d0774a16b3e741803f02c87c779c1 (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
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
/***************************************************************************
 *   Copyright (C) 2006 by Peter Penz <[email protected]>                  *
 *   Copyright (C) 2006 by Gregor Kališnik <[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 "filterbar.h"

#include <QBoxLayout>
#include <QKeyEvent>
#include <QLabel>
#include <QToolButton>

#include <kdialog.h>
#include <klocale.h>
#include <klineedit.h>
#include <kiconloader.h>

#include "dolphinmainwindow.h"

FilterBar::FilterBar(QWidget* parent) :
        QWidget(parent)
{
    const int gap = 3;

    QVBoxLayout* vLayout = new QVBoxLayout(this);
    vLayout->setMargin(0);
    vLayout->addSpacing(gap);

    QHBoxLayout* hLayout = new QHBoxLayout(vLayout);
    hLayout->setMargin(0);
    hLayout->addSpacing(gap);

    m_filter = new QLabel(i18n("Filter:"), this);
    hLayout->addWidget(m_filter);
    hLayout->addSpacing(KDialog::spacingHint());

    m_filterInput = new KLineEdit(this);
    m_filter->setBuddy(m_filterInput);
    hLayout->addWidget(m_filterInput);

    m_close = new QToolButton(this);
    m_close->setAutoRaise(true);
    m_close->setIcon(KIcon("list-remove"));
    m_close->setToolTip(i18n("Hide Filter Bar"));
    hLayout->addWidget(m_close);
    hLayout->addSpacing(gap);

    connect(m_filterInput, SIGNAL(textChanged(const QString&)),
            this, SIGNAL(filterChanged(const QString&)));
    connect(m_close, SIGNAL(clicked()), this, SLOT(emitCloseRequest()));
}

FilterBar::~FilterBar()
{}

void FilterBar::hideEvent(QHideEvent* event)
{
    if (!event->spontaneous()) {
        m_filterInput->clear();
        m_filterInput->clearFocus();
    }
}

void FilterBar::showEvent(QShowEvent* event)
{
    if (!event->spontaneous()) {
        m_filterInput->setFocus();
    }
}

void FilterBar::keyReleaseEvent(QKeyEvent* event)
{
    QWidget::keyReleaseEvent(event);
    if ((event->key() == Qt::Key_Escape)) {
        emitCloseRequest();
    }
}

void FilterBar::emitCloseRequest()
{
    emit closeRequest();
}

#include "filterbar.moc"