Templates: basic support for columns in the script dialog.
[ardour.git] / gtk2_ardour / luadialog.h
1 /*
2  * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #ifndef _gtk2ardour_luadialog_h_
20 #define _gtk2ardour_luadialog_h_
21
22 #include <cassert>
23 #include <gtkmm/table.h>
24 #include <gtkmm/messagedialog.h>
25
26 #include "LuaBridge/LuaBridge.h"
27
28 namespace LuaDialog {
29
30 class Message {
31 public:
32
33         enum MessageType {
34                 Info, Warning, Question, Error
35         };
36
37         enum ButtonType {
38                 OK, Close, Cancel, Yes_No, OK_Cancel
39         };
40
41         Message (std::string const&, std::string const&, Message::MessageType, Message::ButtonType);
42
43         int run ();
44
45 private:
46         Message (Message const&); // prevent copy construction
47
48         static Gtk::ButtonsType to_gtk_bt (ButtonType bt);
49         static Gtk::MessageType to_gtk_mt (MessageType mt);
50
51         Gtk::MessageDialog _message_dialog;
52 };
53
54 class LuaDialogWidget {
55 public:
56         LuaDialogWidget (std::string const& key, std::string const& label, int col = 0)
57                 : _key (key), _label (label), _col (col)
58         {}
59
60         virtual ~LuaDialogWidget () {}
61
62         virtual Gtk::Widget* widget () = 0;
63         virtual void assign (luabridge::LuaRef* rv) const = 0;
64         std::string const&  label () const { return _label; }
65         std::string const&  key () const { return _key; }
66         int const&          col () const { return _col; }
67
68         void set_col (int col) { _col = col; }
69
70 protected:
71         std::string _key;
72         std::string _label;
73         int _col;
74 };
75
76
77 class Dialog {
78 public:
79         Dialog (std::string const&, luabridge::LuaRef);
80         ~Dialog ();
81         int run (lua_State *L);
82
83 private:
84         Dialog (Dialog const&); // prevent copy construction
85         ArdourDialog _ad;
86         typedef std::vector<LuaDialogWidget*> DialogWidgets;
87         DialogWidgets _widgets;
88         std::string _title;
89 };
90
91 }; // namespace
92
93 #endif