lyx_mirror/src/ColorCode.h
Jean-Marc Lasgouttes 42b23f3fb2 Display bookmarks in the workarea (take 2).
The bookmarks are shown with circled numbers in the right margin (or
the left margin in RTL mode). A new color "bookmarks" has been added.
Currently bookmark 0 (the return position) is not displayed because it
is very disturbing in practice.

To make this work, a new method BookmarksSection::bookmarksInPar
retuns the list of bookmarks in a paragraph along with their position.

Force redraw when using bookmark-save and bookmark-clear.

Caveats:

- this solution does not show the precise position of the bookmark
  (this is supposedly not a problem).

- if several bookmarks are on the same row, they will currently be
  garbled. It would be easy to make sure that only one is shown ; what
  would be more difficult would be to move the second bookmark lower.

- it is possible to make sure that the markers are correctly centered
  in the margin, and that the margin size is large enough to hold the
  marker (I did not try all fonts).

Fixes bug #2496.
2021-02-26 19:09:25 +01:00

268 lines
5.7 KiB
C++

// -*- C++ -*-
/**
* \file ColorCode.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* Full author contact details are available in file CREDITS.
*/
#ifndef COLOR_CODE_H
#define COLOR_CODE_H
namespace lyx {
/// Names of colors, including all logical colors
enum ColorCode {
/// No particular color---clear or default
Color_none,
/// The different text colors
Color_black,
///
Color_white,
///
Color_blue,
///
Color_brown,
///
Color_cyan,
///
Color_darkgray,
///
Color_gray,
///
Color_green,
///
Color_lightgray,
///
Color_lime,
///
Color_magenta,
///
Color_olive,
///
Color_orange,
///
Color_pink,
///
Color_purple,
///
Color_red,
///
Color_teal,
///
Color_violet,
///
Color_yellow,
// Needed interface colors
/// Cursor color
Color_cursor,
/// Background color
Color_background,
/// Foreground color
Color_foreground,
/// Background color of selected text
Color_selection,
/// Foreground color of selected text
Color_selectiontext,
/// Text color in LaTeX mode
Color_latex,
/// The color used for previews
Color_preview,
/// Inline completion color
Color_inlinecompletion,
/// Inline completion color for the non-unique part
Color_nonunique_inlinecompletion,
/// Label color for notes
Color_notelabel,
/// Background color of notes
Color_notebg,
/// Label color for comments
Color_commentlabel,
/// Background color of comments
Color_commentbg,
/// Label color for greyedout insets
Color_greyedoutlabel,
/// Color for greyedout inset text
Color_greyedouttext,
/// Background color of greyedout inset
Color_greyedoutbg,
/// Background color of shaded box
Color_shadedbg,
/// Background color of listings inset
Color_listingsbg,
/// Label color for branches
Color_branchlabel,
/// Label color for footnotes
Color_footlabel,
/// Label color for index insets
Color_indexlabel,
/// Label color for margin notes
Color_marginlabel,
/// Text color for phantom insets
Color_phantomtext,
/// Label color for URL insets
Color_urllabel,
/// Label color 1 for text (layout) labels
Color_textlabel1,
/// Label color 2 for text (layout) labels
Color_textlabel2,
/// Label color 3 for text (layout) labels
Color_textlabel3,
/// Color for URL inset text
Color_urltext,
/// Color for the depth bars in the margin
Color_depthbar,
/// Color that indicates when a row can be scrolled
Color_scroll,
/// Color for marking foreign language words
Color_language,
/// Text color for command insets
Color_command,
/// Background color for command insets
Color_commandbg,
/// Frame color for command insets
Color_commandframe,
/// Special chars text color
Color_special,
/// Graphics inset background color
Color_graphicsbg,
/// Math inset text color
Color_math,
/// Math inset background color
Color_mathbg,
/// Macro math inset background color
Color_mathmacrobg,
/// Macro math inset background color hovered
Color_mathmacrohoverbg,
/// Macro math label color
Color_mathmacrolabel,
/// Macro math frame color
Color_mathmacroframe,
/// Macro math blended color
Color_mathmacroblend,
/// Macro template color for old parameters
Color_mathmacrooldarg,
/// Macro template color for new parameters
Color_mathmacronewarg,
/// Math inset frame color under focus
Color_mathframe,
/// Math inset frame color not under focus
Color_mathcorners,
/// Math line color
Color_mathline,
/// Collapsible insets text
Color_collapsible,
/// Collapsible insets frame
Color_collapsibleframe,
/// Inset marker background color
Color_insetbg,
/// Inset marker frame color
Color_insetframe,
/// Error box text color
Color_error,
/// End of line (EOL) marker color
Color_eolmarker,
/// Added space colour
Color_added_space,
/// Appendix marker color
Color_appendix,
/// Changebar color
Color_changebar,
/// Deleted text color
Color_deletedtext,
/// Added text color
Color_addedtext,
/// Added text color author 1
Color_addedtextauthor1,
/// Added text color author 2
Color_addedtextauthor2,
/// Added text color author 3
Color_addedtextauthor3,
/// Added text color author 4
Color_addedtextauthor4,
/// Added text color author 5
Color_addedtextauthor5,
/// Deleted text modifying color
Color_deletedtextmodifier,
/// Table line color
Color_tabularline,
/// Table line color
Color_tabularonoffline,
/// Bottom area color
Color_bottomarea,
/// New page color
Color_newpage,
/// Page break color
Color_pagebreak,
// FIXME: why are the next four separate ??
/// Color used for button frame
Color_buttonframe,
/// Color used for bottom background
Color_buttonbg,
/// Color used for button under focus
Color_buttonhoverbg,
/// Text color for broken insets
Color_command_broken,
/// Background color for broken insets
Color_buttonbg_broken,
/// Frame color for broken insets
Color_buttonframe_broken,
/// Color used for broken inset button under focus
Color_buttonhoverbg_broken,
/// Color used for the pilcrow sign to mark the end of a paragraph
Color_paragraphmarker,
/// Preview frame color
Color_previewframe,
/// Bookmark indicator color
Color_bookmark,
// Logical attributes
/// Color is inherited
Color_inherit,
/// Color for regexp frame
Color_regexpframe,
/// For ignoring updates of a color
Color_ignore
};
struct RGBColor {
unsigned int r;
unsigned int g;
unsigned int b;
RGBColor() : r(0), g(0), b(0) {}
RGBColor(unsigned int red, unsigned int green, unsigned int blue)
: r(red), g(green), b(blue) {}
};
inline bool operator==(RGBColor const & c1, RGBColor const & c2)
{
return (c1.r == c2.r && c1.g == c2.g && c1.b == c2.b);
}
inline bool operator!=(RGBColor const & c1, RGBColor const & c2)
{
return !(c1 == c2);
}
} // namespace lyx
#endif