You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lxqt-config-packaging/lxqt-config-locale/main.cpp

54 lines
1.8 KiB

/* BEGIN_COMMON_COPYRIGHT_HEADER
* (c)GPL2+
*
*
* Copyright: 2014 LXQt team
*
* Authors:
* Julien Lavergne <gilir@ubuntu.com>
*
*
* 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
*
* END_COMMON_COPYRIGHT_HEADER */
#include <LXQt/SingleApplication>
#include <XdgIcon>
#include <LXQt/Settings>
#include <LXQt/ConfigDialog>
#include "localeconfig.h"
int main (int argc, char **argv)
{
LXQt::SingleApplication app(argc, argv);
LXQt::Settings settings("lxqt-config-locale");
LXQt::Settings session_settings("session");
LXQt::ConfigDialog* dialog = new LXQt::ConfigDialog(QObject::tr("LXQt Locale Configuration"), &settings);
app.setActivationWindow(dialog);
LocaleConfig* localePage = new LocaleConfig(&settings, &session_settings, dialog);
dialog->addPage(localePage, QObject::tr("Locale Settings"), QStringList() << "preferences-desktop-locale" << "preferences-desktop");
QObject::connect(dialog, SIGNAL(reset()), localePage, SLOT(initControls()));
QObject::connect(dialog, SIGNAL(save()), localePage, SLOT(saveSettings()));
dialog->setAttribute(Qt::WA_DeleteOnClose);
dialog->setWindowIcon(QIcon::fromTheme("preferences-desktop-locale"));
dialog->show();
return app.exec();
}