cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
28 lines
515 B
C++
28 lines
515 B
C++
#ifndef ktreewidgetsearchlinetest_h
|
|
#define ktreewidgetsearchlinetest_h
|
|
|
|
#include <QDialog>
|
|
|
|
class KTreeWidgetSearchLineTest : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KTreeWidgetSearchLineTest();
|
|
|
|
void create2ndLevel(class QTreeWidgetItem *item);
|
|
void create3rdLevel(QTreeWidgetItem *item);
|
|
|
|
public Q_SLOTS:
|
|
void switchCaseSensitivity(bool cs);
|
|
|
|
protected:
|
|
void showEvent(QShowEvent *event) override;
|
|
|
|
private:
|
|
class KTreeWidgetSearchLine *m_searchLine;
|
|
class QTreeWidget *tw;
|
|
};
|
|
|
|
#endif
|