Qwt Polar User's Guide  0.1.0
qwt_polar.h
1 /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
2  * QwtPolar Widget Library
3  * Copyright (C) 2008 Uwe Rathmann
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the Qwt License, Version 1.0
7  *****************************************************************************/
8 
9 #ifndef QWT_POLAR_H
10 #define QWT_POLAR_H 1
11 
12 #include "qwt_polar_global.h"
13 
14 namespace QwtPolar
15 {
22  enum Coordinate
23  {
24  Azimuth,
25  Radius
26  };
27 
40  enum Axis
41  {
42  AxisAzimuth,
43 
44  AxisLeft,
45  AxisRight,
46  AxisTop,
47  AxisBottom,
48 
49  AxesCount
50  };
51 
60  enum Scale
61  {
62  ScaleAzimuth = Azimuth,
63  ScaleRadius = Radius,
64 
65  ScaleCount
66  };
67 
68 };
69 
70 #endif