1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// frmSplash.cpp - Splash Screen
//
//////////////////////////////////////////////////////////////////////////
// wxWindows headers
#include <wx/wx.h>
#include <wx/image.h>
// App headers
#include "pgAdmin3.h"
#include "frm/frmSplash.h"
// Copyright text
#include "copyright.h"
#include "version.h"
BEGIN_EVENT_TABLE(frmSplash, wxFrame)
EVT_PAINT(frmSplash::OnPaint)
#ifdef __WXGTK__
EVT_WINDOW_CREATE(frmSplash::OnWindowCreate)
#endif
END_EVENT_TABLE()
frmSplash::frmSplash(wxFrame *parent)
#ifndef __WXDEBUG__
: wxFrame((wxFrame *)NULL, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(100, 100), 0 | wxFRAME_SHAPED | wxSIMPLE_BORDER | wxFRAME_NO_TASKBAR | wxSTAY_ON_TOP)
#else
: wxFrame((wxFrame *)NULL, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(100, 100), 0 | wxFRAME_SHAPED | wxSIMPLE_BORDER | wxFRAME_NO_TASKBAR)
#endif
{
appearanceFactory->SetIcons(this);
splash = appearanceFactory->GetSplashImage();
SetClientSize(splash.GetWidth(), splash.GetHeight());
#ifndef __WXGTK__
SetWindowShape();
#endif
CenterOnScreen();
}
void frmSplash::SetWindowShape()
{
wxRegion region(splash);
SetShape(region);
}
void frmSplash::OnPaint(wxPaintEvent &WXUNUSED(event))
{
wxPoint pos = appearanceFactory->GetSplashTextPos();
wxPaintDC dc(this);
dc.DrawBitmap(splash, 0, 0, true);
dc.SetTextForeground(appearanceFactory->GetSplashTextColour());
dc.SetFont(appearanceFactory->GetSplashTextFont());
if (appearanceFactory->IsBranded())
{
dc.DrawText(_("This program is based on pgAdmin III"), pos);
pos.y += appearanceFactory->GetSplashTextOffset();
}
dc.DrawText(VERSION_WITHOUT_DATE, pos);
pos.y += appearanceFactory->GetSplashTextOffset();
dc.DrawText(COPYRIGHT, pos);
pos.y += appearanceFactory->GetSplashTextOffset();
dc.DrawText(LICENSE, pos);
}
void frmSplash::OnWindowCreate(wxWindowCreateEvent &WXUNUSED(evt))
{
SetWindowShape();
}
|