kexi

kexipushbutton.h

00001 /* This file is part of the KDE project
00002    Copyright (C) 2005 Cedric Pasteur <cedric.pasteur@free.fr>
00003    Copyright (C) 2004-2006 Jaroslaw Staniek <js@iidea.pl>
00004 
00005    This program is free software; you can redistribute it and/or
00006    modify it under the terms of the GNU Library General Public
00007    License as published by the Free Software Foundation; either
00008    version 2 of the License, or (at your option) any later version.
00009 
00010    This program is distributed in the hope that it will be useful,
00011    but WITHOUT ANY WARRANTY; without even the implied warranty of
00012    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013    Library General Public License for more details.
00014 
00015    You should have received a copy of the GNU Library General Public License
00016    along with this program; see the file COPYING.  If not, write to
00017    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00018  * Boston, MA 02110-1301, USA.
00019 */
00020 
00021 #ifndef KexiPushButton_H
00022 #define KexiPushButton_H
00023 
00024 #include <kpushbutton.h>
00025 #include "../kexiformeventhandler.h"
00026 
00028 class KEXIFORMUTILS_EXPORT KexiPushButton : public KPushButton
00029 {
00030     Q_OBJECT
00031     Q_PROPERTY(QString onClickAction READ onClickAction WRITE setOnClickAction DESIGNABLE true)
00032     Q_PROPERTY(QString onClickActionOption READ onClickActionOption WRITE setOnClickActionOption DESIGNABLE true)
00033 
00034     public:
00035         KexiPushButton( const QString & text, QWidget * parent, const char * name = 0 );
00036         ~KexiPushButton();
00037 
00038     public slots:
00042         QString onClickAction() const { return m_onClickActionData.string; }
00043         void setOnClickAction(const QString& actionString) { m_onClickActionData.string = actionString; }
00044 
00048         QString onClickActionOption() const { return m_onClickActionData.option; }
00049         void setOnClickActionOption(const QString& option) { m_onClickActionData.option = option; }
00050 
00051     protected:
00052         KexiFormEventAction::ActionData m_onClickActionData;
00053 };
00054 
00055 #endif
KDE Home | KDE Accessibility Home | Description of Access Keys