You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdewebdev/kommander/widgets/tabwidget.cpp

195 lines
5.6 KiB

/***************************************************************************
tabwidget.cpp - Widget with tabs
-------------------
copyright : (C) 2002 by Marc Britton
email : consume@optusnet.com.au
***************************************************************************/
/***************************************************************************
* *
* 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 option) any later version. *
* *
***************************************************************************/
/* KDE INCLUDES */
#include <klocale.h>
#include <kiconloader.h>
/* QT INCLUDES */
#include <qstring.h>
#include <qwidget.h>
#include <qstringlist.h>
#include <qevent.h>
#include <qtabwidget.h>
#include <qtabbar.h>
/* OTHER INCLUDES */
#include <kommanderwidget.h>
#include "kommanderplugin.h"
#include <specials.h>
#include "tabwidget.h"
enum Functions {
FirstFunction = 357,
TAB_setTabIcon,
TAB_tabLabel,
TAB_isTabEnabled,
TAB_setTabEnabled,
TAB_showTabBar,
TAB_setCurrentPage,
TAB_setTabLabel,
LastFunction
};
TabWidget::TabWidget(QWidget *a_parent, const char *a_name, int a_flags)
: QTabWidget(a_parent, a_name, a_flags), KommanderWidget(this)
{
QStringList states;
states << "default";
setStates(states);
setDisplayStates(states);
KommanderPlugin::setDefaultGroup(Group::DCOP);
KommanderPlugin::registerFunction(TAB_setTabIcon, "setTabIcon(QString widget, int Tab, QString Icon)", i18n("Sets an icon on the specified tab. Index is zero based."), 3);
KommanderPlugin::registerFunction(TAB_tabLabel, "tabLabel(QString widget, int Tab)", i18n("Returns the tab label at the given index. Index is zero based."), 2);
KommanderPlugin::registerFunction(TAB_isTabEnabled, "isTabEnabled(QString widget, int Tab)", i18n("Returns true if tab at specified index is enabled, otherwise returns false."), 2);
KommanderPlugin::registerFunction(TAB_setTabEnabled, "setTabEnabled(QString widget, int Tab, bool Enabled)", i18n("Sets the tab at the given index to enabled or disabled."), 3);
KommanderPlugin::registerFunction(TAB_showTabBar, "showTabBar(QString widget, bool Show)", i18n("Show or hide the tabs on the tab widget."), 2);
KommanderPlugin::registerFunction(TAB_setCurrentPage, "setCurrentPage(QString widget, QString Page)", i18n("Set the current page by name."), 2);
KommanderPlugin::registerFunction(TAB_setTabLabel, "setTabLabel(QString widget, int Tab, QString Text)", i18n("Sets the tab tab label."), 3);
}
TabWidget::~TabWidget()
{
}
QString TabWidget::currentState() const
{
return QString("default");
}
bool TabWidget::isKommanderWidget() const
{
return true;
}
QStringList TabWidget::associatedText() const
{
return KommanderWidget::associatedText();
}
void TabWidget::setAssociatedText(const QStringList& a_at)
{
KommanderWidget::setAssociatedText(a_at);
}
void TabWidget::setPopulationText(const QString& a_text)
{
KommanderWidget::setPopulationText( a_text );
}
QString TabWidget::populationText() const
{
return KommanderWidget::populationText();
}
void TabWidget::populate()
{
}
void TabWidget::showEvent(QShowEvent* e)
{
QTabWidget::showEvent(e);
emit widgetOpened();
}
void TabWidget::contextMenuEvent( QContextMenuEvent * e )
{
e->accept();
QPoint p = e->globalPos();
emit contextMenuRequested(p.x(), p.y());
}
bool TabWidget::isFunctionSupported(int f)
{
return f == DCOP::currentItem || f == DCOP::setCurrentItem || f == DCOP::insertTab || (f >= FirstFunction && f <= LastFunction) ;
}
QString TabWidget::handleDCOP(int function, const QStringList& args)
{
switch (function) {
case DCOP::currentItem:
return QString::number(currentPageIndex());
case DCOP::setCurrentItem:
setCurrentPage(args[0].toUInt());
break;
case DCOP::insertTab:
insertTab(0L, args[0], args[1].toUInt());
break;
case TAB_tabLabel:
{
QString s = this->label(args[0].toInt());
return s.remove("&");
break;
}
case TAB_setTabIcon:
{
QWidget *w = page(args[0].toInt());
setTabIconSet(w, KGlobal::iconLoader()->loadIcon(args[1], KIcon::NoGroup, KIcon::SizeMedium));
break;
}
case TAB_isTabEnabled:
{
QWidget *w = page(args[0].toInt());
return QString::number(this->isTabEnabled(w));
break;
}
case TAB_setTabLabel:
{
QWidget *w = page(args[0].toInt());
setTabLabel(w, args[1]);
break;
}
case TAB_setTabEnabled:
{
QWidget *w = page(args[0].toInt());
this->setTabEnabled(w, args[1].toInt());
break;
}
case TAB_setCurrentPage:
{
int cnt = this->count();
int i = 0;
bool found = false;
while (i < cnt) {
QString s = this->label(i);
if (s.remove("&") == args[0])
{
setCurrentPage(i);
found = true;
break;
}
i++;
}
return QString::number(found);
break;
}
case TAB_showTabBar:
{
QTabBar *t = this->tabBar();
if (args[0].toInt() == 1)
t->show();
else
t->hide();
break;
}
default:
return KommanderWidget::handleDCOP(function, args);
}
return QString();
}
#include "tabwidget.moc"