mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
149 lines
3.9 KiB
C++
149 lines
3.9 KiB
C++
/* This file is part of the KDE libraries
|
|
Copyright (C) 1997 Martin Jones (mjones@kde.org)
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef KXYSELECTOR_H
|
|
#define KXYSELECTOR_H
|
|
|
|
#include <kdeui_export.h>
|
|
|
|
#include <QtGui/QWidget>
|
|
#include <QtGui/QPixmap>
|
|
|
|
/**
|
|
* KXYSelector is the base class for other widgets which
|
|
* provides the ability to choose from a two-dimensional
|
|
* range of values. The currently chosen value is indicated
|
|
* by a cross. An example is the KHSSelector which
|
|
* allows to choose from a range of colors, and which is
|
|
* used in KColorDialog.
|
|
*
|
|
* A custom drawing routine for the widget surface has
|
|
* to be provided by the subclass.
|
|
*/
|
|
class KDEUI_EXPORT KXYSelector : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY( int xValue READ xValue WRITE setXValue )
|
|
Q_PROPERTY( int yValue READ yValue WRITE setYValue )
|
|
|
|
public:
|
|
/**
|
|
* Constructs a two-dimensional selector widget which
|
|
* has a value range of [0..100] in both directions.
|
|
*/
|
|
explicit KXYSelector( QWidget *parent=0 );
|
|
/**
|
|
* Destructs the widget.
|
|
*/
|
|
~KXYSelector();
|
|
|
|
/**
|
|
* Sets the current values in horizontal and
|
|
* vertical direction.
|
|
* @param xPos the horizontal value
|
|
* @param yPos the vertical value
|
|
*/
|
|
void setValues( int xPos, int yPos );
|
|
|
|
/**
|
|
* Sets the current horizontal value
|
|
* @param xPos the horizontal value
|
|
*/
|
|
void setXValue( int xPos );
|
|
|
|
/**
|
|
* Sets the current vertical value
|
|
* @param yPos the vertical value
|
|
*/
|
|
void setYValue( int yPos );
|
|
|
|
/**
|
|
* Sets the range of possible values.
|
|
*/
|
|
void setRange( int minX, int minY, int maxX, int maxY );
|
|
|
|
/**
|
|
* Sets the color used to draw the marker
|
|
* @param col the color
|
|
*/
|
|
void setMarkerColor( const QColor &col );
|
|
|
|
/**
|
|
* @return the current value in horizontal direction.
|
|
*/
|
|
int xValue() const;
|
|
/**
|
|
* @return the current value in vertical direction.
|
|
*/
|
|
int yValue() const;
|
|
|
|
/**
|
|
* @return the rectangle on which subclasses should draw.
|
|
*/
|
|
QRect contentsRect() const;
|
|
|
|
/**
|
|
* Reimplemented to give the widget a minimum size
|
|
*/
|
|
virtual QSize minimumSizeHint() const;
|
|
|
|
Q_SIGNALS:
|
|
/**
|
|
* This signal is emitted whenever the user chooses a value,
|
|
* e.g. by clicking with the mouse on the widget.
|
|
*/
|
|
void valueChanged( int x, int y );
|
|
|
|
protected:
|
|
/**
|
|
* Override this function to draw the contents of the widget.
|
|
* The default implementation does nothing.
|
|
*
|
|
* Draw within contentsRect() only.
|
|
*/
|
|
virtual void drawContents( QPainter * );
|
|
|
|
/**
|
|
* Override this function to draw the marker which
|
|
* indicates the currently selected value pair.
|
|
*/
|
|
virtual void drawMarker( QPainter *p, int xp, int yp );
|
|
|
|
virtual void paintEvent( QPaintEvent *e );
|
|
virtual void mousePressEvent( QMouseEvent *e );
|
|
virtual void mouseMoveEvent( QMouseEvent *e );
|
|
virtual void wheelEvent( QWheelEvent * );
|
|
|
|
/**
|
|
* Converts a pixel position to its corresponding values.
|
|
*/
|
|
void valuesFromPosition( int x, int y, int& xVal, int& yVal ) const;
|
|
|
|
private:
|
|
void setPosition( int xp, int yp );
|
|
|
|
private:
|
|
class Private;
|
|
friend class Private;
|
|
Private * const d;
|
|
|
|
Q_DISABLE_COPY(KXYSelector)
|
|
};
|
|
|
|
#endif /* KXYSELECTOR_H */
|