You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.9 KiB
68 lines
1.9 KiB
/*
|
|
kopetelistviewsearchline.h - a widget for performing quick searches of Kopete::ListViews
|
|
|
|
Copyright (c) 2004 by Richard Smith <kde@metafoo.co.uk>
|
|
|
|
Kopete (c) 2004 by the Kopete developers <kopete-devel@kde.org>
|
|
|
|
*************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
*************************************************************************
|
|
*/
|
|
|
|
#ifndef KOPETELISTVIEWSEARCHLINE_H
|
|
#define KOPETELISTVIEWSEARCHLINE_H
|
|
|
|
#include <klistviewsearchline.h>
|
|
|
|
namespace Kopete {
|
|
namespace UI {
|
|
namespace ListView {
|
|
|
|
class ListView;
|
|
|
|
class SearchLine : public KListViewSearchLine
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/**
|
|
* Constructs a SearchLine with \a listView being the
|
|
* ListView to be filtered.
|
|
*
|
|
* If \a listView is null then the widget will be disabled until a listview
|
|
* is set with setListView().
|
|
*/
|
|
SearchLine( TQWidget *parent, ListView *listView = 0, const char *name = 0 );
|
|
/**
|
|
* Constructs a SearchLine without any ListView to filter. The
|
|
* KListView object has to be set later with setListView().
|
|
*/
|
|
SearchLine(TQWidget *parent, const char *name);
|
|
/**
|
|
* Destroys the SearchLine.
|
|
*/
|
|
~SearchLine();
|
|
|
|
void updateSearch( const TQString &s );
|
|
|
|
protected:
|
|
virtual void checkItemParentsNotVisible();
|
|
virtual bool checkItemParentsVisible( TQListViewItem *it );
|
|
virtual void setItemVisible( TQListViewItem *it, bool visible );
|
|
|
|
private:
|
|
TQString search;
|
|
};
|
|
|
|
} // end namespace ListView
|
|
} // end namespace UI
|
|
} // end namespace Kopete
|
|
|
|
#endif
|