2023-03-17 13:58:38 +00:00
|
|
|
#ifndef WELCOMEPANEL_H
|
|
|
|
#define WELCOMEPANEL_H
|
|
|
|
|
|
|
|
#include "DocsManager.h"
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
namespace Components {
|
|
|
|
|
2023-08-27 14:09:46 +00:00
|
|
|
class WelcomePanel : public QWidget, public Components::PresentBase {
|
|
|
|
public:
|
|
|
|
WelcomePanel(QWidget *parent = nullptr);
|
2023-03-17 13:58:38 +00:00
|
|
|
|
2023-08-27 14:09:46 +00:00
|
|
|
// PresentBase interface
|
|
|
|
public:
|
2023-03-17 13:58:38 +00:00
|
|
|
virtual QWidget *widget() const override;
|
|
|
|
virtual QString name() const override;
|
2023-08-27 14:09:46 +00:00
|
|
|
virtual void beforeClose() override;
|
|
|
|
virtual Core::DocumentsManager *docsManager() const override;
|
2023-03-17 13:58:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Components
|
|
|
|
|
|
|
|
#endif // WELCOMEPANEL_H
|