Page MenuHome GnuPG

mainwindow.cpp
No OneTemporary

mainwindow.cpp

/* -*- mode: c++; c-basic-offset:4 -*-
mainwindow.cpp
This file is part of Kleopatra, the KDE keymanager
Copyright (c) 2007 Klarälvdalens Datakonsult AB
Kleopatra 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.
Kleopatra 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
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#include "mainwindow.h"
#include "action_data.h"
#include "searchbar.h"
#include "tabwidget.h"
#include "certificatewizardimpl.h"
#include "models/keylistmodel.h"
#include "models/keylistsortfilterproxymodel.h"
#include "controllers/keylistcontroller.h"
#include "commands/exportcertificatecommand.h"
#include "commands/importcertificatecommand.h"
#include "commands/refreshkeyscommand.h"
#include "commands/detailscommand.h"
#include <KActionCollection>
#include <KLocale>
#include <KTabWidget>
#include <KStatusBar>
#include <KStandardAction>
#include <KAction>
#include <KAboutData>
#include <KMessageBox>
#include <KStandardGuiItem>
#include <QAbstractItemView>
#include <QLabel>
#include <QLineEdit>
#include <QComboBox>
#include <QFileDialog>
#include <QToolBar>
#include <QWidgetAction>
#include <QProgressBar>
#include <QApplication>
#include <QCloseEvent>
#include <QTimer>
#include <gpgme++/key.h>
#include <boost/shared_ptr.hpp>
#include <vector>
using namespace Kleo;
using namespace boost;
using namespace GpgME;
namespace {
class ProgressBar : public QProgressBar {
Q_OBJECT
public:
explicit ProgressBar( QWidget * p=0 ) : QProgressBar( p ) {}
public Q_SLOTS:
void setProgress( int current, int total ) {
setRange( 0, total );
setValue( current );
}
};
}
KGuiItem KStandardGuiItem_quit() {
static const QString app = KGlobal::mainComponent().aboutData()->programName();
KGuiItem item = KStandardGuiItem::quit();
item.setText( i18n( "&Quit %1", app ) );
return item;
}
KGuiItem KStandardGuiItem_close() {
KGuiItem item = KStandardGuiItem::close();
item.setText( i18n("Only &Close the Window" ) );
return item;
}
class MainWindow::Private {
friend class ::MainWindow;
MainWindow * const q;
public:
explicit Private( MainWindow * qq );
~Private();
void closeAndQuit() {
const QString app = KGlobal::mainComponent().aboutData()->programName();
const int rc = KMessageBox::questionYesNoCancel( q,
i18n("%1 may be used by other applications as a service.\n"
"You may instead want to close this window without exiting %1.", app ),
i18n("Really quit?"), KStandardGuiItem_quit(), KStandardGuiItem_close(), KStandardGuiItem::cancel(),
"really-quit-" + app.toLower() );
if ( rc == KMessageBox::Cancel )
return;
q->close();
// WARNING: 'this' might be deleted at this point!
if ( rc == KMessageBox::Yes )
qApp->quit();
}
void certificateDetails() {
( new DetailsCommand( currentView(), &controller ) )->start();
}
void refreshCertificates() {
( new RefreshKeysCommand( RefreshKeysCommand::Normal, currentView(), &controller ) )->start();
}
void validateCertificates() {
( new RefreshKeysCommand( RefreshKeysCommand::Validate, currentView(), &controller ) )->start();
}
void exportCertificates() {
( new ExportCertificateCommand( currentView(), &controller ) )->start();
}
void importCertificates() {
( new ImportCertificateCommand( currentView(), &controller ) )->start();
}
void newCertificate();
private:
void setupActions();
void setupViews();
void saveViews();
void addView( const QString & title, const QString & keyFilterID=QString(), const QString & searchString=QString() );
void addView( const KConfigGroup & group );
unsigned int numViews() const {
return ui.tabWidget.count();
}
QAbstractItemView * currentView() const {
return ui.tabWidget.currentView();
}
private:
Kleo::AbstractKeyListModel * model;
Kleo::KeyListController controller;
QTimer refreshTimer;
struct Actions {
//QAction file_new_certificate;
//QAction file_export_certificate;
//QAction file_export_secret_keys;
//QAction file_import_certificates;
//QAction file_import_crls;
QAction * file_close;
QAction * file_quit;
//QAction view_stop_operations;
//QAction view_certificate_details;
//QAction view_hierarchical;
//QAction view_expandall;
//QAction view_collapseall;
explicit Actions( MainWindow * q )
: file_close( KStandardAction::close( q, SLOT(close()), q->actionCollection() ) ),
file_quit( KStandardAction::quit( q, SLOT(closeAndQuit()), q->actionCollection() ) )
{
}
} actions;
struct UI {
TabWidget tabWidget;
ProgressBar progressBar;
explicit UI( MainWindow * q )
: tabWidget( q ),
progressBar( q->statusBar() )
{
KDAB_SET_OBJECT_NAME( tabWidget );
KDAB_SET_OBJECT_NAME( progressBar );
progressBar.setFixedSize( progressBar.sizeHint() );
q->setCentralWidget( &tabWidget );
q->statusBar()->addPermanentWidget( &progressBar );
}
} ui;
};
MainWindow::Private::Private( MainWindow * qq )
: q( qq ),
model( AbstractKeyListModel::createFlatKeyListModel( q ) ),
controller( q ),
refreshTimer(),
actions( q ),
ui( q )
{
KDAB_SET_OBJECT_NAME( controller );
KDAB_SET_OBJECT_NAME( refreshTimer );
refreshTimer.setInterval( 5 * 60 * 1000 );
refreshTimer.setSingleShot( false );
refreshTimer.start();
connect( &refreshTimer, SIGNAL(timeout()), q, SLOT(validateCertificates()) );
controller.setModel( model );
ui.tabWidget.setModel( model );
setupActions();
connect( &controller, SIGNAL(progress(int,int)), &ui.progressBar, SLOT(setProgress(int,int)) );
connect( &controller, SIGNAL(message(QString,int)), q->statusBar(), SLOT(showMessage(QString,int)) );
q->createGUI( "kleopatra_newui.rc" );
q->resize( 640, 480 );
setupViews();
}
MainWindow::Private::~Private() {}
MainWindow::MainWindow( QWidget* parent, Qt::WindowFlags flags )
: KXmlGuiWindow( parent, flags ), d( new Private( this ) )
{
}
MainWindow::~MainWindow() {}
void MainWindow::Private::addView( const QString & title, const QString & id, const QString & text ) {
QAbstractItemView * const view = ui.tabWidget.addView( title, id, text );
assert( view );
controller.addView( view );
}
void MainWindow::Private::addView( const KConfigGroup & group ) {
if ( QAbstractItemView * const view = ui.tabWidget.addView( group ) )
controller.addView( view );
}
static void xconnect( const QObject * o1, const char * signal, const QObject * o2, const char * slot ) {
QObject::connect( o1, signal, o2, slot );
QObject::connect( o2, signal, o1, slot );
}
void MainWindow::Private::setupActions() {
KActionCollection * const coll = q->actionCollection();
QWidgetAction * const searchBarAction = new QWidgetAction( q );
SearchBar * const searchBar = new SearchBar( q );
xconnect( searchBar, SIGNAL(stringFilterChanged(QString)),
&ui.tabWidget, SLOT(setStringFilter(QString)) );
xconnect( searchBar, SIGNAL(keyFilterChanged(boost::shared_ptr<Kleo::KeyFilter>)),
&ui.tabWidget, SLOT(setKeyFilter(boost::shared_ptr<Kleo::KeyFilter>)) );
connect( &ui.tabWidget, SIGNAL(enableChangeStringFilter(bool)),
searchBar, SLOT(setChangeStringFilterEnabled(bool)) );
connect( &ui.tabWidget, SIGNAL(enableChangeKeyFilter(bool)),
searchBar, SLOT(setChangeKeyFilterEnabled(bool)) );
searchBarAction->setDefaultWidget( searchBar );
coll->addAction( "key_search_bar", searchBarAction );
const action_data action_data[] = {
// File menu
{ "file_new_certificate", i18n("New Certificate..."), QString(),
"document-new", q, SLOT(newCertificate()), i18n("Ctrl+N"), false, true },
{ "file_export_certificates", i18n("Export Certificates..."), QString(),
"document-export", q, SLOT(exportCertificates()), i18n("Ctrl+E"), false, true }, // ### should be disabled until selected
{ "file_import_certificates", i18n("Import Certificates..."), QString(),
"document-import", q, SLOT(importCertificates()), i18n("Ctrl+I"), false, true }, // ### should be disabled until selected
// View menu
{ "view_redisplay", i18n( "Redisplay" ), QString(),
"view-refresh", q, SLOT(refreshCertificates()), i18n("F5"), false, true },
{ "view_stop_operations", i18n( "Stop Operation" ), QString(),
"process-stop", &controller, SLOT(cancelCommands()), i18n("Escape"), false, false },
{ "view_certificate_details", i18n( "Certificate Details..." ), QString(),
0, q, SLOT(certificateDetails()), QString(), false, true }, // ### should be disabled until selected
// Certificate menu
{ "certificates_validate", i18n("Validate" ), QString()/*i18n("Validate selected certificates")*/,
"view-refresh", q, SLOT(validateCertificates()), i18n("SHIFT+F5"), false, true },
// CRLs menu
// Tools menu
// Settings menu
// Window menu
// (come from ui.tabWidget)
};
make_actions_from_data( action_data, sizeof action_data / sizeof *action_data, coll );
if ( QAction * action = coll->action( "view_stop_operations" ) )
connect( &controller, SIGNAL(commandsExecuting(bool)), action, SLOT(setEnabled(bool)) );
ui.tabWidget.createActions( coll );
}
static QStringList extractViewGroups( const KSharedConfig::Ptr & config ) {
return config->groupList().filter( QRegExp( "^View #\\d+$" ) );
}
void MainWindow::Private::setupViews() {
if ( const KSharedConfig::Ptr config = KGlobal::config() ) {
const QStringList groups = extractViewGroups( config );
Q_FOREACH( const QString & groupName, groups ) {
const KConfigGroup group( config, groupName );
addView( group );
}
}
if ( numViews() == 0 ) {
// add defaults:
addView( QString(), "my-certificates" );
addView( QString(), "trusted-certificates" );
addView( QString(), "other-certificates" );
}
}
void MainWindow::Private::saveViews() {
KSharedConfig::Ptr config = KGlobal::config();
if ( !config )
return;
Q_FOREACH( QString group, extractViewGroups( config ) )
config->deleteGroup( group );
for ( unsigned int i = 0, end = numViews() ; i != end ; ++i ) {
KConfigGroup group( config, QString().sprintf( "View #%u", i ) );
ui.tabWidget.saveTab( i, group );
}
}
void MainWindow::Private::newCertificate() {
QPointer<CertificateWizardImpl> wiz( new CertificateWizardImpl( q ) );
wiz->exec();
delete wiz;
}
void MainWindow::closeEvent( QCloseEvent * e ) {
// KMainWindow::closeEvent() insists on quitting the application,
// so do not let it touch the event...
qDebug( "MainWindow::closeEvent()" );
d->saveViews();
e->accept();
}
#include "mainwindow.moc"
#include "moc_mainwindow.cpp"

File Metadata

Mime Type
text/x-c++
Expires
Thu, Mar 19, 6:03 PM (13 h, 11 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
96/96/b0d6de903b1d00a06a57827010a0

Event Timeline