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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// frmAbout.cpp - About Box
//
//////////////////////////////////////////////////////////////////////////
// wxWindows headers
#include <wx/wx.h>
#include <wx/image.h>
// App headers
#include "pgAdmin3.h"
#include "frm/frmAbout.h"
// Copyright text
#include "copyright.h"
#include "version.h"
#include "svnversion.h"
#define VERSION_WITH_DATE_AND_SVN wxT("Version ") VERSION_STR wxT(" (") __TDATE__ wxT(", rev: ") wxT(VERSION_SVN) wxT(")")
BEGIN_EVENT_TABLE(frmAbout, wxFrame)
EVT_PAINT(frmAbout::OnPaint)
EVT_KEY_UP(frmAbout::OnKeyUp)
EVT_LEFT_DOWN(frmAbout::OnLeftDown)
#ifdef __WXGTK__
EVT_WINDOW_CREATE(frmAbout::OnWindowCreate)
#endif
END_EVENT_TABLE()
frmAbout::frmAbout(wxFrame *parent)
: wxFrame(parent, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(100, 100), 0 | wxFRAME_SHAPED | wxSIMPLE_BORDER | wxFRAME_NO_TASKBAR | wxSTAY_ON_TOP)
{
appearanceFactory->SetIcons(this);
about = appearanceFactory->GetSplashImage();
SetClientSize(about.GetWidth(), about.GetHeight());
#ifndef __WXGTK__
SetWindowShape();
#endif
CenterOnParent();
}
void frmAbout::OnLeftDown(wxMouseEvent &WXUNUSED(evt))
{
this->Close();
}
void frmAbout::OnKeyUp(wxKeyEvent &evt)
{
if (evt.GetKeyCode() == WXK_ESCAPE)
this->Close();
}
void frmAbout::SetWindowShape()
{
wxRegion region(about);
SetShape(region);
}
void frmAbout::OnPaint(wxPaintEvent &WXUNUSED(event))
{
wxPoint pos = appearanceFactory->GetSplashTextPos();
wxPaintDC dc(this);
dc.DrawBitmap(about, 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_WITH_DATE_AND_SVN, pos);
pos.y += appearanceFactory->GetSplashTextOffset();
dc.DrawText(COPYRIGHT, pos);
pos.y += appearanceFactory->GetSplashTextOffset();
dc.DrawText(LICENSE, pos);
}
void frmAbout::OnWindowCreate(wxWindowCreateEvent &WXUNUSED(evt))
{
SetWindowShape();
}
aboutFactory::aboutFactory(menuFactoryList *list, wxMenu *mnu, ctlMenuToolbar *toolbar) : actionFactory(list)
{
mnu->Append(id, _("&About"), _("Show about dialog."));
}
wxWindow *aboutFactory::StartDialog(frmMain *form, pgObject *obj)
{
frmAbout *frm = new frmAbout((wxFrame *)form);
frm->Show();
return 0;
}
|