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
15 years ago
|
%{H_TEMPLATE}
|
||
|
|
||
|
#ifndef KMDIKONSOLE_H
|
||
|
#define KMDIKONSOLE_H
|
||
|
|
||
15 years ago
|
#include <tqvbox.h>
|
||
15 years ago
|
|
||
12 years ago
|
class tdemdikonsole : public TQVBox
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
|
||
|
public:
|
||
12 years ago
|
tdemdikonsole( TQWidget* parent, const char* name=0);
|
||
|
~tdemdikonsole();
|
||
15 years ago
|
|
||
|
public slots:
|
||
15 years ago
|
void setDirectory(const TQString & dir);
|
||
15 years ago
|
void activate();
|
||
|
|
||
|
private slots:
|
||
|
void slotDestroyed();
|
||
|
void respawn();
|
||
|
|
||
|
protected:
|
||
15 years ago
|
void showEvent(TQShowEvent *ev);
|
||
15 years ago
|
|
||
|
private:
|
||
|
KParts::ReadOnlyPart *m_part;
|
||
|
bool m_haskonsole;
|
||
|
};
|
||
|
|
||
|
#endif // KMDIKONSOLE_H
|