/* This file is part of Akonadi. Copyright (c) 2006 Tobias Koenig 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 #include #include #include #include #include #include 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("

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.
" "Use at your own risk!

"), 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); }