Whitespaces and headers cleaning.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42147 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2081,4 +2081,3 @@ WXDLLIMPEXP_RICHTEXT void wxRichTextModuleInit();
|
||||
|
||||
#endif
|
||||
// _WX_RICHTEXTBUFFER_H_
|
||||
|
||||
|
@@ -869,4 +869,3 @@ typedef void (wxEvtHandler::*wxRichTextEventFunction)(wxRichTextEvent&);
|
||||
|
||||
#endif
|
||||
// _WX_RICHTEXTCTRL_H_
|
||||
|
||||
|
@@ -173,10 +173,10 @@ public:
|
||||
|
||||
/// Should we show tooltips?
|
||||
static bool ShowToolTips() { return sm_showToolTips; }
|
||||
|
||||
|
||||
/// Determines whether tooltips will be shown
|
||||
static void SetShowToolTips(bool show) { sm_showToolTips = show; }
|
||||
|
||||
|
||||
/// Map book control page index to our page id
|
||||
void AddPageId(int id) { m_pageIds.Add(id); }
|
||||
|
||||
|
@@ -1,12 +1,12 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: richtextliststylepage.h
|
||||
// Purpose:
|
||||
// Name: wx/richtext/richtextliststylepage.h
|
||||
// Purpose:
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
// Modified by:
|
||||
// Created: 10/18/2006 11:36:37 AM
|
||||
// RCS-ID:
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Julian Smart
|
||||
// Licence:
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _RICHTEXTLISTSTYLEPAGE_H_
|
||||
@@ -39,7 +39,7 @@
|
||||
*/
|
||||
|
||||
class WXDLLIMPEXP_RICHTEXT wxRichTextListStylePage: public wxPanel
|
||||
{
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS( wxRichTextListStylePage )
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
@@ -63,7 +63,7 @@ public:
|
||||
/// Transfer data from/to window
|
||||
virtual bool TransferDataFromWindow();
|
||||
virtual bool TransferDataToWindow();
|
||||
|
||||
|
||||
/// Get attributes for selected level
|
||||
wxTextAttrEx* GetAttributesForSelection();
|
||||
|
||||
@@ -78,7 +78,7 @@ public:
|
||||
|
||||
/// Transfer from the window and preview
|
||||
void TransferAndPreview();
|
||||
|
||||
|
||||
////@begin wxRichTextListStylePage event handler declarations
|
||||
|
||||
/// wxEVT_COMMAND_SPINCTRL_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL
|
||||
|
@@ -1,12 +1,12 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: richtextstyledlg.h
|
||||
// Purpose:
|
||||
// Name: wx/richtext/richtextstyledlg.h
|
||||
// Purpose:
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
// Modified by:
|
||||
// Created: 10/5/2006 12:05:31 PM
|
||||
// RCS-ID:
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Julian Smart
|
||||
// Licence:
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _RICHTEXTSTYLEDLG_H_
|
||||
@@ -48,7 +48,7 @@ class wxRichTextCtrl;
|
||||
/*!
|
||||
* Flags for specifying permitted operations
|
||||
*/
|
||||
|
||||
|
||||
#define wxRICHTEXT_ORGANISER_DELETE_STYLES 0x0001
|
||||
#define wxRICHTEXT_ORGANISER_CREATE_STYLES 0x0002
|
||||
#define wxRICHTEXT_ORGANISER_APPLY_STYLES 0x0004
|
||||
@@ -73,7 +73,7 @@ class wxRichTextCtrl;
|
||||
*/
|
||||
|
||||
class WXDLLIMPEXP_RICHTEXT wxRichTextStyleOrganiserDialog: public wxDialog
|
||||
{
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS( wxRichTextStyleOrganiserDialog )
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
@@ -87,18 +87,18 @@ public:
|
||||
|
||||
/// Creates the controls and sizers
|
||||
void CreateControls();
|
||||
|
||||
|
||||
/// Initialise member variables
|
||||
void Init();
|
||||
|
||||
/// Transfer data from/to window
|
||||
virtual bool TransferDataFromWindow();
|
||||
virtual bool TransferDataToWindow();
|
||||
|
||||
|
||||
/// Set/get style sheet
|
||||
void SetStyleSheet(wxRichTextStyleSheet* sheet) { m_richTextStyleSheet = sheet; }
|
||||
wxRichTextStyleSheet* GetStyleSheet() const { return m_richTextStyleSheet; }
|
||||
|
||||
|
||||
/// Set/get control
|
||||
void SetRichTextCtrl(wxRichTextCtrl* ctrl) { m_richTextCtrl = ctrl; }
|
||||
wxRichTextCtrl* GetRichTextCtrl() const { return m_richTextCtrl; }
|
||||
@@ -106,30 +106,30 @@ public:
|
||||
/// Set/get flags
|
||||
void SetFlags(int flags) { m_flags = flags; }
|
||||
int GetFlags() const { return m_flags; }
|
||||
|
||||
|
||||
/// Show preview for given or selected preview
|
||||
void ShowPreview(int sel = -1);
|
||||
|
||||
|
||||
/// Clears the preview
|
||||
void ClearPreview();
|
||||
|
||||
|
||||
/// List selection
|
||||
void OnListSelection(wxCommandEvent& event);
|
||||
|
||||
|
||||
/// Get/set restart numbering boolean
|
||||
bool GetRestartNumbering() const { return m_restartNumbering; }
|
||||
void SetRestartNumbering(bool restartNumbering) { m_restartNumbering = restartNumbering; }
|
||||
|
||||
|
||||
/// Get selected style name or definition
|
||||
wxString GetSelectedStyle() const;
|
||||
wxRichTextStyleDefinition* GetSelectedStyleDefinition() const;
|
||||
|
||||
|
||||
/// Apply the style
|
||||
bool ApplyStyle(wxRichTextCtrl* ctrl = NULL);
|
||||
|
||||
/// Should we show tooltips?
|
||||
static bool ShowToolTips() { return sm_showToolTips; }
|
||||
|
||||
|
||||
/// Determines whether tooltips will be shown
|
||||
static void SetShowToolTips(bool show) { sm_showToolTips = show; }
|
||||
|
||||
@@ -226,7 +226,7 @@ private:
|
||||
|
||||
wxRichTextCtrl* m_richTextCtrl;
|
||||
wxRichTextStyleSheet* m_richTextStyleSheet;
|
||||
|
||||
|
||||
bool m_dontUpdate;
|
||||
int m_flags;
|
||||
static bool sm_showToolTips;
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/richtext/richtextstylepage.h
|
||||
// Purpose:
|
||||
// Purpose:
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
// Modified by:
|
||||
// Created: 10/5/2006 11:34:55 AM
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Julian Smart
|
||||
@@ -29,7 +29,7 @@
|
||||
*/
|
||||
|
||||
class wxRichTextStylePage: public wxPanel
|
||||
{
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS( wxRichTextStylePage )
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
@@ -40,7 +40,7 @@ public:
|
||||
|
||||
/// Creation
|
||||
bool Create( wxWindow* parent, wxWindowID id = SYMBOL_WXRICHTEXTSTYLEPAGE_IDNAME, const wxPoint& pos = SYMBOL_WXRICHTEXTSTYLEPAGE_POSITION, const wxSize& size = SYMBOL_WXRICHTEXTSTYLEPAGE_SIZE, long style = SYMBOL_WXRICHTEXTSTYLEPAGE_STYLE );
|
||||
|
||||
|
||||
/// Initialise members
|
||||
void Init();
|
||||
|
||||
|
@@ -4,7 +4,7 @@
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
// Created: 2005-09-30
|
||||
// RCS-ID:
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Julian Smart
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
@@ -94,7 +94,7 @@ public:
|
||||
|
||||
/// Should we show tooltips?
|
||||
static bool ShowToolTips() { return sm_showToolTips; }
|
||||
|
||||
|
||||
/// Determines whether tooltips will be shown
|
||||
static void SetShowToolTips(bool show) { sm_showToolTips = show; }
|
||||
|
||||
|
Reference in New Issue
Block a user