You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/src/multibuffer.h

89 lines
2.5 KiB

/*
* KDevelop Multiple Buffer Support
*
* Copyright (c) 2005 Adam Treat <treat@kde.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 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 MULTIBUFFER_H
#define MULTIBUFFER_H
#include <tqpair.h>
#include <tqsplitter.h>
#include <tqguardedptr.h>
namespace KParts
{
class Part;
class Factory;
class ReadOnlyPart;
}
class KURL;
typedef TQMap< KURL, KParts::Part* > BufferMap;
typedef TQMap< KParts::Part*, TQPair<int, int> > ActivationMap;
class MultiBuffer : public TQSplitter
{
Q_OBJECT
public:
MultiBuffer( TQWidget * parent = 0 );
virtual ~MultiBuffer();
KParts::Part *activeBuffer() const;
bool hasURL( const KURL &url ) const;
bool hasPart( KParts::Part *part );
int numberOfBuffers() const;
bool isActivated() const;
void setDelayedActivation( bool delayed );
KParts::Part* createPart( const TQString &mimeType,
const TQString &partType,
const TQString &className,
const TQString &preferredName = TQString() );
KParts::Part* openURL( const KURL &url );
bool closeURL( const KURL &url );
void registerURL( const KURL &url, KParts::Part *part );
void registerDelayedActivation( KParts::Part *part, int line, int col );
void updateUrlForPart( KParts::Part *part, KURL url );
public slots:
virtual void show();
virtual void setOrientation( Qt::Orientation );
void activePartChanged( const KURL &url );
protected:
virtual void focusInEvent( TQFocusEvent *ev );
private:
KParts::Part* createPart( const KURL &url );
private:
BufferMap m_buffers;
TQGuardedPtr<KParts::Factory> m_editorFactory;
ActivationMap m_delayedActivation;
bool m_delayActivate;
bool m_activated;
TQGuardedPtr<KParts::Part> m_activeBuffer;
};
#endif