kate Library API Documentation

kateconsole.h

00001 /* This file is part of the KDE project
00002    Copyright (C) 2001 Christoph Cullmann <cullmann@kde.org>
00003    Copyright (C) 2002 Joseph Wenninger <jowenn@kde.org>
00004    Copyright (C) 2002 Anders Lund <anders.lund@lund.tdcadsl.dk>
00005 
00006    This library is free software; you can redistribute it and/or
00007    modify it under the terms of the GNU Library General Public
00008    License version 2 as published by the Free Software Foundation.
00009 
00010    This library is distributed in the hope that it will be useful,
00011    but WITHOUT ANY WARRANTY; without even the implied warranty of
00012    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013    Library General Public License for more details.
00014 
00015    You should have received a copy of the GNU Library General Public License
00016    along with this library; see the file COPYING.LIB.  If not, write to
00017    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00018    Boston, MA 02111-1307, USA.
00019 */
00020 
00021 #ifndef __KATE_CONSOLE_H__
00022 #define __KATE_CONSOLE_H__
00023 
00024 #include "katemain.h"
00025 #include "../interfaces/viewmanager.h"
00026 
00027 #include <qwidget.h>
00028 #include <kparts/part.h>
00029 
00030 class KateConsole : public QWidget
00031 {
00032   Q_OBJECT
00033 
00034   public:
00035     KateConsole (QWidget* parent, const char* name, Kate::ViewManager *);
00036     ~KateConsole ();
00037 
00038     void cd (KURL url=KURL());
00039     
00040     void sendInput( const QString& text );
00041 
00042   protected:
00043     void focusInEvent( QFocusEvent * ) { if (part) part->widget()->setFocus(); };
00044     virtual void showEvent(QShowEvent *);
00045     
00046 
00047   private:
00048     KParts::ReadOnlyPart *part;
00049     QVBoxLayout* lo;
00050     Kate::ViewManager *m_kvm;
00051 
00052   public slots:
00053     void loadConsoleIfNeeded();
00054 
00055   // Only needed for Konsole
00056   private slots:
00057     void notifySize (int,int) {};
00058     void changeColumns (int) {};
00059     void changeTitle(int,const QString&) {};
00060 
00061     void slotDestroyed ();
00062 };
00063 
00064 #endif
KDE Logo
This file is part of the documentation for kate Library Version 3.3.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Sun Aug 20 13:39:04 2006 by doxygen 1.4.2 written by Dimitri van Heesch, © 1997-2003