|
|
@ -309,6 +309,7 @@ namespace NLGUI
|
|
|
|
REFLECT_LUA_METHOD("renderHtml", luaRenderHtml)
|
|
|
|
REFLECT_LUA_METHOD("renderHtml", luaRenderHtml)
|
|
|
|
REFLECT_STRING("url", getURL, setURL)
|
|
|
|
REFLECT_STRING("url", getURL, setURL)
|
|
|
|
REFLECT_FLOAT("timeout", getTimeout, setTimeout)
|
|
|
|
REFLECT_FLOAT("timeout", getTimeout, setTimeout)
|
|
|
|
|
|
|
|
REFLECT_STRING("title", getTitle, setTitle)
|
|
|
|
REFLECT_EXPORT_END
|
|
|
|
REFLECT_EXPORT_END
|
|
|
|
|
|
|
|
|
|
|
|
protected :
|
|
|
|
protected :
|
|
|
@ -407,6 +408,8 @@ namespace NLGUI
|
|
|
|
|
|
|
|
|
|
|
|
// Set the title
|
|
|
|
// Set the title
|
|
|
|
void setTitle (const ucstring &title);
|
|
|
|
void setTitle (const ucstring &title);
|
|
|
|
|
|
|
|
void setTitle (const std::string &title);
|
|
|
|
|
|
|
|
std::string getTitle() const;
|
|
|
|
|
|
|
|
|
|
|
|
// Lookup a url in local file system
|
|
|
|
// Lookup a url in local file system
|
|
|
|
bool lookupLocalFile (std::string &result, const char *url, bool isUrl);
|
|
|
|
bool lookupLocalFile (std::string &result, const char *url, bool isUrl);
|
|
|
|