QtNovelUI/WordsIDE/welcomepanel.h

23 lines
436 B
C
Raw Normal View History

2023-03-17 13:58:38 +00:00
#ifndef WELCOMEPANEL_H
#define WELCOMEPANEL_H
#include "DocsManager.h"
#include <QWidget>
namespace Components {
class WelcomePanel : public QWidget, public MakeTools::PresentBase {
public:
WelcomePanel();
// ContentPresent interface
public:
virtual QWidget *widget() const override;
virtual QString name() const override;
};
} // namespace Components
#endif // WELCOMEPANEL_H