/* * KDevelop Multiple Buffer Support * * Copyright (c) 2005 Adam Treat * * 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 #include #include namespace KParts { class Part; class Factory; class ReadOnlyPart; } class KURL; typedef TQMap< KURL, KParts::Part* > BufferMap; typedef TQMap< KParts::Part*, TQPair > 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 m_editorFactory; ActivationMap m_delayedActivation; bool m_delayActivate; bool m_activated; TQGuardedPtr m_activeBuffer; }; #endif // kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on