X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2Ftypes.h;h=fc443dcf533e4b4443a153ae47d7ee6bfdb408eb;hb=cf14e814124ccbc8155fa1dde98d03be319c0e87;hp=65928821c3f7de3dc54302b24d537ce79ec04ed4;hpb=c46b7d89553209b8df4e9de392ee07ef711f092f;p=lyx.git diff --git a/src/support/types.h b/src/support/types.h index 65928821c3..fc443dcf53 100644 --- a/src/support/types.h +++ b/src/support/types.h @@ -8,7 +8,7 @@ * indices wile trying to stay compatible with types used * by the standard containers. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -16,28 +16,25 @@ #ifndef LYX_TYPES_H #define LYX_TYPES_H -#include "docstring.h" - -#include - #include -#include namespace lyx { - // The type used to hold characters in paragraphs - typedef boost::uint32_t char_type; // Possibly the ucs-4 type we will use - //typedef wchar_t char_type; // The wide char type CJK-LyX uses - //typedef char char_type; // Current narrow char type in use - - //typedef std::wstring docstring; - - /// a type for positions used in paragraphs - // needs to be signed for a while to hold the special value -1 that is - // used there + /*! + * A type for positions used in paragraphs. + * Each position is either occupied by a single character or an inset. + * For insets, the placeholder META_INSET is stored in the paragraph + * text, and the actual insets are maintained separately. + */ + // FIXME: should be unsigned, but needs to be signed for a while to + // hold the special value -1 that is used somewhere + // Note that the signed property is also used in loops counting to zero. typedef ptrdiff_t pos_type; - /// a type for paragraph offsets + /*! + * A type for paragraph offsets. + * This is used to address paragraphs in ParagraphList, Text etc. + */ // FIXME: should be unsigned as well. // however, simply changing it breaks a downward loop somewhere... typedef ptrdiff_t pit_type; @@ -51,9 +48,6 @@ namespace lyx { /// a type for sizes typedef size_t size_type; - /// a type used for numbering text classes - typedef size_t textclass_type; - #else // These structs wrap simple things to make them distinguishible @@ -62,35 +56,22 @@ namespace lyx { struct size_type { /// - typedef size_t base_type; + typedef size_t base_type; /// size_type(base_type t) { data_ = t; } /// operator base_type() const { return data_; } /// - private: + private: base_type data_; }; - struct textclass_type { - /// - typedef size_t base_type; - /// - textclass_type(base_type t) { data_ = t; } - /// - operator base_type() const { return data_; } - /// - private: - base_type data_; - }; - - #endif /// enum word_location { - // the word around the cursor, only if the cursor is - //not at a boundary + /// the word around the cursor, only if the cursor is + /// not at a boundary WHOLE_WORD_STRICT, // the word around the cursor WHOLE_WORD, @@ -102,6 +83,14 @@ namespace lyx { NEXT_WORD }; + /// + enum PageSides { + /// + OneSide, + /// + TwoSides + }; + } // namespace lyx #endif // LYX_TYPES_H