mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
19 lines
450 B
C++
19 lines
450 B
C++
#ifndef _GoogleTranslatorDemo_NeedAdd_h_
|
|
#define _GoogleTranslatorDemo_NeedAdd_h_
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
class TopWindowSpecific : public TopWindow{
|
|
public:
|
|
typedef TopWindowSpecific CLASSNAME;
|
|
#ifdef PLATFORM_WIN32
|
|
// Overriding default WindowProc
|
|
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
|
|
#endif
|
|
//... Need to add this event for other plathorms
|
|
Callback WhenMinimize;
|
|
};
|
|
|
|
#endif
|