summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/richstring.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/richstring.hxx')
-rw-r--r--sc/source/filter/inc/richstring.hxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/sc/source/filter/inc/richstring.hxx b/sc/source/filter/inc/richstring.hxx
index 9dfa124f5c43..d29da6017a3e 100644
--- a/sc/source/filter/inc/richstring.hxx
+++ b/sc/source/filter/inc/richstring.hxx
@@ -34,8 +34,6 @@ namespace com { namespace sun { namespace star {
namespace oox {
namespace xls {
-
-
/** Flags used to specify import/export mode of strings. */
typedef sal_Int32 BiffStringFlags;
@@ -46,8 +44,6 @@ const BiffStringFlags BIFF_STR_SMARTFLAGS = 0x0004; /// Omit flags on empty
const BiffStringFlags BIFF_STR_KEEPFONTS = 0x0008; /// Keep old fonts when reading unformatted string (default: clear fonts). Import only.
const BiffStringFlags BIFF_STR_EXTRAFONTS = 0x0010; /// Read trailing rich-string font array (default: nothing). BIFF2-BIFF5 import only.
-
-
/** Contains text data and font attributes for a part of a rich formatted string. */
class RichStringPortion : public WorkbookHelper
{
@@ -88,8 +84,6 @@ private:
typedef ::boost::shared_ptr< RichStringPortion > RichStringPortionRef;
-
-
enum BiffFontPortionMode
{
BIFF_FONTPORTION_8BIT, /// Font portion with 8-bit values.
@@ -97,8 +91,6 @@ enum BiffFontPortionMode
BIFF_FONTPORTION_OBJ /// Font portion in OBJ or TXO record.
};
-
-
/** Represents a position in a rich-string containing current font identifier.
This object stores the position of a formatted character in a rich-string
@@ -117,8 +109,6 @@ struct FontPortionModel
void read( SequenceInputStream& rStrm );
};
-
-
/** A vector with all font portions in a rich-string. */
class FontPortionModelList : public ::std::vector< FontPortionModel >
{
@@ -131,8 +121,6 @@ public:
void importPortions( SequenceInputStream& rStrm );
};
-
-
struct PhoneticDataModel
{
sal_Int32 mnFontId; /// Font identifier for text formatting.
@@ -145,8 +133,6 @@ struct PhoneticDataModel
void setBiffData( sal_Int32 nType, sal_Int32 nAlignment );
};
-
-
class PhoneticSettings : public WorkbookHelper
{
public:
@@ -164,8 +150,6 @@ private:
PhoneticDataModel maModel;
};
-
-
/** Contains text data and positioning information for a phonetic text portion. */
class RichStringPhonetic : public WorkbookHelper
{
@@ -187,8 +171,6 @@ private:
typedef ::boost::shared_ptr< RichStringPhonetic > RichStringPhoneticRef;
-
-
/** Represents a phonetic text portion in a rich-string with phonetic text.
Used in binary filters only. */
struct PhoneticPortionModel
@@ -204,8 +186,6 @@ struct PhoneticPortionModel
void read( SequenceInputStream& rStrm );
};
-
-
/** A vector with all phonetic portions in a rich-string. */
class PhoneticPortionModelList : public ::std::vector< PhoneticPortionModel >
{
@@ -218,8 +198,6 @@ public:
void importPortions( SequenceInputStream& rStrm );
};
-
-
/** Contains string data and a list of formatting runs for a rich formatted string. */
class RichString : public WorkbookHelper
{
@@ -280,8 +258,6 @@ private:
typedef ::boost::shared_ptr< RichString > RichStringRef;
-
-
} // namespace xls
} // namespace oox