0031067: Visualization - Aspect_Window::DoResize() should be a non-const method
[occt.git] / src / Aspect / Aspect_TypeOfMarker.hxx
CommitLineData
42cf5bc1 1// Created by: NW,JPB,CAL
2// Copyright (c) 1991-1999 Matra Datavision
3// Copyright (c) 1999-2014 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#ifndef _Aspect_TypeOfMarker_HeaderFile
17#define _Aspect_TypeOfMarker_HeaderFile
18
19//! Definition of types of markers
42cf5bc1 20enum Aspect_TypeOfMarker
21{
3a4a3962 22 Aspect_TOM_EMPTY = -1, //!< hidden
23 Aspect_TOM_POINT = 0, //!< point .
24 Aspect_TOM_PLUS, //!< plus +
25 Aspect_TOM_STAR, //!< star *
26 Aspect_TOM_X, //!< cross x
27 Aspect_TOM_O, //!< circle O
28 Aspect_TOM_O_POINT, //!< a point in a circle
29 Aspect_TOM_O_PLUS, //!< a plus in a circle
30 Aspect_TOM_O_STAR, //!< a star in a circle
31 Aspect_TOM_O_X, //!< a cross in a circle
32 Aspect_TOM_RING1, //!< a large ring
33 Aspect_TOM_RING2, //!< a medium ring
34 Aspect_TOM_RING3, //!< a small ring
35 Aspect_TOM_BALL, //!< a ball with 1 color and different saturations
36 Aspect_TOM_USERDEFINED //!< defined by Users (custom image)
42cf5bc1 37};
38
39#endif // _Aspect_TypeOfMarker_HeaderFile