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 
13 public:
14  GUI_FileExpressionDialog(QWidget* parent=nullptr);
15  ~GUI_FileExpressionDialog() override;
16 
17  QString expression() const;
18 
19 protected:
20  void showEvent(QShowEvent* event) override;
21  void languageChanged() override;
22 
23 private slots:
24  void buttonClicked();
25  void textChanged(const QString& text);
26 };
27 
28 #endif // GUI_FILEEXPRESSIONDIALOG_H
Gui::Dialog
Dialog with Settings connection. Also contains triggers for language_changed() and skin_changed()....
Definition: Dialog.h:37
GUI_FileExpressionDialog
Definition: GUI_FileExpressionDialog.h:9