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/languages/cpp/app_templates/kscons_kmdi/kmdikonsole.h

33 lines
481 B

%{H_TEMPLATE}
#ifndef KMDIKONSOLE_H
#define KMDIKONSOLE_H
#include <qvbox.h>
class kmdikonsole : public QVBox
{
Q_OBJECT
public:
kmdikonsole( QWidget* parent, const char* name=0);
~kmdikonsole();
public slots:
void setDirectory(const QString & dir);
void activate();
private slots:
void slotDestroyed();
void respawn();
protected:
void showEvent(QShowEvent *ev);
private:
KParts::ReadOnlyPart *m_part;
bool m_haskonsole;
};
#endif // KMDIKONSOLE_H