mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
113 lines
3.2 KiB
C++
113 lines
3.2 KiB
C++
/*
|
|
This file is part of KJots.
|
|
|
|
Copyright (c) 2008 Stephen Kelly <steveire@gmail.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
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
As a special exception, permission is given to link this program
|
|
with any edition of Qt, and distribute the resulting executable,
|
|
without including the source code for Qt in the source distribution.
|
|
*/
|
|
|
|
#include "kjotspart.h"
|
|
|
|
#include "aboutdata.h"
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <kaction.h>
|
|
#include <kactioncollection.h>
|
|
#include <kcomponentdata.h>
|
|
#include <kfiledialog.h>
|
|
#include <kstandardaction.h>
|
|
#include <kstandarddirs.h>
|
|
#include <kpluginfactory.h>
|
|
#include <klocale.h>
|
|
#include <kstatusbar.h>
|
|
|
|
#include <QtCore/QFile>
|
|
#include <QtCore/QTextStream>
|
|
#include <QTimer>
|
|
#include "kjotswidget.h"
|
|
|
|
const KAboutData &createAboutData()
|
|
{
|
|
static AboutData aboutData;
|
|
return aboutData;
|
|
}
|
|
|
|
K_PLUGIN_FACTORY(KJotsPartFactory, registerPlugin<KJotsPart>();)
|
|
K_EXPORT_PLUGIN(KJotsPartFactory(createAboutData()))
|
|
|
|
KJotsPart::KJotsPart( QWidget *parentWidget, QObject *parent, const QVariantList & /*args*/ )
|
|
: KParts::ReadOnlyPart(parent)
|
|
{
|
|
// we need an instance
|
|
setComponentData( KJotsPartFactory::componentData() );
|
|
|
|
// this should be your custom internal widget
|
|
mComponent = new KJotsWidget(parentWidget, this);
|
|
|
|
mStatusBar = new KParts::StatusBarExtension(this);
|
|
// notify the part that this is our internal widget
|
|
setWidget(mComponent);
|
|
initAction();
|
|
|
|
// set our XML-UI resource file
|
|
setXMLFile(KStandardDirs::locate("data", QLatin1String("kjots/kjotspartui.rc")));
|
|
|
|
QTimer::singleShot(0, this, SLOT(delayedInitialization()));
|
|
}
|
|
|
|
KJotsPart::~KJotsPart()
|
|
{
|
|
mComponent->queryClose();
|
|
}
|
|
|
|
void KJotsPart::initAction()
|
|
{
|
|
KAction *action = new KAction( KIcon( QLatin1String("configure") ), i18n( "&Configure KJots..." ), this );
|
|
actionCollection()->addAction( QLatin1String("kjots_configure"), action );
|
|
connect( action, SIGNAL(triggered(bool)), mComponent,
|
|
SLOT(configure()) );
|
|
}
|
|
|
|
bool KJotsPart::openFile()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void KJotsPart::delayedInitialization()
|
|
{
|
|
connect(mComponent, SIGNAL(activeAnchorChanged(QString,QString)),
|
|
SLOT(activeAnchorChanged(QString,QString)));
|
|
}
|
|
|
|
void KJotsPart::activeAnchorChanged(const QString &anchorTarget, const QString &anchorText)
|
|
{
|
|
if (!anchorTarget.isEmpty())
|
|
{
|
|
mStatusBar->statusBar()->showMessage(anchorText + QLatin1String(" -> ") + anchorTarget);
|
|
} else {
|
|
mStatusBar->statusBar()->showMessage(QString());
|
|
}
|
|
}
|
|
|
|
//
|
|
// bool KJotsPart::saveFile()
|
|
// {
|
|
// return false;
|
|
// }
|