mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-22 12:28:51 +00:00
7c9c7e6fe4
* Add symbol exports required for external native plugins to work on Windows * Make Linux build behave more like Windows so that missing export annotations can be more easily detected.
38 lines
678 B
C++
38 lines
678 B
C++
#ifndef COMBOQUICKFILTERVIEW_H
|
|
#define COMBOQUICKFILTERVIEW_H
|
|
|
|
#include "core/CutterCommon.h"
|
|
|
|
#include <QWidget>
|
|
#include <QComboBox>
|
|
|
|
namespace Ui {
|
|
class ComboQuickFilterView;
|
|
}
|
|
|
|
class CUTTER_EXPORT ComboQuickFilterView : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ComboQuickFilterView(QWidget *parent = nullptr);
|
|
~ComboQuickFilterView();
|
|
|
|
void setLabelText(const QString &text);
|
|
QComboBox *comboBox();
|
|
|
|
public slots:
|
|
void showFilter();
|
|
void closeFilter();
|
|
void clearFilter();
|
|
|
|
signals:
|
|
void filterTextChanged(const QString &text);
|
|
void filterClosed();
|
|
|
|
private:
|
|
Ui::ComboQuickFilterView *ui;
|
|
};
|
|
|
|
#endif // COMBOQUICKFILTERVIEW_H
|