Create filter dialog, board description
This commit is contained in:
28
src/frames/filterdialog.h
Normal file
28
src/frames/filterdialog.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef FILTERDIALOG_H
|
||||
#define FILTERDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
#include "../models/board.h"
|
||||
#include "../models/priority.h"
|
||||
#include "../models/status.h"
|
||||
#include "../models/filter.h"
|
||||
|
||||
namespace Ui {
|
||||
class FilterDialog;
|
||||
}
|
||||
|
||||
class FilterDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit FilterDialog(QString dialogTitle, QVector<Board*> boards, QVector<Status> status, QVector<Priority> priorities, QWidget *parent = nullptr);
|
||||
~FilterDialog();
|
||||
const Filter getFilter();
|
||||
|
||||
private:
|
||||
Ui::FilterDialog *ui;
|
||||
};
|
||||
|
||||
#endif // FILTERDIALOG_H
|
||||
Reference in New Issue
Block a user