diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:56:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:56:40 -0600 |
commit | e16866e072f94410321d70daedbcb855ea878cac (patch) | |
tree | ee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /tdeui/karrowbutton.h | |
parent | a58c20c1a7593631a1b50213c805507ebc16adaf (diff) | |
download | tdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip |
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'tdeui/karrowbutton.h')
-rw-r--r-- | tdeui/karrowbutton.h | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/tdeui/karrowbutton.h b/tdeui/karrowbutton.h new file mode 100644 index 000000000..9c0c1f032 --- /dev/null +++ b/tdeui/karrowbutton.h @@ -0,0 +1,94 @@ +/* This file is part of the KDE libraries + Copyright (C) 2001, 2002 Frerich Raabe <raabe@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 version 2 as published by the Free Software Foundation. + + 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 __karrowbutton_h__ +#define __karrowbutton_h__ + +#include <tqpushbutton.h> + +#include <kdelibs_export.h> + +class KArrowButtonPrivate; +/** + * @short Draws a button with an arrow. + * + * Draws a button which shows an arrow pointing into a certain direction. The + * arrow's tqalignment on the button depends on the direction it's pointing to, + * e.g. a left arrow is aligned at the left border, a upwards arrow at the top + * border. This class honors the currently configured KStyle when drawing + * the arrow. + * + * @author Frerich Raabe + */ +class KDEUI_EXPORT KArrowButton : public TQPushButton +{ + Q_OBJECT + Q_PROPERTY( int arrowType READ arrowTp WRITE setArrowTp ) + + public: + /** + * Constructs an arrow button. + * + * @param parent This button's parent + * @param arrow The direction the arrrow should be pointing in + * @param name An internal name for this widget + */ + KArrowButton(TQWidget *parent = 0, Qt::ArrowType arrow = Qt::UpArrow, + const char *name = 0); + + /** + * Destructor. + */ + virtual ~KArrowButton(); + + /** + * Reimplemented from TQPushButton. + */ + virtual TQSize tqsizeHint() const; + + /** + * Returns the arrow type + * @since 3.4 + */ + Qt::ArrowType arrowType() const; + + // hacks for tqmoc braindamages with enums + int arrowTp() const { return (int) arrowType(); } + void setArrowTp( int tp ) { setArrowType( (Qt::ArrowType) tp ); } + public slots: + /** + * Defines in what direction the arrow is pointing to. Will tqrepaint the + * button if necessary. + * + * @param a The direction this arrow should be pointing in + */ + void setArrowType(Qt::ArrowType a); + + protected: + /** + * Reimplemented from TQPushButton. + */ + virtual void drawButton(TQPainter *); + + protected: + virtual void virtual_hook( int id, void* data ); + private: + KArrowButtonPrivate *d; +}; + +#endif // __karrowbutton_h__ |