Kate
katefactory.cpp
Go to the documentation of this file.00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2001-2005 Christoph Cullmann <cullmann@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License version 2 as published by the Free Software Foundation. 00007 00008 This library is distributed in the hope that it will be useful, 00009 but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 Library General Public License for more details. 00012 00013 You should have received a copy of the GNU Library General Public License 00014 along with this library; see the file COPYING.LIB. If not, write to 00015 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00016 Boston, MA 02110-1301, USA. 00017 */ 00018 00019 #include "kateglobal.h" 00020 #include "katedocument.h" 00021 00022 #include <ktexteditor/factory.h> 00023 00029 class KateFactory : public KTextEditor::Factory 00030 { 00031 public: 00037 KateFactory ( QObject *parent = 0 ) 00038 : KTextEditor::Factory (parent) 00039 { 00040 KateGlobal::incRef (); 00041 } 00042 00046 virtual ~KateFactory () 00047 { 00048 KateGlobal::decRef (); 00049 } 00050 00051 KTextEditor::Editor *editor () { return KateGlobal::self(); } 00052 00060 KParts::Part *createPartObject ( QWidget *parentWidget, QObject *parent, const char *_classname, const QStringList & ) 00061 { 00062 QByteArray classname( _classname ); 00063 00064 // default to the kparts::* behavior of having one single widget() if the user don't requested a pure document 00065 bool bWantSingleView = ( classname != "KTextEditor::Document" ); 00066 00067 // does user want browserview? 00068 bool bWantBrowserView = false; 00069 00070 // should we be readonly? 00071 bool bWantReadOnly = (bWantBrowserView || ( classname == "KParts::ReadOnlyPart" )); 00072 00073 // set simple mode on for read-only part per default 00074 KateGlobal::self ()->setSimpleMode (bWantReadOnly); 00075 00076 KParts::ReadWritePart *part = new KateDocument (bWantSingleView, bWantBrowserView, bWantReadOnly, parentWidget, parent); 00077 part->setReadWrite( !bWantReadOnly ); 00078 00079 return part; 00080 } 00081 }; 00082 00083 K_EXPORT_PLUGIN( KateFactory ) 00084 00085 // kate: space-indent on; indent-width 2; replace-tabs on;