mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
24 lines
365 B
C++
24 lines
365 B
C++
#ifndef _ide_About_h_
|
|
#define _ide_About_h_
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
namespace Upp {
|
|
|
|
class SplashCtrl final : public Ctrl
|
|
{
|
|
public:
|
|
static String GenerateVersionInfo(char separator = '\n');
|
|
static String GenerateVersionNumber();
|
|
static Size MakeLogo(Ctrl& parent, Array<Ctrl>& ctrl);
|
|
|
|
public:
|
|
SplashCtrl();
|
|
|
|
private:
|
|
Array<Ctrl> ctrl;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|