pgadmin3/include/frm/frmSplash.h
2020-07-07 22:19:12 +05:00

30 lines
650 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// frmSplash.h - Splash Screen
//
//////////////////////////////////////////////////////////////////////////
#ifndef SPLASH_H
#define SPLASH_H
// Class declarations
class frmSplash : public wxFrame
{
public:
frmSplash(wxFrame *parent);
void OnPaint(wxPaintEvent &);
private:
void SetWindowShape();
void OnWindowCreate(wxWindowCreateEvent &WXUNUSED(evt));
wxBitmap splash;
DECLARE_EVENT_TABLE()
};
#endif