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/parts/konsole/konsoleviewwidget.h

57 lines
1.5 KiB

/***************************************************************************
* Copyright (C) 2003 by KDevelop Authors *
* tdevelop-devel@kde.org *
* *
* 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 __KONSOLEVIEWWIDGET_H__
#define __KONSOLEVIEWWIDGET_H__
#include <tqwidget.h>
#include <tqstring.h>
class KDevProject;
class KonsoleWidgetPrivate;
class KonsoleViewPart;
namespace KParts {
class ReadOnlyPart;
class Part;
}
class TQVBoxLayout;
class KonsoleViewWidget : public TQWidget
{
TQ_OBJECT
public:
KonsoleViewWidget(KonsoleViewPart *part);
virtual ~KonsoleViewWidget();
virtual void show();
public slots:
void setDirectory(const KURL &dirUrl);
private slots:
void activePartChanged(KParts::Part *activatedPart);
void partDestroyed();
private:
void activate();
KParts::ReadOnlyPart *part;
TQVBoxLayout *vbox;
KonsoleViewPart *owner;
};
#endif