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.
29 lines
478 B
29 lines
478 B
#ifndef DISPLAYMGR_H
|
|
#define DISPLAYMGR_H
|
|
|
|
#include <tqstring.h>
|
|
|
|
class TQWidget;
|
|
|
|
class DisplayMgr {
|
|
public:
|
|
virtual ~DisplayMgr() {};
|
|
|
|
virtual void newTopLevel(TQWidget *, bool show = false) = 0;
|
|
|
|
virtual void removeTopLevel(TQWidget *) = 0;
|
|
|
|
virtual void show(TQWidget *) = 0;
|
|
|
|
virtual void hide(TQWidget *) = 0;
|
|
|
|
virtual void raise(TQWidget *, bool takefocus = false) = 0;
|
|
|
|
virtual void setCaption(TQWidget *, const TQString&) = 0;
|
|
|
|
};
|
|
|
|
|
|
#endif
|
|
|