|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2006 by Peter Penz <peter.penz@gmx.at> *
|
|
|
|
* Copyright (C) 2006 by Gregor Kališnik <gregor@podnapisi.net> *
|
|
|
|
* *
|
|
|
|
* 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 <tqlabel.h>
|
|
|
|
#include <tqlayout.h>
|
|
|
|
|
|
|
|
#include <kdialog.h>
|
|
|
|
#include <klocale.h>
|
|
|
|
#include <kpushbutton.h>
|
|
|
|
#include <klineedit.h>
|
|
|
|
#include <kiconloader.h>
|
|
|
|
|
|
|
|
#include "dolphin.h"
|
|
|
|
|
|
|
|
FilterBar::FilterBar(TQWidget *parent, const char *name) :
|
|
|
|
TQWidget(parent, name)
|
|
|
|
{
|
|
|
|
const int gap = 3;
|
|
|
|
|
|
|
|
TQVBoxLayout* foo = new TQVBoxLayout(this);
|
|
|
|
foo->addSpacing(gap);
|
|
|
|
|
|
|
|
TQHBoxLayout* tqlayout = new TQHBoxLayout(foo);
|
|
|
|
tqlayout->addSpacing(gap);
|
|
|
|
|
|
|
|
m_filter = new TQLabel(i18n("Filter:"), this);
|
|
|
|
tqlayout->addWidget(m_filter);
|
|
|
|
tqlayout->addSpacing(KDialog::spacingHint());
|
|
|
|
|
|
|
|
m_filterInput = new KLineEdit(this);
|
|
|
|
tqlayout->addWidget(m_filterInput);
|
|
|
|
|
|
|
|
m_close = new KPushButton(this);
|
|
|
|
m_close->setIconSet(SmallIcon("fileclose"));
|
|
|
|
m_close->setFlat(true);
|
|
|
|
tqlayout->addWidget(m_close);
|
|
|
|
tqlayout->addSpacing(gap);
|
|
|
|
|
|
|
|
connect(m_filterInput, TQT_SIGNAL(textChanged(const TQString&)),
|
|
|
|
this, TQT_SIGNAL(signalFilterChanged(const TQString&)));
|
|
|
|
connect(m_close, TQT_SIGNAL(clicked()), this, TQT_SLOT(hide()));
|
|
|
|
connect(m_close, TQT_SIGNAL(clicked()),
|
|
|
|
&Dolphin::mainWin(), TQT_SLOT(slotShowFilterBarChanged()));
|
|
|
|
}
|
|
|
|
|
|
|
|
FilterBar::~FilterBar()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilterBar::hide()
|
|
|
|
{
|
|
|
|
m_filterInput->clear();
|
|
|
|
m_filterInput->clearFocus();
|
|
|
|
TQWidget::hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilterBar::show()
|
|
|
|
{
|
|
|
|
m_filterInput->setFocus();
|
|
|
|
TQWidget::show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilterBar::keyReleaseEvent(TQKeyEvent* event)
|
|
|
|
{
|
|
|
|
TQWidget::keyReleaseEvent(event);
|
|
|
|
if ((event->key() == TQt::Key_Escape)) {
|
|
|
|
hide();
|
|
|
|
Dolphin::mainWin().slotShowFilterBarChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "filterbar.moc"
|