Qwt Polar User's Guide
0.1.0
|
00001 /* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** 00002 * QwtPolar Widget Library 00003 * Copyright (C) 2008 Uwe Rathmann 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the Qwt License, Version 1.0 00007 *****************************************************************************/ 00008 00009 #ifndef QWT_POLAR_H 00010 #define QWT_POLAR_H 1 00011 00012 #include "qwt_polar_global.h" 00013 00014 namespace QwtPolar 00015 { 00022 enum Coordinate 00023 { 00024 Azimuth, 00025 Radius 00026 }; 00027 00040 enum Axis 00041 { 00042 AxisAzimuth, 00043 00044 AxisLeft, 00045 AxisRight, 00046 AxisTop, 00047 AxisBottom, 00048 00049 AxesCount 00050 }; 00051 00060 enum Scale 00061 { 00062 ScaleAzimuth = Azimuth, 00063 ScaleRadius = Radius, 00064 00065 ScaleCount 00066 }; 00067 00068 }; 00069 00070 #endif