kde-extraapps/kdevplatform/shell/partcontroller.h
2015-07-26 14:23:17 +03:00

107 lines
3.7 KiB
C++

/***************************************************************************
* Copyright 2006 Adam Treat <treat@kde.org> *
* Copyright 2007 Alexander Dymo <adymo@kdevelop.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library 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 Library 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. *
***************************************************************************/
#ifndef __KDEVPARTCONTROLLER_H__
#define __KDEVPARTCONTROLLER_H__
#include <interfaces/ipartcontroller.h>
#include <QtCore/QMap>
#include <QtCore/QHash>
#include <QtGui/QWidget>
#include <QtCore/QPointer>
#include <kurl.h>
#include <kmimetype.h>
#include <KTextEditor/ContainerInterface>
#include <KSharedConfig>
#include "core.h"
namespace KParts
{
class Part;
class PartManager;
class ReadOnlyPart;
class ReadWritePart;
}
namespace KTextEditor
{
class Document;
class Editor;
}
Q_DECLARE_METATYPE(KSharedConfig::Ptr)
namespace KDevelop
{
class KDEVPLATFORMSHELL_EXPORT PartController : public IPartController, public KTextEditor::MdiContainer
{
friend class CorePrivate;
Q_OBJECT
Q_INTERFACES( KTextEditor::MdiContainer )
public:
PartController(Core *core, QWidget *toplevel);
virtual ~PartController();
KTextEditor::Document* createTextPart( const QString &encoding = QString() );
virtual KTextEditor::Editor* editorPart() const;
bool canCreatePart( const KUrl &url );
using IPartController::createPart;
KParts::Part* createPart( const KUrl &url, const QString& prefName = QString() );
KParts::Part* createPart( const QString &mimeType,
const QString &partType,
const QString &className,
const QString &preferredName = QString() );
KParts::ReadOnlyPart* activeReadOnly() const;
KParts::ReadWritePart* activeReadWrite() const;
KParts::ReadOnlyPart* readOnly( KParts::Part *part ) const;
KParts::ReadWritePart* readWrite( KParts::Part *part ) const;
bool isTextType( KMimeType::Ptr mimeType );
//KTextEditor::MdiContainer implementation
virtual void setActiveView( KTextEditor::View * view );
virtual KTextEditor::View * activeView();
virtual KTextEditor::Document * createDocument();
virtual bool closeDocument( KTextEditor::Document * doc );
virtual KTextEditor::View * createView( KTextEditor::Document * doc );
virtual bool closeView( KTextEditor::View * view );
protected:
virtual void loadSettings( bool projectIsLoaded );
virtual void saveSettings( bool projectIsLoaded );
virtual void initialize();
virtual void cleanup();
private:
class PartControllerPrivate* const d;
};
}
#endif