-
Notifications
You must be signed in to change notification settings - Fork 84
/
PluginInformation.cpp
executable file
·120 lines (110 loc) · 4.31 KB
/
PluginInformation.cpp
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/** \file PluginInformation.cpp
\brief Define the plugin information
\author alpha_one_x86
\licence GPL3, see the file COPYING */
#include "PluginInformation.h"
#include "ui_PluginInformation.h"
#include "cpp11addition.h"
PluginInformation::PluginInformation() :
ui(new Ui::PluginInformation)
{
ui->setupUi(this);
pluginIsLoaded=false;
}
PluginInformation::~PluginInformation()
{
delete ui;
}
void PluginInformation::setPlugin(const PluginsAvailable &plugin)
{
this->plugin=plugin;
pluginIsLoaded=true;
retranslateInformation();
}
void PluginInformation::setLanguage(const std::string &language)
{
this->language=language;
}
std::string PluginInformation::categoryToTranslation(const PluginType &category) const
{
switch(category)
{
case PluginType_CopyEngine:
return tr("Copy engine").toStdString();
case PluginType_Languages:
return tr("Languages").toStdString();
case PluginType_Listener:
return tr("Listener").toStdString();
case PluginType_PluginLoader:
return tr("Plugin loader").toStdString();
case PluginType_SessionLoader:
return tr("Session loader").toStdString();
case PluginType_Themes:
return tr("Themes").toStdString();
default:
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"cat translation not found");
return tr("Unknown").toStdString();
}
}
void PluginInformation::retranslateInformation()
{
if(!pluginIsLoaded)
return;
ui->retranslateUi(this);
this->setWindowTitle(tr("Information about %1").arg(QString::fromStdString(plugin.name)));
ui->name->setText(QString::fromStdString(plugin.name));
ui->title->setText(QString::fromStdString(getTranslatedText(plugin,"title",language)));
ui->category->setText(QString::fromStdString(categoryToTranslation(plugin.category)));
ui->author->setText(QString::fromStdString(getInformationText(plugin,"author")));
QString website=QString::fromStdString(getTranslatedText(plugin,"website",language));
ui->website->setText(QStringLiteral("<a href=\"")+website+QStringLiteral("\" title=\"")+website+QStringLiteral("\">")+website+QStringLiteral("</a>"));
bool ok;
int timeStamps=stringtoint32(getInformationText(plugin,"pubDate"),&ok);
QDateTime date;
date.setSecsSinceEpoch(timeStamps);
ui->date->setDateTime(date);
if(!ok || timeStamps<=0)
ui->date->setEnabled(false);
ui->description->setPlainText(QString::fromStdString(getTranslatedText(plugin,"description",language)));
ui->version->setText(QString::fromStdString(getInformationText(plugin,"version")));
}
/// \brief get informations text
std::string PluginInformation::getInformationText(const PluginsAvailable &plugin,const std::string &informationName)
{
unsigned int index=0;
while(index<plugin.informations.size())
{
const std::vector<std::string> &information=plugin.informations.at(index);
if(information.size()==2 && information.front()==informationName)
return information.back();
index++;
}
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"information not found: "+informationName+", for: "+plugin.name+", cat: "+categoryToTranslation(plugin.category));
return std::string();
}
/// \brief get translated text
std::string PluginInformation::getTranslatedText(const PluginsAvailable &plugin,const std::string &informationName,const std::string &mainShortName)
{
unsigned int index=0;
std::string TextFound;
while(index<plugin.informations.size())
{
const std::vector<std::string> &information=plugin.informations.at(index);
if(information.size()==3)
{
if(information.front()==informationName)
{
if(information.at(1)==mainShortName)
return information.back();
else if(information.at(1)=="en")
TextFound=information.back();
}
}
index++;
}
#ifdef ULTRACOPIER_DEBUG
if(TextFound.empty() || TextFound.empty())
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Warning,"text is not found or empty for: "+informationName+", with the language: "+mainShortName+", for the plugin: "+plugin.path);
#endif // ULTRACOPIER_DEBUG
return TextFound;
}