2015-06-07 21:19:26 +00:00
|
|
|
// Scintilla source code edit control
|
|
|
|
/** @file MarginView.h
|
|
|
|
** Defines the appearance of the editor margin.
|
|
|
|
**/
|
|
|
|
// Copyright 1998-2014 by Neil Hodgson <neilh@scintilla.org>
|
|
|
|
// The License.txt file describes the conditions under which this software may be distributed.
|
|
|
|
|
|
|
|
#ifndef MARGINVIEW_H
|
|
|
|
#define MARGINVIEW_H
|
|
|
|
|
|
|
|
namespace Scintilla {
|
|
|
|
|
|
|
|
void DrawWrapMarker(Surface *surface, PRectangle rcPlace, bool isEndMarker, ColourDesired wrapColour);
|
|
|
|
|
|
|
|
typedef void (*DrawWrapMarkerFn)(Surface *surface, PRectangle rcPlace, bool isEndMarker, ColourDesired wrapColour);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MarginView draws the margins.
|
|
|
|
*/
|
|
|
|
class MarginView {
|
|
|
|
public:
|
2019-05-04 18:14:48 +00:00
|
|
|
std::unique_ptr<Surface> pixmapSelMargin;
|
|
|
|
std::unique_ptr<Surface> pixmapSelPattern;
|
|
|
|
std::unique_ptr<Surface> pixmapSelPatternOffset1;
|
2015-06-07 21:19:26 +00:00
|
|
|
// Highlight current folding block
|
|
|
|
HighlightDelimiter highlightDelimiter;
|
|
|
|
|
|
|
|
int wrapMarkerPaddingRight; // right-most pixel padding of wrap markers
|
|
|
|
/** Some platforms, notably PLAT_CURSES, do not support Scintilla's native
|
|
|
|
* DrawWrapMarker function for drawing wrap markers. Allow those platforms to
|
|
|
|
* override it instead of creating a new method in the Surface class that
|
|
|
|
* existing platforms must implement as empty. */
|
|
|
|
DrawWrapMarkerFn customDrawWrapMarker;
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
MarginView() noexcept;
|
2015-06-07 21:19:26 +00:00
|
|
|
|
|
|
|
void DropGraphics(bool freeObjects);
|
|
|
|
void AllocateGraphics(const ViewStyle &vsDraw);
|
|
|
|
void RefreshPixMaps(Surface *surfaceWindow, WindowID wid, const ViewStyle &vsDraw);
|
2019-05-04 18:14:48 +00:00
|
|
|
void PaintMargin(Surface *surface, Sci::Line topLine, PRectangle rc, PRectangle rcMargin,
|
2015-06-07 21:19:26 +00:00
|
|
|
const EditModel &model, const ViewStyle &vs);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|