summaryrefslogtreecommitdiffstats
path: root/Source/WXDialog/aboutdlg.cpp
blob: e87b96e3a8bd6a943c38fd9c3e3f710ab6a0daa3 (plain)
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/*=========================================================================

  Program:   WXDialog - wxWidgets X-platform GUI Front-End for CMake
  Module:    $RCSfile$
  Language:  C++
  Date:      $Date$
  Version:   $Revision$

  Author:    Jorgen Bodde

  Copyright (c) 2002 Kitware, Inc., Insight Consortium.  All rights reserved.
  See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.

     This software is distributed WITHOUT ANY WARRANTY; without even 
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     PURPOSE.  See the above copyright notices for more information.

=========================================================================*/

#if defined(__GNUG__) && !defined(__APPLE__)
#pragma implementation "aboutdlg.h"
#endif

// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"

#ifdef __BORLANDC__
#pragma hdrstop
#endif

#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif

////@begin includes
////@end includes

#include "cmake_logo.xpm"
#include "aboutdlg.h"

////@begin XPM images
////@end XPM images

/*!
 * CMAboutDlg type definition
 */

IMPLEMENT_DYNAMIC_CLASS( CMAboutDlg, wxDialog )

/*!
 * CMAboutDlg event table definition
 */

BEGIN_EVENT_TABLE( CMAboutDlg, wxDialog )

////@begin CMAboutDlg event table entries
    EVT_BUTTON( ID_ABOUT_DLG_OK, CMAboutDlg::OnAboutDlgClick )

////@end CMAboutDlg event table entries

END_EVENT_TABLE()

/*!
 * CMAboutDlg constructors
 */

CMAboutDlg::CMAboutDlg( )
{
}

CMAboutDlg::CMAboutDlg( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style )
{
    Create(parent, id, caption, pos, size, style);
}

/*!
 * CMAboutDlg creator
 */

bool CMAboutDlg::Create( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style )
{
////@begin CMAboutDlg member initialisation
    m_cmIcon = NULL;
    m_html = NULL;
////@end CMAboutDlg member initialisation

////@begin CMAboutDlg creation
    SetExtraStyle(GetExtraStyle()|wxWS_EX_BLOCK_EVENTS);
    wxDialog::Create( parent, id, caption, pos, size, style );

    CreateControls();
    GetSizer()->Fit(this);
    GetSizer()->SetSizeHints(this);
    Centre();
////@end CMAboutDlg creation

    // set logo on the dialog
    wxBitmap bmp(cmake_logo);
    m_cmIcon->SetBitmap(bmp);

    return TRUE;
}

/*!
 * Control creation for CMAboutDlg
 */

void CMAboutDlg::CreateControls()
{    
////@begin CMAboutDlg content construction
    CMAboutDlg* itemDialog1 = this;

    wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL);
    itemDialog1->SetSizer(itemBoxSizer2);

    wxFlexGridSizer* itemFlexGridSizer3 = new wxFlexGridSizer(1, 2, 0, 0);
    itemFlexGridSizer3->AddGrowableRow(0);
    itemFlexGridSizer3->AddGrowableCol(1);
    itemBoxSizer2->Add(itemFlexGridSizer3, 1, wxGROW|wxALL, 5);

    wxBitmap m_cmIconBitmap(wxNullBitmap);
    m_cmIcon = new wxStaticBitmap( itemDialog1, wxID_STATIC, m_cmIconBitmap, wxDefaultPosition, wxSize(32, 32), 0 );
    itemFlexGridSizer3->Add(m_cmIcon, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_TOP|wxLEFT|wxRIGHT|wxTOP, 5);

    m_html = new wxHtmlWindow( itemDialog1, ID_HTMLWINDOW, wxDefaultPosition, wxSize(500, 300), wxHW_SCROLLBAR_AUTO|wxNO_BORDER|wxHSCROLL|wxVSCROLL );
    itemFlexGridSizer3->Add(m_html, 1, wxGROW|wxGROW|wxRIGHT|wxTOP|wxBOTTOM, 5);

    wxButton* itemButton6 = new wxButton( itemDialog1, ID_ABOUT_DLG_OK, _("&Ok"), wxDefaultPosition, wxDefaultSize, 0 );
    itemBoxSizer2->Add(itemButton6, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);

////@end CMAboutDlg content construction
}

/*!
 * Should we show tooltips?
 */

bool CMAboutDlg::ShowToolTips()
{
    return TRUE;
}

void CMAboutDlg::SetAboutText(const wxString &cmversion, const wxString &cmsversion, const wxArrayString &generators)
{
    // set HTML text in window

    wxString text = _("<html><head><title>CMakeSetup - GUI Build System for CMake</title></head>"
                      "<body><font color=\"#000080\" size=\"+1\"><em><strong>CMakeSetup - GUI Build System for CMake</strong></em></font>"
                      "<p><font face=\"Arial, Helvetica, sans-serif\">Welcome to <b>CMake</b>! The cross-platform, open-source make system."
                      "<b>CMake</b> is used to control the software compilation process using simple platform and compiler independent configuration files. "
                      "<b>CMake</b> generates native makefiles and workspaces that can be used in the compiler environment of your choice. "
                      "Please go to <i><b>http://www.cmake.org</b></i> to learn more about CMake.<br><br>"
                      "CMakeSetup.exe is enhanced and ported by Jorgen Bodde using <i>@WXV@</i>. The original CMakeSetup.exe is "
                      "written by Bill Hoffman, Ken Martin, Brad King and Andy Cedilnik.<br><br>"
                      "Current CMakeSetup version is: <b>@B@</b><br>"
                      "Current CMake build system is: <b>@V@</b><br><br>"
                      "Current generators are supported:<br>"
                      "@G@</font></p></body></html>");

    // compile list of generators in a bulleted list
    wxString gens = _("<ul>");
    for(size_t i = 0; i < generators.Count(); i++)
        gens << "<li><u>" << generators[i] << "</u></li>";
    gens << _("</ul>");

    // replace stuff
    text.Replace(_("@V@"), cmversion, true);
    text.Replace(_("@B@"), cmsversion, true);
    text.Replace(_("@G@"), gens, true);
    text.Replace(_("@WXV@"), wxVERSION_STRING, true);

    m_html->SetPage(text);

    // set color of HTML window to bg window
    m_html->SetBackgroundColour(GetBackgroundColour());
}

/*!
 * Get bitmap resources
 */

wxBitmap CMAboutDlg::GetBitmapResource( const wxString& name )
{
    // Bitmap retrieval
////@begin CMAboutDlg bitmap retrieval
    return wxNullBitmap;
////@end CMAboutDlg bitmap retrieval
}

/*!
 * Get icon resources
 */

wxIcon CMAboutDlg::GetIconResource( const wxString& name )
{
    // Icon retrieval
////@begin CMAboutDlg icon retrieval
    return wxNullIcon;
////@end CMAboutDlg icon retrieval
}
/*!
 * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_ABOUT_DLG_OK
 */

void CMAboutDlg::OnAboutDlgClick( wxCommandEvent& event )
{
    Close();
}