]> Shamusworld >> Repos - architektonas/blobdiff - src/base/enums.h
Major refactor of Architektonas: Jettisoning old cruft.
[architektonas] / src / base / enums.h
diff --git a/src/base/enums.h b/src/base/enums.h
deleted file mode 100644 (file)
index dd5678b..0000000
+++ /dev/null
@@ -1,716 +0,0 @@
-#ifndef __ENUMS_H__
-#define __ENUMS_H__
-
-#include <QtGui>
-#include <QPrinter>
-
-#define RS_TEST
-
-#ifdef RS_TEST
-#include <assert.h>
-#endif
-
-// Windoze XP can't handle the original MAX/MINDOUBLE's
-#define RS_MAXDOUBLE 1.0E+10
-#define RS_MINDOUBLE -1.0E+10
-
-/**
- * Class namespace for various enums along with some simple wrapper methods for
- * converting the enums to the Qt counterparts.
- *
- * @author James Hammons
- * @author Andrew Mustun
- */
-//change from RS2 to EN (for ENum)
-class RS2
-{
-public:
-
-    /**
-     * Flags.
-     */
-    enum Flags {
-        /** Flag for Undoables. */
-        FlagUndone      = 1 << 0,
-        /** Entity Visibility. */
-        FlagVisible     = 1 << 1,
-        /** Entity attribute (e.g. color) is defined by layer. */
-        FlagByLayer     = 1 << 2,
-        /** Entity attribute (e.g. color) defined by block. */
-        FlagByBlock     = 1 << 3,
-        /** Layer frozen. */
-        FlagFrozen      = 1 << 4,
-        /** Layer frozen by default. */
-        FlagDefFrozen   = 1 << 5,
-        /** Layer locked. */
-        FlagLocked      = 1 << 6,
-        /** Used for invalid pens. */
-        FlagInvalid     = 1 << 7,
-        /** Entity in current selection. */
-        FlagSelected    = 1 << 8,
-        /** Polyline closed? */
-        FlagClosed      = 1 << 9,
-        /** Flag for temporary entities (e.g. hatch) */
-        FlagTemp        = 1 << 10,
-        /** Flag for processed entities (optcontour) */
-        FlagProcessed   = 1 << 11,
-        /** Startpoint selected */
-        FlagSelected1   = 1 << 12,
-        /** Endpoint selected */
-        FlagSelected2   = 1 << 13,
-               /** Entity is highlighted temporarily (as a user action feedback) */
-               FlagHighlighted = 1 << 14
-    };
-
-    /**
-     * Variable types used by VariableDict and Variable.
-     */
-    enum VariableType {
-        VariableString,
-        VariableInt,
-        VariableDouble,
-        VariableVector,
-        VariableVoid
-    };
-
-    /**
-     * File types. Used by file dialogs. Note: the extension might not
-     * be enough to distinguish file types.
-     */
-    enum FormatType {
-        FormatUnknown,       /**< Unknown / unsupported format. */
-        FormatDXF1,          /**< QCad 1 compatibility DXF format. */
-        FormatDXF,           /**< DXF format. 2000. */
-        FormatDXF12,         /**< DXF format. R12. */
-        FormatCXF,           /**< CAM Expert Font format. */
-               FormatCAM            /**< CAM Expert CAM format (NC, CNC, D, ..) */
-    };
-
-    /**
-     * Entity types returned by the rtti() method
-     */
-    enum EntityType {
-        EntityUnknown,      /**< Unknown */
-        EntityContainer,    /**< Container */
-        EntityBlock,        /**< Block (Group definition) */
-        EntityFontChar,     /**< Font character */
-        EntityInsert,       /**< Insert (Group instance) */
-        EntityDrawing,      /**< Drawing with layers */
-        EntityPoint,        /**< Point */
-        EntityLine,         /**< Line */
-        EntityPolyline,     /**< Polyline */
-        EntityVertex,       /**< Vertex (part of a polyline) */
-        EntityArc,          /**< Arc */
-        EntityCircle,       /**< Circle */
-        EntityEllipse,      /**< Ellipse */
-        EntitySolid,        /**< Ellipse */
-        EntityConstructionLine, /**< Construction line */
-        EntityText,         /**< Text */
-        EntityDimAligned,   /**< Aligned Dimension */
-        EntityDimLinear,    /**< Linear Dimension */
-        EntityDimRadial,    /**< Radial Dimension */
-        EntityDimDiametric, /**< Diametric Dimension */
-        EntityDimAngular,   /**< Angular Dimension */
-        EntityDimLeader,    /**< Leader Dimension */
-        EntityHatch,        /**< Hatch */
-        EntityImage,        /**< Image */
-        EntitySpline        /**< Spline */
-    };
-
-    /**
-     * Action types used by action factories.
-     */
-    enum ActionType {
-        ActionNone,        /**< Invalid action id. */
-
-        ActionDefault,
-
-        ActionFileNew,
-        ActionFileOpen,
-        ActionFileSave,
-        ActionFileSaveAs,
-        ActionFileExport,
-        ActionFileClose,
-        ActionFilePrint,
-        ActionFilePrintPreview,
-        ActionFileQuit,
-
-        ActionPrintPreview,
-
-        ActionEditUndo,
-        ActionEditRedo,
-        ActionEditCut,
-        ActionEditCutNoSelect,
-        ActionEditCopy,
-        ActionEditCopyNoSelect,
-        ActionEditPaste,
-
-        ActionViewStatusBar,
-        ActionViewLayerList,
-        ActionViewBlockList,
-        ActionViewCommandLine,
-        ActionViewOptionToolbar,
-        ActionViewGrid,
-        ActionViewDraft,
-
-        ActionZoomIn,
-        ActionZoomOut,
-        ActionZoomAuto,
-        ActionZoomWindow,
-        ActionZoomPan,
-        ActionZoomRedraw,
-        ActionZoomPrevious,
-
-        ActionSelectSingle,
-        ActionSelectContour,
-        ActionSelectWindow,
-        ActionDeselectWindow,
-        ActionSelectAll,
-        ActionDeselectAll,
-        ActionSelectIntersected,
-        ActionDeselectIntersected,
-        ActionSelectInvert,
-        ActionSelectLayer,
-        ActionSelectDouble,
-
-        ActionDrawArc,
-        ActionDrawArc3P,
-        ActionDrawArcParallel,
-        ActionDrawArcTangential,
-        ActionDrawCircle,
-        ActionDrawCircle2P,
-        ActionDrawCircle3P,
-        ActionDrawCircleCR,
-        ActionDrawCircleParallel,
-        ActionDrawEllipseArcAxis,
-        ActionDrawEllipseAxis,
-        ActionDrawHatch,
-        ActionDrawHatchNoSelect,
-        ActionDrawImage,
-        ActionDrawLine,
-        ActionDrawLineAngle,
-        ActionDrawLineBisector,
-        ActionDrawLineFree,
-        ActionDrawLineHorVert,
-        ActionDrawLineHorizontal,
-        ActionDrawLineOrthogonal,
-        ActionDrawLineParallel,
-        ActionDrawLineParallelThrough,
-        ActionDrawLinePolygon,
-        ActionDrawLinePolygon2,
-        ActionDrawLineRectangle,
-        ActionDrawLineRelAngle,
-        ActionDrawLineTangent1,
-        ActionDrawLineTangent2,
-        ActionDrawLineVertical,
-        ActionDrawPoint,
-        ActionDrawSpline,
-        ActionDrawPolyline,
-        ActionDrawText,
-
-               ActionPolylineAdd,
-               ActionPolylineAppend,
-               ActionPolylineDel,
-               ActionPolylineDelBetween,
-               ActionPolylineTrim,
-
-        ActionDimAligned,
-        ActionDimLinear,
-        ActionDimLinearVer,
-        ActionDimLinearHor,
-        ActionDimRadial,
-        ActionDimDiametric,
-        ActionDimAngular,
-        ActionDimLeader,
-
-        ActionModifyAttributes,
-        ActionModifyAttributesNoSelect,
-        ActionModifyDelete,
-        ActionModifyDeleteNoSelect,
-        ActionModifyDeleteQuick,
-        ActionModifyDeleteFree,
-        ActionModifyMove,
-        ActionModifyMoveNoSelect,
-        ActionModifyRotate,
-        ActionModifyRotateNoSelect,
-        ActionModifyScale,
-        ActionModifyScaleNoSelect,
-        ActionModifyMirror,
-        ActionModifyMirrorNoSelect,
-        ActionModifyMoveRotate,
-        ActionModifyMoveRotateNoSelect,
-        ActionModifyRotate2,
-        ActionModifyRotate2NoSelect,
-        ActionModifyEntity,
-        ActionModifyTrim,
-        ActionModifyTrim2,
-        ActionModifyTrimAmount,
-        ActionModifyCut,
-        ActionModifyStretch,
-        ActionModifyBevel,
-        ActionModifyRound,
-
-        ActionSnapFree,
-        ActionSnapGrid,
-        ActionSnapEndpoint,
-        ActionSnapOnEntity,
-        ActionSnapCenter,
-        ActionSnapMiddle,
-        ActionSnapDist,
-        ActionSnapIntersection,
-        ActionSnapIntersectionManual,
-
-        ActionRestrictNothing,
-        ActionRestrictOrthogonal,
-        ActionRestrictHorizontal,
-        ActionRestrictVertical,
-
-        ActionSetRelativeZero,
-        ActionLockRelativeZero,
-        ActionUnlockRelativeZero,
-
-        ActionInfoInside,
-        ActionInfoDist,
-        ActionInfoDist2,
-        ActionInfoAngle,
-        ActionInfoTotalLength,
-        ActionInfoTotalLengthNoSelect,
-        ActionInfoArea,
-
-        ActionLayersDefreezeAll,
-        ActionLayersFreezeAll,
-        ActionLayersAdd,
-        ActionLayersRemove,
-        ActionLayersEdit,
-        ActionLayersToggleView,
-        ActionLayersToggleLock,
-
-        ActionBlocksDefreezeAll,
-        ActionBlocksFreezeAll,
-        ActionBlocksAdd,
-        ActionBlocksRemove,
-        ActionBlocksAttributes,
-        ActionBlocksEdit,
-        ActionBlocksInsert,
-        ActionBlocksToggleView,
-        ActionBlocksCreate,
-        ActionBlocksCreateNoSelect,
-        ActionBlocksExplode,
-        ActionBlocksExplodeNoSelect,
-
-        ActionModifyExplodeText,
-        ActionModifyExplodeTextNoSelect,
-
-        ActionLibraryInsert,
-
-        ActionOptionsGeneral,
-        ActionOptionsDrawing,
-
-               ActionToolRegenerateDimensions,
-
-               ActionScriptOpenIDE,
-               ActionScriptRun,
-
-#ifndef RS_NO_COMPLEX_ENTITIES
-               ActionPARISDebugCreateContainer,
-#endif
-
-#ifdef RS_CAM
-               ActionCamExportAuto,
-               ActionCamReorder,
-#endif
-
-        /** Needed to loop through all actions */
-        ActionLast
-    };
-
-    /**
-    * Entity ending. Used for returning which end of an entity is ment.
-     */
-    enum Ending {
-        EndingStart,    /**< Start point. */
-        EndingEnd,      /**< End point. */
-        EndingNone      /**< Neither. */
-    };
-
-    /**
-     * Update mode for non-atomic entities that need to be updated when
-     * they change. e.g. texts, inserts, ...
-     */
-    enum UpdateMode {
-        NoUpdate,       /**< No automatic updates. */
-        Update,         /**< Always update automatically when modified. */
-               PreviewUpdate   /**< Update automatically but only for previews (quick update) */
-    };
-
-    /**
-     * Drawing mode.
-     */
-    enum DrawingMode {
-        ModeFull,       /**< Draw everything always detailed (default) */
-        ModeAuto,       /**< Draw details when reasonable */
-        ModePreview,    /**< Draw only in black/white without styles */
-        ModeXOR,        /**< XOR mode for moving previews */
-               ModeBW          /**< Black/white. Can be used for printing. */
-    };
-
-    /**
-     * Undoable rtti.
-     */
-    enum UndoableType {
-        UndoableUnknown,    /**< Unknown undoable */
-        UndoableEntity,     /**< Entity */
-        UndoableLayer       /**< Layer */
-    };
-
-    /**
-     * Toolbar ID's.
-     */
-    enum ToolBarId {
-        ToolBarMain,        /**< Main (menu). */
-        ToolBarPoints,      /**< Points. */
-        ToolBarLines,       /**< Lines. */
-        ToolBarArcs,        /**< Arcs. */
-        ToolBarCircles,     /**< Circles. */
-        ToolBarEllipses,    /**< Ellipses. */
-        ToolBarSplines,     /**< Splines. */
-        ToolBarPolylines,   /**< Polylines. */
-        ToolBarText,        /**< Text. */
-        ToolBarDim,         /**< Dimensions. */
-        ToolBarSnap,        /**< Snap. */
-        ToolBarModify,      /**< Modify. */
-        ToolBarSelect,      /**< Select. */
-        ToolBarInfo         /**< Information */
-    };
-
-    /**
-     * Units.
-     */
-    enum Unit {
-        None = 0,               /**< No unit (unit from parent) */
-        Inch = 1,               /**< Inch */
-        Foot = 2,               /**< Foot: 12 Inches */
-        Mile = 3,               /**< Mile: 1760 Yards = 1609 m */
-        Millimeter = 4,         /**< Millimeter: 0.001m */
-        Centimeter = 5,         /**< Centimeter: 0.01m */
-        Meter = 6,              /**< Meter */
-        Kilometer = 7,          /**< Kilometer: 1000m */
-        Microinch = 8,          /**< Microinch: 0.000001 */
-        Mil = 9,                /**< Mil = 0.001 Inch*/
-        Yard = 10,              /**< Yard: 3 Feet */
-        Angstrom = 11,          /**< Angstrom: 10^-10m  */
-        Nanometer = 12,         /**< Nanometer: 10^-9m  */
-        Micron = 13,            /**< Micron: 10^-6m  */
-        Decimeter = 14,         /**< Decimeter: 0.1m */
-        Decameter = 15,         /**< Decameter: 10m */
-        Hectometer = 16,        /**< Hectometer: 100m */
-        Gigameter = 17,         /**< Gigameter: 1000000m */
-        Astro = 18,             /**< Astro: 149.6 x 10^9m */
-        Lightyear = 19,         /**< Lightyear: 9460731798 x 10^6m */
-        Parsec = 20,            /**< Parsec: 30857 x 10^12 */
-
-        LastUnit = 21           /**< Used to iterate through units */
-    };
-
-
-    /**
-     * Format for length values.
-     */
-    enum LinearFormat {
-        /** Scientific (e.g. 2.5E+05) */
-        Scientific,
-        /** Decimal (e.g. 9.5)*/
-        Decimal,
-        /** Engineering (e.g. 7' 11.5")*/
-        Engineering,
-        /** Architectural (e.g. 7'-9 1/8")*/
-        Architectural,
-        /** Fractional (e.g. 7 9 1/8) */
-        Fractional
-    };
-
-    /**
-     * Angle Units.
-     */
-    enum AngleUnit {
-        Deg,               /**< Degrees */
-        Rad,               /**< Radians */
-        Gra                /**< Gradians */
-    };
-
-    /**
-     * Display formats for angles.
-     */
-    enum AngleFormat {
-        /** Degrees with decimal point (e.g. 24.5°) */
-        DegreesDecimal,
-        /** Degrees, Minutes and Seconds (e.g. 24°30'5") */
-        DegreesMinutesSeconds,
-        /** Gradians with decimal point (e.g. 390.5)*/
-        Gradians,
-        /** Radians with decimal point (e.g. 1.57)*/
-        Radians,
-        /** Surveyor's units */
-        Surveyors
-    };
-
-    /**
-     * Enum of levels of resolving when iterating through an entity tree.
-     */
-    enum ResolveLevel {
-        /** Groups are not resolved */
-        ResolveNone,
-               /**
-                * Resolve all but not Inserts.
-                */
-               ResolveAllButInserts,
-        /**
-         * all Entity Containers are resolved
-         * (including Texts, Polylines, ...)
-         */
-        ResolveAll
-    };
-
-    /**
-     * Direction used for scrolling actions.
-     */
-    enum Direction {
-        Up, Left, Right, Down
-    };
-
-    /**
-     * Vertical alignments.
-     */
-    enum VAlign {
-        VAlignTop,      /**< Top. */
-        VAlignMiddle,   /**< Middle */
-        VAlignBottom    /**< Bottom */
-    };
-
-    /**
-     * Horizontal alignments.
-     */
-    enum HAlign {
-        HAlignLeft,     /**< Left */
-        HAlignCenter,   /**< Centered */
-        HAlignRight     /**< Right */
-    };
-
-    /**
-     * Text drawing direction.
-     */
-    enum TextDrawingDirection {
-        LeftToRight,     /**< Left to right */
-        TopToBottom,     /**< Top to bottom */
-        ByStyle          /**< Inherited from associated text style */
-    };
-
-    /**
-     * Line spacing style for texts.
-     */
-    enum TextLineSpacingStyle {
-        AtLeast,        /**< Taller characters will override */
-        Exact           /**< Taller characters will not override */
-    };
-
-    /**
-     * Leader path type.
-     */
-    enum LeaderPathType {
-        Straight,      /**< Straight line segments */
-        Spline         /**< Splines */
-    };
-
-    /**
-     * Direction for zooming actions.
-     */
-    enum ZoomDirection {
-        In, Out
-    };
-
-    /**
-     * Axis specification for zooming actions.
-     */
-    enum Axis {
-        OnlyX, OnlyY, Both
-    };
-
-    /**
-     * Snapping modes
-     */
-    enum SnapMode {
-        SnapFree,         /**< Free positioning */
-        SnapGrid,         /**< Snap to grid points */
-        SnapEndpoint,     /**< Snap to endpoints */
-        SnapMiddle,       /**< Snap to middle points */
-        SnapCenter,       /**< Snap to centers */
-        SnapOnEntity,     /**< Snap to the next point on an entity */
-        SnapDist,         /**< Snap to points with a distance to an endpoint */
-        SnapIntersection, /**< Snap to intersection */
-        SnapIntersectionManual  /**< Snap to intersection manually */
-    };
-
-    /**
-     * Snap restrictions
-     */
-    enum SnapRestriction {
-        RestrictNothing,        /**< No restriction to snap mode */
-        RestrictOrthogonal,     /**< Restrict to 90,180,270,0 degrees */
-        RestrictHorizontal,     /**< Restrict to 0,180 degrees */
-        RestrictVertical        /**< Restrict to 90,270 degrees */
-    };
-
-    /**
-     * Enum of line styles:
-     */
-    enum LineType {
-        NoPen = 0,            /**< No line at all. */
-        SolidLine = 1,        /**< Normal line. */
-
-        DotLine = 2,          /**< Dotted line. */
-        DotLine2 = 3,         /**< Dotted line small. */
-        DotLineX2 = 4,        /**< Dotted line large. */
-
-        DashLine = 5,         /**< Dashed line. */
-        DashLine2 = 6,        /**< Dashed line small. */
-        DashLineX2 = 7,       /**< Dashed line large. */
-
-        DashDotLine = 8,      /**< Alternate dots and dashes. */
-        DashDotLine2 = 9,     /**< Alternate dots and dashes small. */
-        DashDotLineX2 = 10,   /**< Alternate dots and dashes large. */
-
-        DivideLine = 11,      /**< dash, dot, dot. */
-        DivideLine2 = 12,     /**< dash, dot, dot small. */
-        DivideLineX2 = 13,    /**< dash, dot, dot large. */
-
-        CenterLine = 14,      /**< dash, small dash. */
-        CenterLine2 = 15,     /**< dash, small dash small. */
-        CenterLineX2 = 16,    /**< dash, small dash large. */
-
-        BorderLine = 17,      /**< dash, dash, dot. */
-        BorderLine2 = 18,     /**< dash, dash, dot small. */
-        BorderLineX2 = 19,    /**< dash, dash, dot large. */
-
-        LineByLayer = -1,     /**< Line type defined by layer not entity */
-        LineByBlock = -2      /**< Line type defined by block not entity */
-    };
-
-    /**
-     * \brief Struct that stores a line type pattern (e.g. dash dot dot).
-     */
-    struct LineTypePatternStruct
-    {
-        double * pattern;
-        int num;
-    }
-    LineTypePattern;
-
-    /**
-     * Enum of line widths:
-     */
-    enum LineWidth {
-        Width00 = 0,       /**< Width 1.  (0.00mm) */
-        Width01 = 5,       /**< Width 2.  (0.05mm) */
-        Width02 = 9,       /**< Width 3.  (0.09mm) */
-        Width03 = 13,      /**< Width 4.  (0.13mm) */
-        Width04 = 15,      /**< Width 5.  (0.15mm) */
-        Width05 = 18,      /**< Width 6.  (0.18mm) */
-        Width06 = 20,      /**< Width 7.  (0.20mm) */
-        Width07 = 25,      /**< Width 8.  (0.25mm) */
-        Width08 = 30,      /**< Width 9.  (0.30mm) */
-        Width09 = 35,      /**< Width 10. (0.35mm) */
-        Width10 = 40,      /**< Width 11. (0.40mm) */
-        Width11 = 50,      /**< Width 12. (0.50mm) */
-        Width12 = 53,      /**< Width 13. (0.53mm) */
-        Width13 = 60,      /**< Width 14. (0.60mm) */
-        Width14 = 70,      /**< Width 15. (0.70mm) */
-        Width15 = 80,      /**< Width 16. (0.80mm) */
-        Width16 = 90,      /**< Width 17. (0.90mm) */
-        Width17 = 100,     /**< Width 18. (1.00mm) */
-        Width18 = 106,     /**< Width 19. (1.06mm) */
-        Width19 = 120,     /**< Width 20. (1.20mm) */
-        Width20 = 140,     /**< Width 21. (1.40mm) */
-        Width21 = 158,     /**< Width 22. (1.58mm) */
-        Width22 = 200,     /**< Width 23. (2.00mm) */
-        Width23 = 211,     /**< Width 24. (2.11mm) */
-        WidthByLayer = -1, /**< Line width defined by layer not entity. */
-        WidthByBlock = -2, /**< Line width defined by block not entity. */
-        WidthDefault = -3  /**< Line width defaults to the predefined line width. */
-    };
-
-    /**
-     * Enum of cursor types.
-     */
-    enum CursorType {
-        ArrowCursor,          /**< ArrowCursor - standard arrow cursor. */
-        UpArrowCursor,        /**< UpArrowCursor - upwards arrow. */
-        CrossCursor,          /**< CrossCursor - crosshair. */
-        WaitCursor,           /**< WaitCursor - hourglass/watch. */
-        IbeamCursor,          /**< IbeamCursor - ibeam/text entry. */
-        SizeVerCursor,        /**< SizeVerCursor - vertical resize. */
-        SizeHorCursor,        /**< SizeHorCursor - horizontal resize. */
-        SizeBDiagCursor,      /**< SizeBDiagCursor - diagonal resize (/). */
-        SizeFDiagCursor,      /**< SizeFDiagCursor - diagonal resize (\). */
-        SizeAllCursor,        /**< SizeAllCursor - all directions resize. */
-        BlankCursor,          /**< BlankCursor - blank/invisible cursor. */
-        SplitVCursor,         /**< SplitVCursor - vertical splitting. */
-        SplitHCursor,         /**< SplitHCursor - horziontal splitting. */
-        PointingHandCursor,   /**< PointingHandCursor - a pointing hand. */
-        ForbiddenCursor,      /**< ForbiddenCursor - a slashed circle. */
-        WhatsThisCursor,      /**< WhatsThisCursor - an arrow with a ?. */
-        CadCursor,            /**< CadCursor - a bigger cross. */
-        DelCursor,            /**< DelCursor - cursor for choosing entities */
-        SelectCursor,         /**< SelectCursor - for selecting single entities */
-        MagnifierCursor,      /**< MagnifierCursor - a magnifying glass. */
-        MovingHandCursor      /**< Moving hand - a little flat hand. */
-    };
-
-    /**
-     * Paper formats.
-     */
-    enum PaperFormat {
-        Custom,
-               Letter,
-               Legal,
-               Executive,
-        A0,
-               A1,
-               A2,
-               A3,
-               A4,
-               A5,
-               A6,
-               A7,
-               A8,
-               A9,
-        B0,
-               B1,
-               B2,
-               B3,
-               B4,
-               B5,
-               B6,
-               B7,
-               B8,
-               B9,
-               B10,
-        C5E,
-               Comm10E,
-        DLE,
-               Folio,
-               //Ledger,
-               Tabloid,
-               NPageSize
-       };
-
-               /**
-                * Wrappers for Qt (ICK)
-                */
-               static Qt::PenStyle rsToQtLineType(RS2::LineType t);
-               static RS2::LineType qtToRsPenStyle(Qt::PenStyle s);
-               static RS2::LineWidth intToLineWidth(int w);
-               static Qt::CursorShape rsToQtCursorType(RS2::CursorType t);
-               static QPrinter::PageSize rsToQtPaperFormat(RS2::PaperFormat f);
-};
-
-#endif // __ENUMS_H__