3f66f6a5b3
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
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/generic/richmsgdlgg.h
|
|
// Purpose: wxGenericRichMessageDialog
|
|
// Author: Rickard Westerlund
|
|
// Created: 2010-07-04
|
|
// Copyright: (c) 2010 wxWidgets team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_GENERIC_RICHMSGDLGG_H_
|
|
#define _WX_GENERIC_RICHMSGDLGG_H_
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxCheckBox;
|
|
class WXDLLIMPEXP_FWD_CORE wxCollapsiblePane;
|
|
class WXDLLIMPEXP_FWD_CORE wxCollapsiblePaneEvent;
|
|
|
|
class WXDLLIMPEXP_CORE wxGenericRichMessageDialog
|
|
: public wxRichMessageDialogBase
|
|
{
|
|
public:
|
|
wxGenericRichMessageDialog(wxWindow *parent,
|
|
const wxString& message,
|
|
const wxString& caption,
|
|
long style)
|
|
: wxRichMessageDialogBase( parent, message, caption, style ),
|
|
m_checkBox(NULL),
|
|
m_detailsPane(NULL)
|
|
{ }
|
|
|
|
virtual bool IsCheckBoxChecked() const;
|
|
|
|
protected:
|
|
wxCheckBox *m_checkBox;
|
|
wxCollapsiblePane *m_detailsPane;
|
|
|
|
// overrides methods in the base class
|
|
virtual void AddMessageDialogCheckBox(wxSizer *sizer);
|
|
virtual void AddMessageDialogDetails(wxSizer *sizer);
|
|
|
|
private:
|
|
void OnPaneChanged(wxCollapsiblePaneEvent& event);
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
wxDECLARE_NO_COPY_CLASS(wxGenericRichMessageDialog);
|
|
};
|
|
|
|
#endif // _WX_GENERIC_RICHMSGDLGG_H_
|