mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/*
|
|
Copyright 2007 Roberto Raggi <roberto@kdevelop.org>
|
|
Copyright 2007 Hamish Rodda <rodda@kde.org>
|
|
Copyright 2011 Alexander Dymo <adymo@kdevelop.org>
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software and its
|
|
documentation for any purpose is hereby granted without fee, provided that
|
|
the above copyright notice appear in all copies and that both that
|
|
copyright notice and this permission notice appear in supporting
|
|
documentation.
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
KDEVELOP TEAM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#ifndef IDEALTOOLBUTTON_H
|
|
#define IDEALTOOLBUTTON_H
|
|
|
|
#include <QToolButton>
|
|
|
|
class IdealToolButton: public QToolButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
IdealToolButton(Qt::DockWidgetArea area, QWidget *parent = 0);
|
|
|
|
Qt::Orientation orientation() const;
|
|
|
|
virtual QSize sizeHint() const;
|
|
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent *event);
|
|
|
|
private:
|
|
Qt::DockWidgetArea _area;
|
|
};
|
|
|
|
#endif // IDEALTOOLBUTTON_H
|