Lua: try to implement progresswindow

Origin commit data
------------------
Branch: ni/coolstream
Commit: 83cfd68f88
Author: Thilo Graf <dbt@novatux.de>
Date: 2017-03-31 (Fri, 31 Mar 2017)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
2017-03-31 09:38:01 +02:00
committed by Michael Liebmann
parent 04c49e5006
commit ed105ffa82
5 changed files with 229 additions and 1 deletions

View File

@@ -51,6 +51,7 @@
#include "lua_menue.h"
#include "lua_messagebox.h"
#include "lua_misc.h"
#include "lua_progresswindow.h"
#include "lua_stringinput.h"
#include "lua_threads.h"
#include "lua_video.h"
@@ -673,6 +674,8 @@ void LuaInstRegisterFunctions(lua_State *L, bool fromThreads/*=false*/)
CLuaInstStringInput::getInstance()->StringInputRegister(L);
CLuaInstMisc::getInstance()->LuaMiscRegister(L);
CLuaInstVideo::getInstance()->LuaVideoRegister(L);
CLuaInstProgressWindow::getInstance()->ProgressWindowRegister(L);
if (!fromThreads)
CLLThread::getInstance()->LuaThreadsRegister(L);
}