summaryrefslogtreecommitdiff
path: root/PluginInformation.cpp
blob: 11912fae12a3b15f13380b28903b19d015b0b022 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/** \file PluginInformation.cpp
\brief Define the plugin information
\author alpha_one_x86
\version 0.3
\date 2010
\licence GPL3, see the file COPYING */

#include "PluginInformation.h"
#include "ui_PluginInformation.h"

PluginInformation::PluginInformation() :
    ui(new Ui::PluginInformation)
{
	ui->setupUi(this);
	pluginIsLoaded=false;
}

PluginInformation::~PluginInformation()
{
	delete ui;
}

void PluginInformation::setPlugin(PluginsAvailable plugin)
{
	this->plugin=plugin;
	pluginIsLoaded=true;
	retranslateInformation();
}

void PluginInformation::setLanguage(QString language)
{
	this->language=language;
}

QString PluginInformation::categoryToTranslation(PluginType category)
{
	switch(category)
	{
		case PluginType_CopyEngine:
			return tr("CopyEngine");
		break;
		case PluginType_Languages:
			return tr("Languages");
		break;
		case PluginType_Listener:
			return tr("Listener");
		break;
		case PluginType_PluginLoader:
			return tr("PluginLoader");
		break;
		case PluginType_SessionLoader:
			return tr("SessionLoader");
		break;
		case PluginType_Themes:
			return tr("Themes");
		break;
		default:
			ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Warning,"cat translation not found");
			return "Unknow";
		break;
	}
}

void PluginInformation::retranslateInformation()
{
	if(!pluginIsLoaded)
		return;
	ui->retranslateUi(this);
	this->setWindowTitle(tr("Information about %1").arg(plugin.name));
	ui->name->setText(plugin.name);
	ui->title->setText(getTranslatedText(plugin,"title",language));
	ui->category->setText(categoryToTranslation(plugin.category));
	ui->author->setText(getInformationText(plugin,"author"));
	QString website=getTranslatedText(plugin,"website",language);
	ui->website->setText("<a href=\""+website+"\" title=\""+website+"\">"+website+"</a>");
	bool ok;
	int timeStamps=getInformationText(plugin,"pubDate").toInt(&ok);
	QDateTime date;
	date.setTime_t(timeStamps);
	ui->date->setDateTime(date);
	if(!ok || timeStamps<=0)
		ui->date->setEnabled(false);
	ui->description->setPlainText(getTranslatedText(plugin,"description",language));
	ui->version->setText(getInformationText(plugin,"version"));
}

/// \brief get informations text
QString PluginInformation::getInformationText(PluginsAvailable plugin,QString informationName)
{
	int index=0;
	while(index<plugin.informations.size())
	{
		if(plugin.informations.at(index).size()==2 && plugin.informations.at(index).first()==informationName)
			return plugin.informations.at(index).last();
		index++;
	}
	ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Warning,"information not found: "+informationName+", for: "+plugin.name+", cat: "+categoryToTranslation(plugin.category));
	return "";
}

/// \brief get translated text
QString PluginInformation::getTranslatedText(PluginsAvailable plugin,QString informationName,QString mainShortName)
{
	int index=0;
	QString TextFound;
	while(index<plugin.informations.size())
	{
		if(plugin.informations.at(index).size()==3)
		{
			if(plugin.informations.at(index).first()==informationName)
			{
				if(plugin.informations.at(index).at(1)==mainShortName)
					return plugin.informations.at(index).last();
				else if(plugin.informations.at(index).at(1)=="en")
					TextFound=plugin.informations.at(index).last();

			}
		}
		index++;
	}
	#ifdef ULTRACOPIER_DEBUG
	if(TextFound.isEmpty() || TextFound.isEmpty())
		ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Warning,"text is not found or empty for: "+informationName+", with the language: "+mainShortName+", for the plugin: "+plugin.path);
	#endif // ULTRACOPIER_DEBUG
	return TextFound;
}