blob: 3ae24d1d88f59c09b35d5363614a32c48ce591df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) ZenJu (zhnmju123 AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#include "resources.h"
#include <memory>
#include <wx/wfstream.h>
#include <wx/zipstrm.h>
#include <wx/image.h>
#include <wx/mstream.h>
#include <wx+/string_conv.h>
#include "ffs_paths.h"
using namespace zen;
const GlobalResources& GlobalResources::instance()
{
static GlobalResources inst;
return inst;
}
namespace
{
void loadAnimFromZip(wxZipInputStream& zipInput, wxAnimation& anim)
{
//Workaround for wxWidgets:
//construct seekable input stream (zip-input stream is non-seekable) for wxAnimation::Load()
//luckily this method call is very fast: below measurement precision!
std::vector<char> data;
data.reserve(10000);
int newValue = 0;
while ((newValue = zipInput.GetC()) != wxEOF)
data.push_back(newValue);
wxMemoryInputStream seekAbleStream(&data.front(), data.size()); //stream does not take ownership of data
anim.Load(seekAbleStream, wxANIMATION_TYPE_GIF);
}
}
GlobalResources::GlobalResources()
{
wxFFileInputStream input(toWx(zen::getResourceDir()) + L"Resources.zip");
if (input.IsOk()) //if not... we don't want to react too harsh here
{
//activate support for .png files
wxImage::AddHandler(new wxPNGHandler); //ownership passed
wxZipInputStream resourceFile(input, wxConvUTF8);
//do NOT rely on wxConvLocal! May result in "Cannot convert from the charset 'Unknown encoding (-1)'!"
while (true)
{
std::unique_ptr<wxZipEntry> entry(resourceFile.GetNextEntry()); //take ownership!
if (entry.get() == nullptr)
break;
const wxString name = entry->GetName();
//generic image loading
if (name.EndsWith(L".png"))
bitmaps.insert(std::make_pair(name, wxImage(resourceFile, wxBITMAP_TYPE_PNG)));
//else if (name == L"money.gif")
// loadAnimFromZip(resourceFile, animationMoney);
else if (name == L"working.gif")
loadAnimFromZip(resourceFile, animationSync);
}
}
#ifdef FFS_WIN
//for compatibility it seems we need to stick with a "real" icon
programIcon = wxIcon(L"A_PROGRAM_ICON");
#else
//use big logo bitmap for better quality
programIcon.CopyFromBitmap(getImageInt(L"FreeFileSync.png"));
//attention: this is the reason we need a member getImage -> it must not implicitly create static object instance!!!
//erroneously calling static object constructor twice will deadlock on Linux!!
#endif
}
const wxBitmap& GlobalResources::getImageInt(const wxString& imageName) const
{
auto iter = bitmaps.find(!contains(imageName, L'.') ? //assume .png ending if nothing else specified
imageName + L".png" :
imageName);
if (iter != bitmaps.end())
return iter->second;
else
{
assert(false);
return wxNullBitmap;
}
}
|