diff options
| author | 2011-01-01 20:19:56 +0000 | |
|---|---|---|
| committer | 2011-01-01 20:19:56 +0000 | |
| commit | c601b5a27f74b16158adafe429faefbe573e64a2 (patch) | |
| tree | a3cde3206a45628f8ac86e8dfbdab70b20c3a831 /src/modules/objects/class_toolbutton.cpp | |
| parent | probable compilation fix for rijndaled/crypto++ (diff) | |
| download | KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.tar.gz KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.tar.bz2 KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.zip | |
The big rename for modules. Still some details remaining.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5284 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_toolbutton.cpp')
| -rw-r--r-- | src/modules/objects/class_toolbutton.cpp | 344 |
1 files changed, 0 insertions, 344 deletions
diff --git a/src/modules/objects/class_toolbutton.cpp b/src/modules/objects/class_toolbutton.cpp deleted file mode 100644 index 516944445..000000000 --- a/src/modules/objects/class_toolbutton.cpp +++ /dev/null @@ -1,344 +0,0 @@ -//============================================================================= -// -// File : class_toolbutton.cpp -// Creation date : Fri Mar 18 14:30:48 CEST 2005 -// by Tonino Imbesi(Grifisx) and Alessandro Carbone(Noldor) -// -// This file is part of the KVIrc irc client distribution -// Copyright (C) 2005-2008 Alessandro Carbone (elfonol at gmail dot com) -// -// This program is FREE software. You can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your opinion) any later version. -// -// This program 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 General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, write to the Free Software Foundation, -// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -// -//============================================================================= - -#include "class_toolbutton.h" -#include "KviError.h" -#include "kvi_debug.h" - -#include "KviLocale.h" -#include "KviIconManager.h" -#include "KviTalPopupMenu.h" -/* - @doc: toolbutton - @keyterms: - toolbutton object class, - @title: - toolbutton class - @type: - class - @short: - Provides a toolbutton for toolbar widget. - @inherits: - [class]object[/class] - [class]widget[/class] - @description: - The toolbutton class provides a quick-access button to commands or options, usually used inside a ToolBar. - @functions: - !fn:$setImage(<icon_id:string>) - Sets the image for this button. - !fn:$setUsesBigPixmap(<bEnabled:boolean>) - Sets whether this toolbutton uses big pixmaps to enable. - !fn:$usesBigPixmap(<bEnabled:boolean>) - This property holds whether this toolbutton uses big pixmaps. - !fn:setUsesTextLabel(<bEnabled:boolean>) - Sets whether the toolbutton show a texlabel below the pixmap of the button. - !fn:$usesTextLabel() - Return 1 if the setUsesTextLabel is enabled, otherwise return 0. - !fn:$setTextLabel(<text:String>,[tooltip:string]) - Sets the label of this button to <text> and automatically sets it as a tool tip if <tip> is TRUE. - !fn:<string> $textLabel() - Returns the label of tthe button. - !fn:$setAutoRaise(<bAutoraise:boolean>) - Sets whether auto-raising is enabled. - !fn:<boolean> $autoRaise() - Returns 1 if autoRaise is enabled, otherwise returns 0. - !fn:$setToggleButton(<bToggle:boolean>) - Sets whether the tool button is a toggle button 1 enable, 0 disable. - !fn:<boolean> $toggle() - Toggles the state of the tool button. - !fn:$setOn(<bEnabled:boolean>) - Sets whether the tool button is on to the bool value: 1 enable, 0 disable. - !fn:$setPopup (<popupmenu:object>) - Associates the given <popupmenu> with this tool button. - !fn:$openPopup() - Opens the associated popup menu. If there is no such menu, this function does nothing. - !fn:setTextPosition(<text_position:string>) - Sets the position of the tool button's textLabel in relation to the tool button's icon.[br] - Valid texpos values are:[br] - - BesideIcon : The text appears beside the icon.[br] - - BelowIcon : The text appears below the icon. - !fn:<string> $textPosition() - Returns the position of the text label of this button. - !fn: $clickEvent() - This function is called when the toolbutton is clicked.[br] - You can reimplement it to handle the user click events.[br] - The default implementation emits the [classfnc]$clicked[/classfnc]() signal. - @signals: - !sg: $clicked() - This signal is emitted by the default implementation of [classfnc]$clickEvent[/classfnc]().[br] -*/ - - -KVSO_BEGIN_REGISTERCLASS(KviKvsObject_toolbutton,"toolbutton","widget") - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,setImage) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,setUsesBigPixmap) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,usesBigPixmap) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,setUsesTextLabel) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,usesTextLabel) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,setAutoRaise) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,autoRaise) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,setTextLabel) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,textLabel) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,setPopup) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,openPopup) - - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,setToggleButton) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,toggle) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,setOn) - - - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,setTextPosition) - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,textPosition) - - KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_toolbutton,clickEvent) -KVSO_END_REGISTERCLASS(KviKvsObject_toolbutton) - -KVSO_BEGIN_CONSTRUCTOR(KviKvsObject_toolbutton,KviKvsObject_widget) - -KVSO_END_CONSTRUCTOR(KviKvsObject_toolbutton) - - -KVSO_BEGIN_DESTRUCTOR(KviKvsObject_toolbutton) - -KVSO_END_CONSTRUCTOR(KviKvsObject_toolbutton) - -bool KviKvsObject_toolbutton::init(KviKvsRunTimeContext *,KviKvsVariantList *) -{ - SET_OBJECT(QToolButton); - connect(widget(),SIGNAL(clicked()),this,SLOT(slotClicked())); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,setImage) -{ - CHECK_INTERNAL_POINTER(widget()) - QString icon; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("icon_id",KVS_PT_STRING,0,icon) - KVSO_PARAMETERS_END(c) - QPixmap * pix = g_pIconManager->getImage(icon); - if(pix){ - ((QToolButton *)widget())->setIcon(QIcon(*pix)); - } - else - ((QToolButton *)widget())->setIcon(QIcon()); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,setUsesBigPixmap) -{ - CHECK_INTERNAL_POINTER(widget()) - bool bEnabled; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("bEnabled",KVS_PT_BOOL,0,bEnabled) - KVSO_PARAMETERS_END(c) - ((QToolButton *)widget())->setIconSize(bEnabled ? QSize(32,32) : QSize(22,22)); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,usesBigPixmap) -{ - CHECK_INTERNAL_POINTER(widget()) - c->returnValue()->setBoolean(((QToolButton *)widget())->iconSize().height() > 22); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,setUsesTextLabel) -{ - CHECK_INTERNAL_POINTER(widget()) - bool bEnabled; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("bEnabled",KVS_PT_BOOL,0,bEnabled) - KVSO_PARAMETERS_END(c) - ((QToolButton *)widget())->setToolButtonStyle(bEnabled?Qt::ToolButtonTextUnderIcon : Qt::ToolButtonIconOnly); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,usesTextLabel) -{ - CHECK_INTERNAL_POINTER(widget()) - c->returnValue()->setBoolean(((QToolButton *)widget())->toolButtonStyle() != Qt::ToolButtonIconOnly); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,setAutoRaise) -{ - CHECK_INTERNAL_POINTER(widget()) - bool bEnabled; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("bEnabled",KVS_PT_BOOL,0,bEnabled) - KVSO_PARAMETERS_END(c) - ((QToolButton *)widget())->setAutoRaise(bEnabled); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,autoRaise) -{ - CHECK_INTERNAL_POINTER(widget()) - c->returnValue()->setBoolean(((QToolButton *)widget())->autoRaise()); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,setOn) -{ - CHECK_INTERNAL_POINTER(widget()) - bool bEnabled; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("bEnabled",KVS_PT_BOOL,0,bEnabled) - KVSO_PARAMETERS_END(c) - ((QToolButton *)widget())->setChecked(bEnabled); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,setToggleButton) -{ - CHECK_INTERNAL_POINTER(widget()) - bool bEnabled; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("bEnabled",KVS_PT_BOOL,0,bEnabled) - KVSO_PARAMETERS_END(c) - ((QToolButton *)widget())->setCheckable(bEnabled); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,toggle) -{ - CHECK_INTERNAL_POINTER(widget()) - ((QToolButton *)widget())->toggle(); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,setTextLabel) -{ - CHECK_INTERNAL_POINTER(widget()) - QString szLabel,szTip; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("label",KVS_PT_STRING,0,szLabel) - KVSO_PARAMETER("tooltip",KVS_PT_STRING,KVS_PF_OPTIONAL,szTip) - KVSO_PARAMETERS_END(c) - ((QToolButton *)widget())->setText(szLabel); - if (!szTip.isEmpty()) ((QToolButton *)widget())->setToolTip(szTip); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,textLabel) -{ - CHECK_INTERNAL_POINTER(widget()) - c->returnValue()->setString(((QToolButton *)widget())->text()); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,setPopup) -{ - CHECK_INTERNAL_POINTER(widget()) - KviKvsObject *ob; - kvs_hobject_t hObject; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("widget",KVS_PT_HOBJECT,0,hObject) - KVSO_PARAMETERS_END(c) - ob=KviKvsKernel::instance()->objectController()->lookupObject(hObject); - if (!ob) - { - c->warning(__tr2qs_ctx("Widget parameter is not an object","objects")); - return true; - } - if (!ob->object()) - { - c->warning(__tr2qs_ctx("Widget parameter is not a valid object","objects")); - return true; - } - if(!ob->inheritsClass("popupmenu")) - { - c->warning(__tr2qs_ctx("Can't add a non-popupmenu object","objects")); - return true; - } - ((QToolButton *)widget())->setMenu(((KviTalPopupMenu *)(ob->object()))); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,openPopup) -{ - CHECK_INTERNAL_POINTER(widget()) - ((QToolButton *)widget())->showMenu(); - return true; -} -/* -KVSO_CLASS_FUNCTION(toolbutton,setPopupDelay) -{ - kvs_int_t uDelay; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("delay",KVS_PT_UNSIGNEDINTEGER,0,uDelay) - KVSO_PARAMETERS_END(c) - if (widget()) - ((QToolButton *)widget())->setPopupDelay(uDelay); - return true; -} -KVSO_CLASS_FUNCTION(toolbutton,popupDelay) -{ - if (widget()) - c->returnValue()->setInteger(((QToolButton *)widget())->popupDelay()); - return true; -} -*/ -KVSO_CLASS_FUNCTION(toolbutton,setTextPosition) -{ - CHECK_INTERNAL_POINTER(widget()) - QString szPos; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("position",KVS_PT_STRING,0,szPos) - KVSO_PARAMETERS_END(c) - if(KviQString::equalCI(szPos,"BesideIcon")) - ((QToolButton *)widget())->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); - else if(KviQString::equalCI(szPos,"BelowIcon")) - ((QToolButton *)widget())->setToolButtonStyle(Qt::ToolButtonTextUnderIcon); - else c->warning(__tr2qs_ctx("Unknown text position '%Q'","objects"),&szPos); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,textPosition) -{ - CHECK_INTERNAL_POINTER(widget()) - QString szPos="BelowIcon"; - if ((((QToolButton *)widget())->toolButtonStyle())==(Qt::ToolButtonTextBesideIcon)) - szPos="BesideIcon"; - c->returnValue()->setString(szPos); - return true; -} - -KVSO_CLASS_FUNCTION(toolbutton,clickEvent) -{ - emitSignal("clicked",c); - return true; -} - -void KviKvsObject_toolbutton::slotClicked() -{ - KviKvsVariantList *params=0; - callFunction(this,"clickEvent",params); -} - -#ifndef COMPILE_USE_STANDALONE_MOC_SOURCES -#include "m_class_toolbutton.moc" -#endif //COMPILE_USE_STANDALONE_MOC_SOURCES |
