1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
/***************************************************************************
kfilereplace.cpp - KFileReplace shell implementation
-------------------
begin : Thu Sep 16 14:14:09 2004
copyright : (C) 2004 by Andras Mantia <amantia@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. *
* *
***************************************************************************/
//kde includes
#include <kedittoolbar.h>
#include <klibloader.h>
#include <klocale.h>
#include <kkeydialog.h>
#include <kmessagebox.h>
//app includes
#include "kfilereplace.h"
KFileReplace::KFileReplace()
: KParts::MainWindow(0L, "KFileReplace")
{
KLibFactory *factory = KLibLoader::self()->factory("libkfilereplacepart");
if (factory)
{
m_part = static_cast<KParts::ReadOnlyPart *>(factory->create(this,
"kfilereplace_part", "KParts::ReadOnlyPart" ));
if (m_part)
{
setCentralWidget(m_part->widget());
KStdAction::quit(this, SLOT(close()), actionCollection());
KStdAction::keyBindings(this, SLOT(slotConfigureKeys()), actionCollection());
KStdAction::configureToolbars(this, SLOT(slotConfigureToolbars()), actionCollection());
setStandardToolBarMenuEnabled(true);
createGUI(m_part);
removeDuplicatedActions();
}
}
else
{
KMessageBox::error(this, i18n("Could not find the KFileReplace part."));
close();
return;
}
}
KFileReplace::~KFileReplace()
{
}
void KFileReplace::openURL(const KURL &url)
{
m_part->openURL(url);
}
void KFileReplace::slotConfigureKeys()
{
KKeyDialog dlg( false, this );
QPtrList<KXMLGUIClient> clients = guiFactory()->clients();
for( QPtrListIterator<KXMLGUIClient> it( clients );
it.current(); ++it )
{
dlg.insert( (*it)->actionCollection() );
}
dlg.configure();
}
void KFileReplace::slotConfigureToolbars()
{
saveMainWindowSettings(KGlobal::config(), autoSaveGroup());
KEditToolbar dlg(factory());
connect(&dlg, SIGNAL(newToolbarConfig()),
this, SLOT(applyNewToolbarConfig()));
dlg.exec();
}
void KFileReplace::applyNewToolbarConfig()
{
applyMainWindowSettings(KGlobal::config(), autoSaveGroup());
}
void KFileReplace::removeDuplicatedActions()
{
KActionCollection* part_action_collection = m_part->actionCollection();
KAction* part_about_action = part_action_collection->action("help_about_kfilereplace");
KAction* part_report_action = part_action_collection->action("report_bug");
KAction* part_help_action= part_action_collection->action("help_kfilereplace");
if (!part_about_action || !part_report_action || !part_help_action || !part_action_collection)
return;
QWidget* container = part_about_action->container(0);
part_about_action->unplug(container);
part_report_action->unplug(container);
part_help_action->unplug(container);
part_action_collection->remove(part_about_action);
part_action_collection->remove(part_report_action);
part_action_collection->remove(part_help_action);
}
#include "kfilereplace.moc"
|