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