Sayonara Player
GUI_FileExpressionDialog.h
1#ifndef GUI_FILEEXPRESSIONDIALOG_H
2#define GUI_FILEEXPRESSIONDIALOG_H
3
4#include "Gui/Utils/Widgets/Dialog.h"
5#include "Utils/Pimpl.h"
6
8 public Gui::Dialog
9{
10 Q_OBJECT
12
13public:
14 GUI_FileExpressionDialog(QWidget* parent=nullptr);
16
17 QString expression() const;
18
19protected:
20 void showEvent(QShowEvent* event) override;
21 void languageChanged() override;
22
23private slots:
24 void buttonClicked();
25 void textChanged(const QString& text);
26};
27
28#endif // GUI_FILEEXPRESSIONDIALOG_H
Definition: GUI_FileExpressionDialog.h:9
Dialog with Settings connection. Also contains triggers for language_changed() and skin_changed()....
Definition: Dialog.h:37