This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
90 lines
2.8 KiB
C++
90 lines
2.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/generic/richmsgdlgg.cpp
|
|
// Purpose: wxGenericRichMessageDialog
|
|
// Author: Rickard Westerlund
|
|
// Created: 2010-07-04
|
|
// Copyright: (c) 2010 wxWidgets team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_RICHMSGDLG
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/checkbox.h"
|
|
#include "wx/stattext.h"
|
|
#include "wx/sizer.h"
|
|
#endif
|
|
|
|
#include "wx/collpane.h"
|
|
#include "wx/richmsgdlg.h"
|
|
|
|
wxIMPLEMENT_CLASS(wxRichMessageDialog, wxDialog)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Events and handlers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
BEGIN_EVENT_TABLE(wxGenericRichMessageDialog, wxRichMessageDialogBase)
|
|
EVT_COLLAPSIBLEPANE_CHANGED(wxID_ANY,
|
|
wxGenericRichMessageDialog::OnPaneChanged)
|
|
END_EVENT_TABLE()
|
|
|
|
void wxGenericRichMessageDialog::OnPaneChanged(wxCollapsiblePaneEvent& event)
|
|
{
|
|
if ( event.GetCollapsed() )
|
|
m_detailsPane->SetLabel( m_detailsExpanderCollapsedLabel );
|
|
else
|
|
m_detailsPane->SetLabel( m_detailsExpanderExpandedLabel );
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxGenericRichMessageDialog
|
|
// ----------------------------------------------------------------------------
|
|
|
|
void wxGenericRichMessageDialog::AddMessageDialogCheckBox(wxSizer *sizer)
|
|
{
|
|
if ( !m_checkBoxText.empty() )
|
|
{
|
|
m_checkBox = new wxCheckBox(this, wxID_ANY, m_checkBoxText);
|
|
m_checkBox->SetValue(m_checkBoxValue);
|
|
|
|
sizer->Add(m_checkBox, wxSizerFlags().Left().Border(wxLEFT|wxTOP, 10));
|
|
}
|
|
}
|
|
|
|
void wxGenericRichMessageDialog::AddMessageDialogDetails(wxSizer *sizer)
|
|
{
|
|
if ( !m_detailedText.empty() )
|
|
{
|
|
wxSizer *sizerDetails = new wxBoxSizer( wxHORIZONTAL );
|
|
|
|
m_detailsPane =
|
|
new wxCollapsiblePane( this, -1, m_detailsExpanderCollapsedLabel );
|
|
|
|
// add the detailed text
|
|
wxWindow *windowPane = m_detailsPane->GetPane();
|
|
wxSizer *sizerPane = new wxBoxSizer( wxHORIZONTAL );
|
|
sizerPane->Add( new wxStaticText( windowPane, -1, m_detailedText ) );
|
|
windowPane->SetSizer( sizerPane );
|
|
|
|
sizerDetails->Add( m_detailsPane, wxSizerFlags().Right().Expand() );
|
|
sizer->Add( sizerDetails, 0, wxTOP|wxLEFT|wxRIGHT | wxALIGN_LEFT, 10 );
|
|
}
|
|
}
|
|
|
|
bool wxGenericRichMessageDialog::IsCheckBoxChecked() const
|
|
{
|
|
// This function can be called before the dialog is shown and hence before
|
|
// the check box is created.
|
|
return m_checkBox ? m_checkBox->IsChecked() : m_checkBoxValue;
|
|
}
|
|
|
|
#endif // wxUSE_RICHMSGDLG
|