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.
34 lines
495 B
34 lines
495 B
%{H_TEMPLATE}
|
|
|
|
#ifndef KMDIKONSOLE_H
|
|
#define KMDIKONSOLE_H
|
|
|
|
#include <tqvbox.h>
|
|
|
|
class tdemdikonsole : public TQVBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
tdemdikonsole( TQWidget* parent, const char* name=0);
|
|
~tdemdikonsole();
|
|
|
|
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
|