QWT API (中文) 7.0.1
Qt绘图库 - 中文API文档
载入中...
搜索中...
未找到
qwt_axis.h
1/******************************************************************************
2 * Qwt Widget Library
3 * Copyright (C) 1997 Josef Wilgen
4 * Copyright (C) 2002 Uwe Rathmann
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the Qwt License, Version 1.0
8 *
9 * Modified by ChenZongYan in 2024 <czy.t@163.com>
10 * Summary of major modifications (see ChangeLog.md for full history):
11 * 1. CMake build system & C++11 throughout.
12 * 2. Core panner/ zoomer refactored:
13 * - QwtPanner → QwtCachePanner (pixmap-cache version)
14 * - New real-time QwtPlotPanner derived from QwtPicker.
15 * 3. Zoomer supports multi-axis.
16 * 4. Parasite-plot framework:
17 * - QwtFigure, QwtPlotParasiteLayout, QwtPlotTransparentCanvas,
18 * - QwtPlotScaleEventDispatcher, built-in pan/zoom on axis.
19 * 5. New picker: QwtPlotSeriesDataPicker (works with date axis).
20 * 6. Raster & color-map extensions:
21 * - QwtGridRasterData (2-D table + interpolation)
22 * - QwtLinearColorMap::stopColors(), stopPos() API rename.
23 * 7. Bar-chart: expose pen/brush control.
24 * 8. Amalgamated build: single QwtPlot.h / QwtPlot.cpp pair in src-amalgamate.
25 *****************************************************************************/
26
27#ifndef QWT_AXIS_H
28#define QWT_AXIS_H
29
30#include "qwt_global.h"
31
41namespace QwtAxis
42{
53{
55 YLeft = 0,
56
58 YRight = 1,
59
62
64 XTop = 3
65};
66
76enum
77{
78 AxisPositions = XTop + 1
79};
80
81bool isValid(int axisPos);
82bool isYAxis(int axisPos);
83bool isXAxis(int axisPos);
84}
85
86// Return true, when axisPos is in the valid range [ YLeft, XTop ]
87inline bool QwtAxis::isValid(int axisPos)
88{
89 return (axisPos >= 0 && axisPos < AxisPositions);
90}
91
92// Return true, when axisPos is XBottom or XTop
93inline bool QwtAxis::isXAxis(int axisPos)
94{
95 return (axisPos == XBottom) || (axisPos == XTop);
96}
97
98// Return true, when axisPos is YLeft or YRight
99inline bool QwtAxis::isYAxis(int axisPos)
100{
101 return (axisPos == YLeft) || (axisPos == YRight);
102}
103
104#endif
坐标轴的枚举和方法
Definition qwt_axis.h:42
Position
坐标轴位置
Definition qwt_axis.h:53
@ YRight
Y axis right of the canvas
Definition qwt_axis.h:58
@ XTop
X axis above the canvas
Definition qwt_axis.h:64
@ XBottom
X axis below the canvas
Definition qwt_axis.h:61
@ YLeft
Y axis left of the canvas
Definition qwt_axis.h:55