summaryrefslogtreecommitdiff
path: root/client/luawidget.h
diff options
context:
space:
mode:
authordeva <deva>2010-08-03 12:30:27 +0000
committerdeva <deva>2010-08-03 12:30:27 +0000
commitdbab8458dcce186e7eb7a114a83f759d7db5445a (patch)
tree5abbd9e97b17a0e8321adea983594d818157e8e2 /client/luawidget.h
parentd285c1bdb79752ef23a7252c9c2d9f408f0c9f49 (diff)
New scripting interface part1.
Diffstat (limited to 'client/luawidget.h')
-rw-r--r--client/luawidget.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/client/luawidget.h b/client/luawidget.h
new file mode 100644
index 0000000..db615b5
--- /dev/null
+++ b/client/luawidget.h
@@ -0,0 +1,39 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set et sw=2 ts=2: */
+/***************************************************************************
+ * luawidget.h
+ *
+ * Tue Aug 3 10:17:02 CEST 2010
+ * Copyright 2010 Bent Bisballe Nyeng
+ * deva@aasimon.org
+ ****************************************************************************/
+
+/*
+ * This file is part of Pracro.
+ *
+ * Pracro is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Pracro is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Pracro; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+#ifndef __PRACRO_LUAWIDGET_H__
+#define __PRACRO_LUAWIDGET_H__
+
+#include <lua.hpp>
+#include <lauxlib.h>
+
+#include "widgets/widget.h"
+
+void register_widget(lua_State *L);
+int wdg_make_widget(lua_State *L, Widget *widget);
+
+#endif/*__PRACRO_LUAWIDGET_H__*/