1 #pragma once
2 
3 #ifndef SAVEPRESETPOPUP_H
4 #define SAVEPRESETPOPUP_H
5 
6 #include "toonzqt/dvdialog.h"
7 #include "toonzqt/lineedit.h"
8 
9 //=============================================================================
10 // SavePresetPopup
11 //-----------------------------------------------------------------------------
12 
13 class SavePresetPopup final : public DVGui::Dialog {
14   Q_OBJECT
15 
16   DVGui::LineEdit *m_nameFld;
17 
18 public:
19   SavePresetPopup();
20   ~SavePresetPopup();
21   bool apply();
22 
23 protected slots:
24   void onOkBtn();
25 };
26 
27 #endif  // SAVEPRESETPOPUP_H
28