mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
27 lines
516 B
C++
27 lines
516 B
C++
#ifndef KTREEWIDGETSEARCHLINETEST_H
|
|
#define KTREEWIDGETSEARCHLINETEST_H
|
|
|
|
#include <kdialog.h>
|
|
|
|
class KTreeWidgetSearchLineTest : public KDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KTreeWidgetSearchLineTest();
|
|
|
|
void create2ndLevel(class QTreeWidgetItem* item);
|
|
void create3rdLevel(QTreeWidgetItem* item);
|
|
|
|
public Q_SLOTS:
|
|
void switchCaseSensitivity(bool cs);
|
|
|
|
protected:
|
|
virtual void showEvent(QShowEvent* event);
|
|
|
|
private:
|
|
class KTreeWidgetSearchLine* m_searchLine;
|
|
class QTreeWidget* tw;
|
|
};
|
|
|
|
#endif
|