##// END OF EJS Templates
Updates axis drawing code...
Updates axis drawing code * fixes barcategory axis hadling when zoom/scroll * blocks removing grind line when corespoding label overlap * adds comments for geometry functions * updates charviewer barcategories axis examples * adds PreferedSize handling to layout manager

File last commit:

r2132:45eed4d8b56a
r2133:8c175959daec
Show More
widget.h
33 lines | 486 B | text/x-c | CLexer
#ifndef WIDGET_H
#define WIDGET_H
#include <QtGui/QWidget>
#include <QChartGlobal>
class QVBoxLayout;
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QValueAxis;
QTCOMMERCIALCHART_END_NAMESPACE
QTCOMMERCIALCHART_USE_NAMESPACE
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
public slots:
void handleClick();
private:
QVBoxLayout* createButtons();
QValueAxis *m_axisX;
QValueAxis *m_axisY;
};
#endif // WIDGET_H