|
|
@ -172,10 +172,12 @@ namespace NLGUI
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Update view after download has finished
|
|
|
|
// Update view after download has finished
|
|
|
|
void CGroupHTML::setImage(CViewBase * view, const string &file)
|
|
|
|
void CGroupHTML::setImage(CViewBase * view, const string &file, const TImageType type)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
CCtrlButton *btn = dynamic_cast<CCtrlButton*>(view);
|
|
|
|
CCtrlButton *btn = dynamic_cast<CCtrlButton*>(view);
|
|
|
|
if(btn)
|
|
|
|
if(btn)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (type == NormalImage)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
btn->setTexture (file);
|
|
|
|
btn->setTexture (file);
|
|
|
|
btn->setTexturePushed(file);
|
|
|
|
btn->setTexturePushed(file);
|
|
|
@ -186,6 +188,11 @@ namespace NLGUI
|
|
|
|
paragraphChange();
|
|
|
|
paragraphChange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
btn->setTextureOver(file);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
{
|
|
|
|
CViewBitmap *btm = dynamic_cast<CViewBitmap*>(view);
|
|
|
|
CViewBitmap *btm = dynamic_cast<CViewBitmap*>(view);
|
|
|
|
if(btm)
|
|
|
|
if(btm)
|
|
|
@ -318,7 +325,7 @@ namespace NLGUI
|
|
|
|
time(¤tTime);
|
|
|
|
time(¤tTime);
|
|
|
|
|
|
|
|
|
|
|
|
CHttpCacheObject cache = CHttpCache::getInstance()->lookup(download.dest);
|
|
|
|
CHttpCacheObject cache = CHttpCache::getInstance()->lookup(download.dest);
|
|
|
|
if (cache.Expires > currentTime)
|
|
|
|
if (CFile::fileExists(download.dest) && cache.Expires > currentTime)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
#ifdef LOG_DL
|
|
|
|
#ifdef LOG_DL
|
|
|
|
nlwarning("Cache for (%s) is not expired (%s, expires:%d)", download.url.c_str(), download.dest.c_str(), cache.Expires - currentTime);
|
|
|
|
nlwarning("Cache for (%s) is not expired (%s, expires:%d)", download.url.c_str(), download.dest.c_str(), cache.Expires - currentTime);
|
|
|
@ -389,7 +396,7 @@ namespace NLGUI
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Add a image download request in the multi_curl
|
|
|
|
// Add a image download request in the multi_curl
|
|
|
|
void CGroupHTML::addImageDownload(const string &url, CViewBase *img, const CStyleParams &style)
|
|
|
|
void CGroupHTML::addImageDownload(const string &url, CViewBase *img, const CStyleParams &style, TImageType type)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
string finalUrl = getAbsoluteUrl(url);
|
|
|
|
string finalUrl = getAbsoluteUrl(url);
|
|
|
|
|
|
|
|
|
|
|
@ -401,7 +408,7 @@ namespace NLGUI
|
|
|
|
#ifdef LOG_DL
|
|
|
|
#ifdef LOG_DL
|
|
|
|
nlwarning("already downloading '%s' img %p", finalUrl.c_str(), img);
|
|
|
|
nlwarning("already downloading '%s' img %p", finalUrl.c_str(), img);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
Curls[i].imgs.push_back(CDataImageDownload(img, style));
|
|
|
|
Curls[i].imgs.push_back(CDataImageDownload(img, style, type));
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -412,7 +419,7 @@ namespace NLGUI
|
|
|
|
nlwarning("add to download '%s' dest '%s' img %p", finalUrl.c_str(), dest.c_str(), img);
|
|
|
|
nlwarning("add to download '%s' dest '%s' img %p", finalUrl.c_str(), dest.c_str(), img);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
Curls.push_back(CDataDownload(finalUrl, dest, ImgType, img, "", "", style));
|
|
|
|
Curls.push_back(CDataDownload(finalUrl, dest, ImgType, img, "", "", style, type));
|
|
|
|
if (Curls.size() < options.curlMaxConnections) {
|
|
|
|
if (Curls.size() < options.curlMaxConnections) {
|
|
|
|
if (!startCurlDownload(Curls.back()))
|
|
|
|
if (!startCurlDownload(Curls.back()))
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -728,7 +735,7 @@ namespace NLGUI
|
|
|
|
CFile::moveFile(it->dest, tmpfile);
|
|
|
|
CFile::moveFile(it->dest, tmpfile);
|
|
|
|
for(uint i = 0; i < it->imgs.size(); i++)
|
|
|
|
for(uint i = 0; i < it->imgs.size(); i++)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
setImage(it->imgs[i].Image, it->dest);
|
|
|
|
setImage(it->imgs[i].Image, it->dest, it->imgs[i].Type);
|
|
|
|
setImageSize(it->imgs[i].Image, it->imgs[i].Style);
|
|
|
|
setImageSize(it->imgs[i].Image, it->imgs[i].Style);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -1686,16 +1693,34 @@ namespace NLGUI
|
|
|
|
if (present[MY_HTML_IMG_STYLE] && value[MY_HTML_IMG_STYLE])
|
|
|
|
if (present[MY_HTML_IMG_STYLE] && value[MY_HTML_IMG_STYLE])
|
|
|
|
getStyleParams(value[MY_HTML_IMG_STYLE], style);
|
|
|
|
getStyleParams(value[MY_HTML_IMG_STYLE], style);
|
|
|
|
|
|
|
|
|
|
|
|
if (getA() && getParent () && getParent ()->getParent())
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// Tooltip
|
|
|
|
// Tooltip
|
|
|
|
const char *tooltip = NULL;
|
|
|
|
const char *tooltip = NULL;
|
|
|
|
|
|
|
|
// keep "alt" attribute for backward compatibility
|
|
|
|
if (present[MY_HTML_IMG_ALT] && value[MY_HTML_IMG_ALT])
|
|
|
|
if (present[MY_HTML_IMG_ALT] && value[MY_HTML_IMG_ALT])
|
|
|
|
tooltip = value[MY_HTML_IMG_ALT];
|
|
|
|
tooltip = value[MY_HTML_IMG_ALT];
|
|
|
|
|
|
|
|
// tooltip
|
|
|
|
|
|
|
|
if (present[MY_HTML_IMG_TITLE] && value[MY_HTML_IMG_TITLE])
|
|
|
|
|
|
|
|
tooltip = value[MY_HTML_IMG_TITLE];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Mouse over image
|
|
|
|
|
|
|
|
const char *overSrc = value[MY_HTML_IMG_SRC];
|
|
|
|
|
|
|
|
if (present[MY_HTML_IMG_DATA_OVER_SRC] && value[MY_HTML_IMG_DATA_OVER_SRC])
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
overSrc = value[MY_HTML_IMG_DATA_OVER_SRC];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (getA() && getParent () && getParent ()->getParent())
|
|
|
|
|
|
|
|
{
|
|
|
|
string params = "name=" + getId() + "|url=" + getLink ();
|
|
|
|
string params = "name=" + getId() + "|url=" + getLink ();
|
|
|
|
addButton(CCtrlButton::PushButton, value[MY_HTML_IMG_SRC], value[MY_HTML_IMG_SRC], value[MY_HTML_IMG_SRC],
|
|
|
|
addButton(CCtrlButton::PushButton, value[MY_HTML_IMG_SRC], value[MY_HTML_IMG_SRC], value[MY_HTML_IMG_SRC],
|
|
|
|
"", "browse", params.c_str(), tooltip, style);
|
|
|
|
overSrc, "browse", params.c_str(), tooltip, style);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
if (tooltip || overSrc)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
addButton(CCtrlButton::PushButton, value[MY_HTML_IMG_SRC], value[MY_HTML_IMG_SRC], value[MY_HTML_IMG_SRC],
|
|
|
|
|
|
|
|
overSrc, "", "", tooltip, style);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
else
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -4596,6 +4621,18 @@ namespace NLGUI
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string over = overBitmap.empty()?"":CFile::getPath(overBitmap) + CFile::getFilenameWithoutExtension(overBitmap) + ".tga";
|
|
|
|
string over = overBitmap.empty()?"":CFile::getPath(overBitmap) + CFile::getFilenameWithoutExtension(overBitmap) + ".tga";
|
|
|
|
|
|
|
|
// schedule mouseover bitmap for download if its different from normal
|
|
|
|
|
|
|
|
if (!over.empty() && !CPath::exists(over))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (overBitmap != normalBitmap)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
over = localImageName(overBitmap);
|
|
|
|
|
|
|
|
if (!CFile::fileExists(over))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
addImageDownload(overBitmap, ctrlButton, style, TImageType::OverImage);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ctrlButton->setType (type);
|
|
|
|
ctrlButton->setType (type);
|
|
|
|
if (!normal.empty())
|
|
|
|
if (!normal.empty())
|
|
|
|