aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_vbox.cpp
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2011-01-01 20:19:56 +0000
committerGravatar Szymon Tomasz Stefanek2011-01-01 20:19:56 +0000
commitc601b5a27f74b16158adafe429faefbe573e64a2 (patch)
treea3cde3206a45628f8ac86e8dfbdab70b20c3a831 /src/modules/objects/class_vbox.cpp
parentprobable compilation fix for rijndaled/crypto++ (diff)
downloadKVIrc-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_vbox.cpp')
-rw-r--r--src/modules/objects/class_vbox.cpp209
1 files changed, 0 insertions, 209 deletions
diff --git a/src/modules/objects/class_vbox.cpp b/src/modules/objects/class_vbox.cpp
deleted file mode 100644
index b2f6251a7..000000000
--- a/src/modules/objects/class_vbox.cpp
+++ /dev/null
@@ -1,209 +0,0 @@
-//=============================================================================
-//
-// File : class_vbox.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.
-//
-//=============================================================================
-
-#define _KVI_DEBUG_CHECK_RANGE_
-#include "kvi_debug.h"
-#include "KviLocale.h"
-
-#include "class_vbox.h"
-
-#include "KviTalVBox.h"
-
-
-// Tables used in $setAlignment & $alignment
-const char * const align_tbl[] = {
- "Left",
- "Right",
- "HCenter",
- "VCenter",
- "Center",
- "Top",
- "Bottom",
- "WordBreak"
- };
-
-
-
-const int align_cod[] = {
- Qt::AlignLeft,
- Qt::AlignRight,
- Qt::AlignHCenter,
- Qt::AlignVCenter,
- Qt::AlignCenter,
- Qt::AlignTop,
- Qt::AlignBottom,
- Qt::AlignJustify,
- };
-
-#define align_num (sizeof(align_tbl) / sizeof(align_tbl[0]))
-/*
- @doc: vbox
- @keyterms:
- vbox object class, child widgets
- @title:
- vbox class
- @type:
- class
- @short:
- Manages child widget vertical geometry
- @inherits:
- [class]object[/class]
- @description:
- The vbox class widget provides vertical geometry management for its child widgets.
- @functions:
- !fn: $setSpacing(<spacing:int>)
- Sets the default spacing of the widgets in pixels
- !fn: $setMargin(<margin:int>)
- Sets the dimension of the layout margin : the distance from the border to the outermost child widget edges.
- !fn: $setStretchFactor(<widget:hobject>,<stretch:uint>)
- Sets the stretch factor of widget to stretch.
- !fn: $addStretch(<stretch:integer>)
- Adds a stretchable space with zero minimum size and stretch factor stretch to the end of this box layout.
- !fn: $setAlignment(<flag1:string>, <flag2:string>, ...)
- Sets the alignment for widget w to flags, given as parameters.
- Valid flags are:Right,Left,Top,Bottom,HCenter,VCenter,Center
-*/
-
-
-KVSO_BEGIN_REGISTERCLASS(KviKvsObject_vbox,"vbox","widget")
- KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_vbox,setMargin)
- KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_vbox,setSpacing)
- KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_vbox,setStretchFactor)
- KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_vbox,addStretch)
- KVSO_REGISTER_HANDLER_BY_NAME(KviKvsObject_vbox,setAlignment)
-KVSO_END_REGISTERCLASS(KviKvsObject_vbox)
-
-KVSO_BEGIN_CONSTRUCTOR(KviKvsObject_vbox,KviKvsObject_widget)
-
-KVSO_END_CONSTRUCTOR(KviKvsObject_vbox)
-
-
-KVSO_BEGIN_DESTRUCTOR(KviKvsObject_vbox)
-
-KVSO_END_CONSTRUCTOR(KviKvsObject_vbox)
-
-bool KviKvsObject_vbox::init(KviKvsRunTimeContext * pContext,KviKvsVariantList *pParams)
-{
- Q_UNUSED(pContext);
- Q_UNUSED(pParams);
-
- SET_OBJECT(KviTalVBox);
- return true;
-}
-
-KVSO_CLASS_FUNCTION(vbox,setMargin)
-{
- CHECK_INTERNAL_POINTER(widget())
- kvs_int_t iMargin;
- KVSO_PARAMETERS_BEGIN(c)
- KVSO_PARAMETER("margin",KVS_PT_INT,0,iMargin)
- KVSO_PARAMETERS_END(c)
- ((KviTalVBox *)widget())->setMargin(iMargin);
- return true;
-}
-
-KVSO_CLASS_FUNCTION(vbox,setSpacing)
-{
- CHECK_INTERNAL_POINTER(widget())
- kvs_int_t iSpacing;
- KVSO_PARAMETERS_BEGIN(c)
- KVSO_PARAMETER("spacing",KVS_PT_INT,0,iSpacing)
- KVSO_PARAMETERS_END(c)
- ((KviTalVBox *)widget())->setSpacing(iSpacing);
- return true;
-}
-
-KVSO_CLASS_FUNCTION(vbox,setStretchFactor)
-{
- CHECK_INTERNAL_POINTER(widget())
- KviKvsObject * pObject;
- kvs_hobject_t hObject;
- kvs_uint_t uStretch;
- KVSO_PARAMETERS_BEGIN(c)
- KVSO_PARAMETER("widget",KVS_PT_HOBJECT,0,hObject)
- KVSO_PARAMETER("stretch",KVS_PT_UNSIGNEDINTEGER,0,uStretch)
- KVSO_PARAMETERS_END(c)
- pObject=KviKvsKernel::instance()->objectController()->lookupObject(hObject);
- return true;
- CHECK_HOBJECT_IS_WIDGET(pObject)
- if(((KviKvsObject_widget *)pObject)->widget()->parentWidget() != widget())
- {
- c->warning(__tr2qs_ctx("The widget must be a child of this vbox","objects"));
- return true;
- }
- ((KviTalVBox *)widget())->setStretchFactor(((QWidget *)(pObject->object())),uStretch);
- return true;
-}
-KVSO_CLASS_FUNCTION(vbox,addStretch)
-{
- CHECK_INTERNAL_POINTER(widget())
- kvs_int_t iStretch;
- KVSO_PARAMETERS_BEGIN(c)
- KVSO_PARAMETER("stretch",KVS_PT_INT,0,iStretch)
- KVSO_PARAMETERS_END(c)
- ((KviTalVBox *)widget())->addStretch(iStretch);
- return true;
-}
-KVSO_CLASS_FUNCTION(vbox,setAlignment)
-{
- CHECK_INTERNAL_POINTER(widget())
- QStringList alignment;
- KviKvsObject * pObject;
- kvs_hobject_t hObject;
- KVSO_PARAMETERS_BEGIN(c)
- KVSO_PARAMETER("widget",KVS_PT_HOBJECT,0,hObject)
- KVSO_PARAMETER("alignment",KVS_PT_STRINGLIST,KVS_PF_OPTIONAL,alignment)
- KVSO_PARAMETERS_END(c)
- pObject=KviKvsKernel::instance()->objectController()->lookupObject(hObject);
- CHECK_HOBJECT_IS_WIDGET(pObject)
- if(((KviKvsObject_widget *)pObject)->widget()->parentWidget() != widget())
- {
- c->warning(__tr2qs_ctx("The widget must be a child of this hbox","objects"));
- return true;
- }
-
- int align,sum=0;
- for ( QStringList::Iterator it = alignment.begin(); it != alignment.end(); ++it )
- {
-
- align = 0;
- for(unsigned int j = 0; j < align_num; j++)
- {
- if(KviQString::equalCI((*it), align_tbl[j]))
- {
- align=align_cod[j];
- break;
- }
- }
- if(align)
- sum = sum | align;
- else
- c->warning(__tr2qs_ctx("Unknown alignment: '%Q'","objects"),&(*it));
-
- }
- if (widget()) ((KviTalHBox *)widget())->setAlignment(((QWidget *)(pObject->object())),(Qt::Alignment)sum);
- return true;
-}
-