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.
tdeaddons/kate/kpybrowser/pybrowse_part.h

75 lines
2.2 KiB

/***************************************************************************
pybrowse_part.h - description
-------------------
begin : Tue Aug 28 2001
copyright : (C) 2001 by Christian Bird
email : chrisb@lineo.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _PYBROWSE_PART_H_
#define _PYBROWSE_PART_H_
#include <kate/application.h>
#include <kate/document.h>
#include <kate/mainwindow.h>
#include <kate/plugin.h>
#include <kate/view.h>
#include <kate/viewmanager.h>
#include <kate/toolviewmanager.h>
#include <kate/documentmanager.h>
#include <kdockwidget.h>
#include <klibloader.h>
#include <klocale.h>
#include <tqstring.h>
#include "kpybrowser.h"
class PluginViewPyBrowse : public TQObject, KXMLGUIClient
{
Q_OBJECT
TQ_OBJECT
friend class KatePluginPyBrowse;
public:
PluginViewPyBrowse (Kate::MainWindow *w);
~PluginViewPyBrowse ();
public slots:
void slotShowPyBrowser();
void slotSelected(TQString name, int line);
void slotUpdatePyBrowser();
private:
Kate::MainWindow *win;
TQWidget *my_dock;
KPyBrowser *kpybrowser;
};
class KatePluginPyBrowse : public Kate::Plugin, public Kate::PluginViewInterface
{
Q_OBJECT
TQ_OBJECT
public:
KatePluginPyBrowse( TQObject* parent = 0, const char* name = 0, const TQStringList& = TQStringList() );
~KatePluginPyBrowse();
void addView(Kate::MainWindow *win);
void removeView(Kate::MainWindow *win);
private:
TQPtrList<PluginViewPyBrowse> m_views;
};
#endif