mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-14 10:50:01 +01:00
28 lines
569 B
C++
Executable File
28 lines
569 B
C++
Executable File
|
|
#ifndef __SEARCHBOX__H__
|
|
#define __SEARCHBOX__H__
|
|
|
|
#include "qtheaders.h"
|
|
#include "main_window.h"
|
|
|
|
class SearchWindow : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
AC_MainWindow *main_window;
|
|
SearchWindow(QWidget *parent = 0);
|
|
void createControls();
|
|
void setFiltersControl(QComboBox *filter_box, QListWidget *custom);
|
|
public slots:
|
|
void search_filter();
|
|
void add_current();
|
|
void set_subf();
|
|
private:
|
|
QListWidget *search_list,*custom_list;
|
|
QLineEdit *search_text;
|
|
QPushButton *search, *add, *subf;
|
|
QComboBox *filters;
|
|
};
|
|
|
|
#endif
|
|
|