VKeybd: Pass on primary (Ctrl/Cmd) shortcuts
[ardour.git] / gtk2_ardour / luadoc.cc
1 /*
2  * Copyright (C) 2016-2017 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (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 along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <stdio.h>
20 #include <string.h>
21 #include <iostream>
22
23 #include "ardour/luabindings.h"
24 #include "ardour/revision.h"
25 #include "luainstance.h"
26 #include "LuaBridge/LuaBridge.h"
27
28 #ifdef WAF_BUILD
29 #include "gtk2ardour-version.h"
30 #endif
31
32 int main (int argc, char **argv)
33 {
34 #ifdef LUABINDINGDOC
35         luabridge::setPrintBindings (true);
36         LuaState lua;
37         lua_State* L = lua.getState ();
38 #ifdef LUADOCOUT
39         printf ("-- %s\n", ARDOUR::revision);
40         printf ("doc = {\n");
41 #else
42         printf ("[\n");
43         printf ("{\"version\" :  \"%s\"},\n\n", ARDOUR::revision);
44 #endif
45         LuaInstance::register_classes (L);
46         LuaInstance::register_hooks (L);
47         ARDOUR::LuaBindings::dsp (L);
48 #ifdef LUADOCOUT
49         printf ("}\n");
50 #else
51         printf ("{} ]\n");
52 #endif
53         return 0;
54 #else
55         return 1;
56 #endif
57 }