mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
30 lines
650 B
C++
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
|