mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-01 18:01:13 +02:00
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
/*
|
|
* lua hintbox
|
|
*
|
|
* (C) 2014 by martii
|
|
* (C) 2014-2015 M. Liebmann (micha-bbg)
|
|
* (C) 2014 Sven Hoefer (svenhoefer)
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _LUAHINTBOX_H
|
|
#define _LUAHINTBOX_H
|
|
|
|
class CLuaHintbox
|
|
{
|
|
public:
|
|
CHintBox *b;
|
|
char *caption;
|
|
CLuaHintbox();
|
|
~CLuaHintbox();
|
|
};
|
|
|
|
class CLuaInstHintbox
|
|
{
|
|
public:
|
|
CLuaInstHintbox() {};
|
|
~CLuaInstHintbox() {};
|
|
static CLuaInstHintbox* getInstance();
|
|
static void HintboxRegister(lua_State *L);
|
|
|
|
private:
|
|
static CLuaHintbox *HintboxCheck(lua_State *L, int n);
|
|
static int HintboxNew(lua_State *L);
|
|
static int HintboxDelete(lua_State *L);
|
|
static int HintboxExec(lua_State *L);
|
|
static int HintboxPaint(lua_State *L);
|
|
static int HintboxHide(lua_State *L);
|
|
};
|
|
|
|
#endif //_LUAHINTBOX_H
|