mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
24 lines
454 B
C++
24 lines
454 B
C++
#ifndef STDAPP_SPLASH_HPP
|
|
#define STDAPP_SPLASH_HPP
|
|
|
|
#include <stdapp/stdappDef.hpp>
|
|
|
|
#define IMAGECLASS UPP_LogoImg
|
|
#define IMAGEFILE <stdapp/UPP_Logo_033.iml>
|
|
#include <Draw/iml_header.h>
|
|
|
|
class Splash : public Ctrl
|
|
{
|
|
private:
|
|
Array<Ctrl> widgets;
|
|
|
|
void CloseSplash();
|
|
Size MakeSplash(Ctrl& parent, Array<Ctrl>& ctrl);
|
|
|
|
typedef Splash CLASSNAME;
|
|
|
|
public:
|
|
Splash(const int language, const int ms);
|
|
};
|
|
|
|
#endif
|