X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2Ftypes.h;h=0e25333672af6336df248e858028134e5703ad39;hb=62df59cde4847512698e86adb073d526d39c05e1;hp=bc46ad7dcae87ccf171106ea295b691c070b9bd2;hpb=a654de29ea80901be5321f603008f0e6a82a0ec9;p=lyx.git diff --git a/src/support/types.h b/src/support/types.h index bc46ad7dca..0e25333672 100644 --- a/src/support/types.h +++ b/src/support/types.h @@ -1,31 +1,43 @@ +// -*- C++ -*- +/** + * \file types.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * Provide a set of typedefs for commonly used things like sizes and + * indices wile trying to stay compatible with types used + * by the standard containers. + * + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ + #ifndef LYX_TYPES_H #define LYX_TYPES_H -// provide a set of typedefs for commonly used things like sizes and -// indices while trying to stay compatible with types used by the standard -// containers. - +#include -// this probably could be improved by using ... -#include +namespace lyx { -namespace lyx -{ /// a type for positions used in paragraphs // needs to be signed for a while to hold the special value -1 that is - // used there... - typedef std::vector::difference_type pos_type; + // used there + typedef ptrdiff_t pos_type; + + /// a type for paragraph offsets + // FIXME: should be unsigned as well. + // however, simply changing it breaks a downward loop somewhere... + typedef ptrdiff_t pit_type; + /// a type for the nesting depth of a paragraph + typedef size_t depth_type; // set this to '0' if you want to have really safe types #if 1 /// a type for sizes - typedef std::vector::size_type size_type; - - /// a type used for numbering text classes - // used to be LyXTextClassList::size_type - typedef std::vector::size_type textclass_type; + typedef size_t size_type; #else @@ -35,7 +47,7 @@ namespace lyx struct size_type { /// - typedef std::vector::size_type base_type; + typedef size_t base_type; /// size_type(base_type t) { data_ = t; } /// @@ -45,21 +57,31 @@ namespace lyx base_type data_; }; - struct textclass_type { - /// - typedef std::vector::size_type base_type; - /// - textclass_type(base_type t) { data_ = t; } +#endif + + /// + enum word_location { + // the word around the cursor, only if the cursor is + //not at a boundary + WHOLE_WORD_STRICT, + // the word around the cursor + WHOLE_WORD, + /// the word begining from the cursor position + PARTIAL_WORD, + /// the word around the cursor or before the cursor + PREVIOUS_WORD, + /// the next word (not yet used) + NEXT_WORD + }; + + /// + enum PageSides { /// - operator base_type() const { return data_; } + OneSide, /// - private: - base_type data_; + TwoSides }; +} // namespace lyx -#endif - -} - -#endif +#endif // LYX_TYPES_H