summaryrefslogtreecommitdiff
path: root/plugins/SessionLoader/KDE4/sessionLoader.cpp
blob: 28bdc5992a5147cecf854866cb30e5b9f7ecd83d (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
/** \file session-loader.cpp
\brief Define the session plugin loader test
\author alpha_one_x86
\version 0.3
\date 2010 */

#include <QtCore>
#include <QFile>
#include <QDir>

#include "sessionLoader.h"
void SessionLoader::setEnabled(bool newValue)
{
	ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start, newValue: "+QString::number(newValue));
	QFile link(QDir::homePath()+"/.kde4/Autostart/ultracopier.sh");
	if(!newValue)
	{
		if(link.exists() && !link.remove())
			ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Critical,"unable to remove from the startup: "+link.errorString());
	}
	else
	{
		if(link.open(QIODevice::WriteOnly))
		{
			link.write(QString("#!/bin/bash\n").toLocal8Bit());
			link.write(QString(QCoreApplication::applicationFilePath()).toLocal8Bit());
			link.close();
			if(!link.setPermissions(QFile::ExeOwner|QFile::WriteOwner|QFile::ReadOwner))
				ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Critical,"unable to set permissions: "+link.errorString());
		}
		else
			ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Critical,"unable to open in writing the file: "+link.errorString());
	}
}

bool SessionLoader::getEnabled()
{
	ULTRACOPIER_DEBUGCONSOLE(DebugLevel_Notice,"start, return this value: "+QString::number(QFile::exists(QDir::homePath()+"/.kde4/Autostart/ultracopier.sh")));
	//return the value into the variable
	return QFile::exists(QDir::homePath()+"/.kde4/Autostart/ultracopier.sh");
}

void SessionLoader::setResources(OptionInterface * options,QString writePath,QString pluginPath,bool portableVersion)
{
	Q_UNUSED(options);
	Q_UNUSED(writePath);
	Q_UNUSED(pluginPath);
	Q_UNUSED(portableVersion);
}

/// \brief to get the options widget, NULL if not have
QWidget * SessionLoader::options()
{
	return NULL;
}

/// \brief to reload the translation, because the new language have been loaded
void SessionLoader::newLanguageLoaded()
{
}

Q_EXPORT_PLUGIN2(sessionLoader, SessionLoader);