KDEUI
kplotaxis.h
Go to the documentation of this file.
00001 /* -*- C++ -*- 00002 This file is part of the KDE libraries 00003 Copyright (C) 2005 Andreas Nicolai <Andreas.Nicolai@gmx.net> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License as published by the Free Software Foundation; either 00008 version 2 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Library General Public License for more details. 00014 00015 You should have received a copy of the GNU Library General Public License 00016 along with this library; see the file COPYING.LIB. If not, write to 00017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00018 Boston, MA 02110-1301, USA. 00019 */ 00020 00021 #ifndef KPLOTAXIS_H 00022 #define KPLOTAXIS_H 00023 00024 #include <kdeui_export.h> 00025 00026 #include <QtCore/QString> 00027 #include <QtCore/QList> 00028 00037 class KDEUI_EXPORT KPlotAxis { 00038 public: 00039 00043 explicit KPlotAxis( const QString& label = QString() ); 00044 00048 ~KPlotAxis(); 00049 00053 bool isVisible() const; 00054 00059 void setVisible( bool visible ); 00060 00064 bool areTickLabelsShown() const; 00065 00070 void setTickLabelsShown( bool b ); 00071 00077 void setLabel( const QString& label ); 00078 00082 QString label() const; 00083 00090 QString tickLabel( double value ) const; 00091 00111 void setTickLabelFormat( char format = 'g', int fieldWidth = 0, int precision = -1 ); 00112 00116 int tickLabelWidth() const; 00117 00121 char tickLabelFormat() const; 00122 00126 int tickLabelPrecision() const; 00127 00137 void setTickMarks( double x0, double length ); 00138 00145 QList< double > majorTickMarks() const; 00146 00153 QList< double > minorTickMarks() const; 00154 00155 private: 00156 class Private; 00157 Private * const d; 00158 00159 Q_DISABLE_COPY( KPlotAxis ) 00160 }; 00161 00162 #endif // KPLOTAXIS_H
KDE 4.6 API Reference