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.
|
|
|
#ifndef DISPLAYMGRSDI_H
|
|
|
|
#define DISPLAYMGRSDI_H
|
|
|
|
|
|
|
|
#include "displayMgr.h"
|
|
|
|
|
|
|
|
class DisplayMgrSDI : public DisplayMgr {
|
|
|
|
public:
|
|
|
|
DisplayMgrSDI();
|
|
|
|
virtual ~DisplayMgrSDI();
|
|
|
|
|
|
|
|
virtual void newTopLevel(TQWidget *, bool show = FALSE);
|
|
|
|
virtual void removeTopLevel(TQWidget *);
|
|
|
|
|
|
|
|
virtual void show(TQWidget *);
|
|
|
|
virtual void hide(TQWidget *);
|
|
|
|
virtual void raise(TQWidget *, bool takefocus = false);
|
|
|
|
|
|
|
|
virtual void setCaption(TQWidget *, const TQString&);
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|