Exemple #1
0
DEFINEFUNCTION DragWindowFun(LTExecState* es)
{
	UIClassC->DragWindow();
	return JsUndefined();
}
Exemple #2
0
DEFINEFUNCTION SetLayerWindowFun(LTExecState* es)
{
	bool t = JsValue2Boolean(es,GetJsParameter(es,0));
	UIClassC->SetLayerWindow(t);
	return JsUndefined();
}
Exemple #3
0
DEFINEFUNCTION QuitAppFun(LTExecState* es)
{
	UIClassC->QuitApp();
	return JsUndefined();
}
Exemple #4
0
DEFINEFUNCTION DragWindowFun2(LTExecState* es)
{
	SubWindowC->DragWindow();
	return JsUndefined();
}
Exemple #5
0
DEFINEFUNCTION CleanMemoryFun(LTExecState* es)
{
    UIClassC->CleanMemory();
    return JsUndefined();
}
Exemple #6
0
DEFINEFUNCTION AutoGCFun(LTExecState* es)
{
    bool t = JsValue2Boolean(es,GetJsParameter(es,0));
    UIClassC->IsAutoGC(t);
    return JsUndefined();
}
Exemple #7
0
DEFINEFUNCTION JobStartFun(LTExecState* es)
{
    UIClassC->JobStart();
    return JsUndefined();
}
Exemple #8
0
DEFINEFUNCTION MinWindowFun(LTExecState* es)
{
	SubWindowC->MinWindow();
	return JsUndefined();
}