mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
64 lines
2.1 KiB
C++
64 lines
2.1 KiB
C++
/*
|
|
This file is part of Akonadi.
|
|
|
|
Copyright (c) 2006 Tobias Koenig <tokoe@kde.org>
|
|
|
|
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 "mainwindow.h"
|
|
|
|
#include <libkdepim/misc/uistatesaver.h>
|
|
|
|
#include <KActionCollection>
|
|
#include <KConfigGroup>
|
|
#include <KLocalizedString>
|
|
#include <KMessageBox>
|
|
#include <KStandardAction>
|
|
#include <QApplication>
|
|
|
|
MainWindow::MainWindow( QWidget *parent )
|
|
: KXmlGuiWindow( parent )
|
|
{
|
|
mMain = new MainWidget( this );
|
|
setCentralWidget( mMain );
|
|
|
|
KStandardAction::quit( qApp, SLOT(quit()), actionCollection() );
|
|
|
|
setupGUI( Keys /*| ToolBar | StatusBar*/ | Save | Create, "akonadiconsoleui.rc" );
|
|
|
|
KPIM::UiStateSaver::restoreState( this, KConfigGroup( KGlobal::config(), "UiState" ) );
|
|
|
|
KMessageBox::information( this, i18n("<p>Akonadi Console is purely a development tool. "
|
|
"It allows you to view and change internal data structures of Akonadi. "
|
|
"You should only change data in here if you know what you are doing, otherwise "
|
|
"you risk damaging or losing your personal information management data.<br/>"
|
|
"<b>Use at your own risk!</b></p>"),
|
|
QString(), "UseAtYourOwnRiskWarning" );
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
delete mMain;
|
|
}
|
|
|
|
void MainWindow::closeEvent(QCloseEvent *event)
|
|
{
|
|
KConfigGroup config( KGlobal::config(), "UiState" );
|
|
KPIM::UiStateSaver::saveState( this, config );
|
|
KGlobal::config()->sync();
|
|
KXmlGuiWindow::closeEvent(event);
|
|
}
|