Applied patch [ 1339882 ] richtext misc cleanup
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36031 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -9,6 +9,9 @@
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_RICHTEXTBUFFER_H_
|
||||
#define _WX_RICHTEXTBUFFER_H_
|
||||
|
||||
/*
|
||||
|
||||
Data structures
|
||||
@@ -84,17 +87,17 @@
|
||||
|
||||
*/
|
||||
|
||||
#ifndef _WX_RICHTEXTBUFFER_H_
|
||||
#define _WX_RICHTEXTBUFFER_H_
|
||||
|
||||
/*!
|
||||
* Includes
|
||||
*/
|
||||
|
||||
#include "wx/list.h"
|
||||
#include "wx/defs.h"
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/list.h"
|
||||
#include "wx/textctrl.h"
|
||||
#include "wx/bitmap.h"
|
||||
#include "wx/image.h"
|
||||
#include "wx/cmdproc.h"
|
||||
#include "wx/txtstrm.h"
|
||||
@@ -489,13 +492,13 @@ private:
|
||||
wxString m_paragraphStyleName;
|
||||
};
|
||||
|
||||
#define wxTEXT_ATTR_CHARACTER (wxTEXT_ATTR_FONT) | wxTEXT_ATTR_BACKGROUND_COLOUR | wxTEXT_ATTR_TEXT_COLOUR
|
||||
#define wxTEXT_ATTR_CHARACTER (wxTEXT_ATTR_FONT | wxTEXT_ATTR_BACKGROUND_COLOUR | wxTEXT_ATTR_TEXT_COLOUR)
|
||||
|
||||
#define wxTEXT_ATTR_PARAGRAPH wxTEXT_ATTR_ALIGNMENT|wxTEXT_ATTR_LEFT_INDENT|wxTEXT_ATTR_RIGHT_INDENT|wxTEXT_ATTR_TABS|\
|
||||
#define wxTEXT_ATTR_PARAGRAPH (wxTEXT_ATTR_ALIGNMENT|wxTEXT_ATTR_LEFT_INDENT|wxTEXT_ATTR_RIGHT_INDENT|wxTEXT_ATTR_TABS|\
|
||||
wxTEXT_ATTR_PARA_SPACING_BEFORE|wxTEXT_ATTR_PARA_SPACING_AFTER|wxTEXT_ATTR_LINE_SPACING|\
|
||||
wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_BULLET_NUMBER|wxTEXT_ATTR_BULLET_SYMBOL
|
||||
wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_BULLET_NUMBER|wxTEXT_ATTR_BULLET_SYMBOL)
|
||||
|
||||
#define wxTEXT_ATTR_ALL wxTEXT_ATTR_CHARACTER|wxTEXT_ATTR_PARAGRAPH
|
||||
#define wxTEXT_ATTR_ALL (wxTEXT_ATTR_CHARACTER|wxTEXT_ATTR_PARAGRAPH)
|
||||
|
||||
/*!
|
||||
* wxRichTextObject class declaration
|
||||
|
@@ -12,21 +12,23 @@
|
||||
#ifndef _WX_RICHTEXTCTRL_H_
|
||||
#define _WX_RICHTEXTCTRL_H_
|
||||
|
||||
#include "wx/textctrl.h"
|
||||
#include "wx/richtext/richtextbuffer.h"
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/scrolwin.h"
|
||||
#include "wx/caret.h"
|
||||
|
||||
#include "wx/richtext/richtextbuffer.h"
|
||||
|
||||
#if wxCHECK_VERSION(2,7,0)
|
||||
#define wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE 0
|
||||
#else
|
||||
#define wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE 0
|
||||
#endif
|
||||
|
||||
#if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
|
||||
#include "wx/textctrl.h"
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* Styles and flags
|
||||
*/
|
||||
|
@@ -16,12 +16,10 @@
|
||||
* Includes
|
||||
*/
|
||||
|
||||
#include "wx/defs.h"
|
||||
#include "wx/richtext/richtextbuffer.h"
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/richtext/richtextbuffer.h"
|
||||
|
||||
#if wxUSE_HTML
|
||||
#include "wx/htmllbox.h"
|
||||
#endif
|
||||
|
@@ -16,12 +16,10 @@
|
||||
* Includes
|
||||
*/
|
||||
|
||||
#include "wx/defs.h"
|
||||
#include "wx/richtext/richtextbuffer.h"
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/richtext/richtextbuffer.h"
|
||||
|
||||
/*!
|
||||
* wxRichTextXMLHandler
|
||||
*/
|
||||
|
@@ -16,14 +16,14 @@
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/richtext/richtextbuffer.h"
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/wx.h"
|
||||
#endif
|
||||
|
||||
#include "wx/image.h"
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/filename.h"
|
||||
#include "wx/clipbrd.h"
|
||||
#include "wx/dataobj.h"
|
||||
@@ -32,7 +32,6 @@
|
||||
#include "wx/mstream.h"
|
||||
#include "wx/sstream.h"
|
||||
|
||||
#include "wx/richtext/richtextbuffer.h"
|
||||
#include "wx/richtext/richtextctrl.h"
|
||||
#include "wx/richtext/richtextstyles.h"
|
||||
|
||||
@@ -4980,8 +4979,7 @@ void wxRichTextImageBlock::Init()
|
||||
|
||||
void wxRichTextImageBlock::Clear()
|
||||
{
|
||||
if (m_data)
|
||||
delete m_data;
|
||||
delete[] m_data;
|
||||
m_data = NULL;
|
||||
m_dataSize = 0;
|
||||
m_imageType = -1;
|
||||
|
@@ -16,21 +16,19 @@
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/richtext/richtextctrl.h"
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/wx.h"
|
||||
#endif
|
||||
|
||||
#include "wx/image.h"
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/textfile.h"
|
||||
#include "wx/ffile.h"
|
||||
#include "wx/settings.h"
|
||||
#include "wx/filename.h"
|
||||
#include "wx/dcbuffer.h"
|
||||
|
||||
#include "wx/richtext/richtextctrl.h"
|
||||
#include "wx/arrimpl.cpp"
|
||||
|
||||
DEFINE_EVENT_TYPE(wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED)
|
||||
|
@@ -16,20 +16,19 @@
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/richtext/richtextstyles.h"
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/wx.h"
|
||||
#endif
|
||||
|
||||
#include "wx/image.h"
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/filename.h"
|
||||
#include "wx/clipbrd.h"
|
||||
#include "wx/wfstream.h"
|
||||
#include "wx/module.h"
|
||||
|
||||
#include "wx/richtext/richtextstyles.h"
|
||||
#include "wx/richtext/richtextctrl.h"
|
||||
|
||||
IMPLEMENT_CLASS(wxRichTextStyleDefinition, wxObject)
|
||||
|
@@ -16,14 +16,14 @@
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/richtext/richtextxml.h"
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/wx.h"
|
||||
#endif
|
||||
|
||||
#include "wx/image.h"
|
||||
|
||||
#if wxUSE_RICHTEXT
|
||||
|
||||
#include "wx/filename.h"
|
||||
#include "wx/clipbrd.h"
|
||||
#include "wx/wfstream.h"
|
||||
@@ -32,8 +32,6 @@
|
||||
#include "wx/txtstrm.h"
|
||||
#include "wx/xml/xml.h"
|
||||
|
||||
#include "wx/richtext/richtextxml.h"
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxRichTextXMLHandler, wxRichTextFileHandler)
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
|
Reference in New Issue
Block a user