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

34 lines
500 B

%{H_TEMPLATE}
#ifndef KMDIKONSOLE_H
#define KMDIKONSOLE_H
#include <tqvbox.h>
class kmdikonsole : public TQVBox
{
Q_OBJECT
TQ_OBJECT
public:
kmdikonsole( TQWidget* tqparent, const char* name=0);
~kmdikonsole();
public slots:
void setDirectory(const TQString & dir);
void activate();
private slots:
void slotDestroyed();
void respawn();
protected:
void showEvent(TQShowEvent *ev);
private:
KParts::ReadOnlyPart *m_part;
bool m_haskonsole;
};
#endif // KMDIKONSOLE_H