partitionmanager/src/util/helpers.cpp

87 lines
3.2 KiB
C++
Raw Normal View History

/***************************************************************************
* Copyright (C) 2008 by Volker Lanz <vl@fidra.de> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include "util/helpers.h"
#include "util/globallog.h"
#include "ops/operation.h"
#include <klocale.h>
#include <kaboutdata.h>
#include <kmessagebox.h>
#include <kglobal.h>
#include <kcomponentdata.h>
#include <unistd.h>
#include <signal.h>
void registerMetaTypes()
{
qRegisterMetaType<Operation*>("Operation*");
qRegisterMetaType<log::Level>("log::Level");
}
void unblockSigChild()
{
sigset_t sset;
sigemptyset(&sset);
sigaddset(&sset, SIGCHLD);
sigprocmask(SIG_UNBLOCK, &sset, NULL);
}
bool checkPermissions()
{
if (geteuid() != 0)
return KMessageBox::warningContinueCancel(NULL, i18nc("@info",
"<para><warning>You do not have administrative privileges.</warning></para>"
"<para>It is possible to run <application>%1</application> without these privileges. "
"You will, however, <emphasis>not</emphasis> be allowed to apply operations.</para>"
"<para>Do you want to continue running <application>%1</application>?</para>",
KGlobal::mainComponent().aboutData()->programName()),
i18nc("@title:window", "No administrative privileges"),
KGuiItem(i18nc("@action:button", "Run without administrative privileges")),
KStandardGuiItem::cancel(),
"runWithoutRootPrivileges") == KMessageBox::Continue;
return true;
}
KAboutData* createPartitionManagerAboutData()
{
KAboutData* about = new KAboutData(
"partitionmanager",
NULL,
ki18nc("@title", "<application>KDE Partition Manager</application>"),
VERSION,
ki18nc("@title", "Manage your disks, partitions and file systems"),
KAboutData::License_GPL,
ki18nc("@info:credit", "(c) 2008, 2009 Volker Lanz")
);
about->addAuthor(ki18nc("@info:credit", "Volker Lanz"), KLocalizedString(), "vl@fidra.de");
about->setHomepage("http://www.partitionmanager.org");
return about;
}
bool caseInsensitiveLessThan(const QString& s1, const QString& s2)
{
return s1.toLower() < s2.toLower();
}