]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/aboutdlgg.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/aboutdlgg.cpp
3 // Purpose: implements wxGenericAboutBox() function
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
30 #include "wx/statbmp.h"
31 #include "wx/stattext.h"
32 #include "wx/button.h"
35 #include "wx/aboutdlg.h"
36 #include "wx/generic/aboutdlgg.h"
38 #include "wx/hyperlink.h"
39 #include "wx/collpane.h"
41 // ============================================================================
43 // ============================================================================
45 // helper function: returns all array elements in a single comma-separated and
46 // newline-terminated string
47 static wxString
AllAsString(const wxArrayString
& a
)
50 const size_t count
= a
.size();
52 for ( size_t n
= 0; n
< count
; n
++ )
54 s
<< a
[n
] << (n
== count
- 1 ? _T("\n") : _T(", "));
60 // ----------------------------------------------------------------------------
62 // ----------------------------------------------------------------------------
64 wxString
wxAboutDialogInfo::GetDescriptionAndCredits() const
66 wxString s
= GetDescription();
70 if ( HasDevelopers() )
71 s
<< _T('\n') << _("Developed by ") << AllAsString(GetDevelopers());
73 if ( HasDocWriters() )
74 s
<< _T('\n') << _("Documentation by ") << AllAsString(GetDocWriters());
77 s
<< _T('\n') << _("Graphics art by ") << AllAsString(GetArtists());
79 if ( HasTranslators() )
80 s
<< _T('\n') << _("Translations by ") << AllAsString(GetTranslators());
85 wxIcon
wxAboutDialogInfo::GetIcon() const
88 if ( !icon
.Ok() && wxTheApp
)
90 const wxTopLevelWindow
* const
91 tlw
= wxDynamicCast(wxTheApp
->GetTopWindow(), wxTopLevelWindow
);
93 icon
= tlw
->GetIcon();
99 wxString
wxAboutDialogInfo::GetCopyrightToDisplay() const
101 wxString ret
= m_copyright
;
103 const wxString copyrightSign
= wxString::FromUTF8("\xc2\xa9");
104 ret
.Replace("(c)", copyrightSign
);
105 ret
.Replace("(C)", copyrightSign
);
110 // ----------------------------------------------------------------------------
111 // wxGenericAboutDialog
112 // ----------------------------------------------------------------------------
114 bool wxGenericAboutDialog::Create(const wxAboutDialogInfo
& info
)
116 // this is a modal dialog thus we'll use GetParentForModalDialog:
117 if ( !wxDialog::Create(GetParentForModalDialog(), wxID_ANY
, _("About ") + info
.GetName(),
118 wxDefaultPosition
, wxDefaultSize
, wxRESIZE_BORDER
|wxDEFAULT_DIALOG_STYLE
) )
121 m_sizerText
= new wxBoxSizer(wxVERTICAL
);
122 wxString nameAndVersion
= info
.GetName();
123 if ( info
.HasVersion() )
124 nameAndVersion
<< _T(' ') << info
.GetVersion();
125 wxStaticText
*label
= new wxStaticText(this, wxID_ANY
, nameAndVersion
);
126 wxFont
fontBig(*wxNORMAL_FONT
);
127 fontBig
.SetPointSize(fontBig
.GetPointSize() + 2);
128 fontBig
.SetWeight(wxFONTWEIGHT_BOLD
);
129 label
->SetFont(fontBig
);
131 m_sizerText
->Add(label
, wxSizerFlags().Centre().Border());
132 m_sizerText
->AddSpacer(5);
134 AddText(info
.GetCopyrightToDisplay());
135 AddText(info
.GetDescription());
137 if ( info
.HasWebSite() )
139 #if wxUSE_HYPERLINKCTRL
140 AddControl(new wxHyperlinkCtrl(this, wxID_ANY
,
141 info
.GetWebSiteDescription(),
142 info
.GetWebSiteURL()));
144 AddText(info
.GetWebSiteURL());
145 #endif // wxUSE_HYPERLINKCTRL/!wxUSE_HYPERLINKCTRL
149 if ( info
.HasLicence() )
150 AddCollapsiblePane(_("License"), info
.GetLicence());
152 if ( info
.HasDevelopers() )
153 AddCollapsiblePane(_("Developers"),
154 AllAsString(info
.GetDevelopers()));
156 if ( info
.HasDocWriters() )
157 AddCollapsiblePane(_("Documentation writers"),
158 AllAsString(info
.GetDocWriters()));
160 if ( info
.HasArtists() )
161 AddCollapsiblePane(_("Artists"),
162 AllAsString(info
.GetArtists()));
164 if ( info
.HasTranslators() )
165 AddCollapsiblePane(_("Translators"),
166 AllAsString(info
.GetTranslators()));
167 #endif // wxUSE_COLLPANE
169 DoAddCustomControls();
172 wxSizer
*sizerIconAndText
= new wxBoxSizer(wxHORIZONTAL
);
174 wxIcon icon
= info
.GetIcon();
177 sizerIconAndText
->Add(new wxStaticBitmap(this, wxID_ANY
, icon
),
178 wxSizerFlags().Border(wxRIGHT
));
180 #endif // wxUSE_STATBMP
181 sizerIconAndText
->Add(m_sizerText
, wxSizerFlags(1).Expand());
183 wxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
184 sizerTop
->Add(sizerIconAndText
, wxSizerFlags(1).Expand().Border());
186 wxSizer
*sizerBtns
= CreateButtonSizer(wxOK
);
189 sizerTop
->Add(sizerBtns
, wxSizerFlags().Expand().Border());
192 SetSizerAndFit(sizerTop
);
199 void wxGenericAboutDialog::AddControl(wxWindow
*win
, const wxSizerFlags
& flags
)
201 wxCHECK_RET( m_sizerText
, _T("can only be called after Create()") );
202 wxASSERT_MSG( win
, _T("can't add NULL window to about dialog") );
204 m_sizerText
->Add(win
, flags
);
207 void wxGenericAboutDialog::AddControl(wxWindow
*win
)
209 AddControl(win
, wxSizerFlags().Border(wxDOWN
).Centre());
212 void wxGenericAboutDialog::AddText(const wxString
& text
)
215 AddControl(new wxStaticText(this, wxID_ANY
, text
));
218 void wxGenericAboutDialog::AddCollapsiblePane(const wxString
& title
,
219 const wxString
& text
)
221 wxCollapsiblePane
*pane
= new wxCollapsiblePane(this, wxID_ANY
, title
);
222 wxStaticText
*txt
= new wxStaticText(pane
->GetPane(), wxID_ANY
, text
,
223 wxDefaultPosition
, wxDefaultSize
,
226 // don't make the text unreasonably wide
227 static const int maxWidth
= wxGetDisplaySize().x
/3;
230 // NB: all the wxCollapsiblePanes must be added with a null proportion value
231 m_sizerText
->Add(pane
, wxSizerFlags(0).Expand().Border(wxBOTTOM
));
234 // ----------------------------------------------------------------------------
236 // ----------------------------------------------------------------------------
238 void wxGenericAboutBox(const wxAboutDialogInfo
& info
)
240 wxGenericAboutDialog
dlg(info
);
244 // currently wxAboutBox is implemented natively only under these platforms, for
245 // the others we provide a generic fallback here
246 #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXGTK26__)
248 void wxAboutBox(const wxAboutDialogInfo
& info
)
250 wxGenericAboutBox(info
);
253 #endif // platforms without native about dialog
256 #endif // wxUSE_ABOUTDLG