ultimatepp/uppsrc/ide/About.h

24 lines
400 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(bool qtf = false, bool about = false);
static String GenerateVersionNumber();
static Size MakeLogo(Ctrl& parent, Array<Ctrl>& ctrl, bool about = false);
public:
SplashCtrl();
private:
Array<Ctrl> ctrl;
};
}
#endif