8f8d58d193
Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE occurrences to use the wx-prefixed version of the macros.
100 lines
3.2 KiB
C++
100 lines
3.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/richtext/richtextstylepage.h
|
|
// Purpose: Declares the rich text formatting dialog style page.
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 10/5/2006 11:34:55 AM
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _RICHTEXTSTYLEPAGE_H_
|
|
#define _RICHTEXTSTYLEPAGE_H_
|
|
|
|
#include "wx/richtext/richtextdialogpage.h"
|
|
|
|
/*!
|
|
* Control identifiers
|
|
*/
|
|
|
|
////@begin control identifiers
|
|
#define SYMBOL_WXRICHTEXTSTYLEPAGE_STYLE wxRESIZE_BORDER|wxTAB_TRAVERSAL
|
|
#define SYMBOL_WXRICHTEXTSTYLEPAGE_TITLE wxEmptyString
|
|
#define SYMBOL_WXRICHTEXTSTYLEPAGE_IDNAME ID_RICHTEXTSTYLEPAGE
|
|
#define SYMBOL_WXRICHTEXTSTYLEPAGE_SIZE wxSize(400, 300)
|
|
#define SYMBOL_WXRICHTEXTSTYLEPAGE_POSITION wxDefaultPosition
|
|
////@end control identifiers
|
|
|
|
/*!
|
|
* wxRichTextStylePage class declaration
|
|
*/
|
|
|
|
class WXDLLIMPEXP_RICHTEXT wxRichTextStylePage: public wxRichTextDialogPage
|
|
{
|
|
wxDECLARE_DYNAMIC_CLASS(wxRichTextStylePage);
|
|
wxDECLARE_EVENT_TABLE();
|
|
DECLARE_HELP_PROVISION()
|
|
|
|
public:
|
|
/// Constructors
|
|
wxRichTextStylePage( );
|
|
wxRichTextStylePage( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = SYMBOL_WXRICHTEXTSTYLEPAGE_POSITION, const wxSize& size = SYMBOL_WXRICHTEXTSTYLEPAGE_SIZE, long style = SYMBOL_WXRICHTEXTSTYLEPAGE_STYLE );
|
|
|
|
/// Creation
|
|
bool Create( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = SYMBOL_WXRICHTEXTSTYLEPAGE_POSITION, const wxSize& size = SYMBOL_WXRICHTEXTSTYLEPAGE_SIZE, long style = SYMBOL_WXRICHTEXTSTYLEPAGE_STYLE );
|
|
|
|
/// Initialise members
|
|
void Init();
|
|
|
|
/// Creates the controls and sizers
|
|
void CreateControls();
|
|
|
|
/// Transfer data from/to window
|
|
virtual bool TransferDataFromWindow();
|
|
virtual bool TransferDataToWindow();
|
|
|
|
/// Gets the attributes associated with the main formatting dialog
|
|
wxRichTextAttr* GetAttributes();
|
|
|
|
/// Determines whether the style name can be edited
|
|
bool GetNameIsEditable() const { return m_nameIsEditable; }
|
|
void SetNameIsEditable(bool editable) { m_nameIsEditable = editable; }
|
|
|
|
////@begin wxRichTextStylePage event handler declarations
|
|
|
|
/// wxEVT_UPDATE_UI event handler for ID_RICHTEXTSTYLEPAGE_NEXT_STYLE
|
|
void OnNextStyleUpdate( wxUpdateUIEvent& event );
|
|
|
|
////@end wxRichTextStylePage event handler declarations
|
|
|
|
////@begin wxRichTextStylePage member function declarations
|
|
|
|
/// Retrieves bitmap resources
|
|
wxBitmap GetBitmapResource( const wxString& name );
|
|
|
|
/// Retrieves icon resources
|
|
wxIcon GetIconResource( const wxString& name );
|
|
////@end wxRichTextStylePage member function declarations
|
|
|
|
/// Should we show tooltips?
|
|
static bool ShowToolTips();
|
|
|
|
////@begin wxRichTextStylePage member variables
|
|
wxTextCtrl* m_styleName;
|
|
wxComboBox* m_basedOn;
|
|
wxComboBox* m_nextStyle;
|
|
/// Control identifiers
|
|
enum {
|
|
ID_RICHTEXTSTYLEPAGE = 10403,
|
|
ID_RICHTEXTSTYLEPAGE_STYLE_NAME = 10404,
|
|
ID_RICHTEXTSTYLEPAGE_BASED_ON = 10405,
|
|
ID_RICHTEXTSTYLEPAGE_NEXT_STYLE = 10406
|
|
};
|
|
////@end wxRichTextStylePage member variables
|
|
|
|
bool m_nameIsEditable;
|
|
};
|
|
|
|
#endif
|
|
// _RICHTEXTSTYLEPAGE_H_
|