/usr/include/qgis/qgsslider.h is in libqgis-dev 2.4.0-1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #include <QPainter>
#include <QPaintEvent>
#include <QSize>
#include <QSlider>
class GUI_EXPORT QgsSlider : public QSlider
{
Q_OBJECT
public:
QgsSlider( QWidget *parent = 0 );
QgsSlider( Qt::Orientation orientation, QWidget * parent = 0 );
protected:
virtual void paintEvent( QPaintEvent * event );
};
|