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.
127 lines
4.1 KiB
127 lines
4.1 KiB
/*****************************************************************
|
|
|
|
Copyright (c) 2001 Matthias Elter <elter@kde.org>
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
******************************************************************/
|
|
|
|
#include <tqlayout.h>
|
|
#include <tqpalette.h>
|
|
|
|
#include <kapplication.h>
|
|
#include <kglobal.h>
|
|
#include <klocale.h>
|
|
#include <kdebug.h>
|
|
|
|
#include "global.h"
|
|
|
|
#include "taskbarcontainer.h"
|
|
|
|
#include "taskbarapplet.h"
|
|
#include "taskbarapplet.moc"
|
|
|
|
extern "C"
|
|
{
|
|
KDE_EXPORT KPanelApplet* init( TQWidget *parent, const TQString& configFile )
|
|
{
|
|
// FIXME: what about two taskbars? perhaps this should be inserted just once
|
|
KGlobal::locale()->insertCatalogue( "ktaskbarapplet" );
|
|
int options = 0;
|
|
if (kapp->authorizeControlModule("kde-kcmtaskbar.desktop"))
|
|
options = KPanelApplet::Preferences;
|
|
TaskbarApplet *taskbar = new TaskbarApplet( configFile, KPanelApplet::Stretch,
|
|
options, parent, "ktaskbarapplet" );
|
|
return taskbar;
|
|
}
|
|
}
|
|
|
|
TaskbarApplet::TaskbarApplet( const TQString& configFile, Type type, int actions,
|
|
TQWidget *parent, const char *name )
|
|
: KPanelApplet( configFile, type, actions, parent, name )
|
|
{
|
|
setBackgroundOrigin( AncestorOrigin );
|
|
TQHBoxLayout* layout = new TQHBoxLayout( this );
|
|
container = new TaskBarContainer( false, this );
|
|
container->setBackgroundOrigin( AncestorOrigin );
|
|
connect(container, TQT_SIGNAL(containerCountChanged()), this, TQT_SIGNAL(updateLayout()));
|
|
layout->addWidget( container, 1 );
|
|
container->popupDirectionChange(popupDirection());
|
|
}
|
|
|
|
TaskbarApplet::~TaskbarApplet()
|
|
{
|
|
// FIXME: what about TWO taskbars?
|
|
KGlobal::locale()->removeCatalogue( "ktaskbarapplet" );
|
|
}
|
|
|
|
int TaskbarApplet::widthForHeight(int h) const
|
|
{
|
|
if (orientation() == Qt::Vertical)
|
|
{
|
|
return width();
|
|
}
|
|
|
|
// FIXME KDE4: when either TaskBarContainer or Applet smartens up
|
|
// simplify this
|
|
KPanelExtension::Position d = orientation() == Qt::Horizontal ?
|
|
KPanelExtension::Top :
|
|
KPanelExtension::Left;
|
|
return container->tqsizeHint(d, TQSize(200, h)).width();
|
|
}
|
|
|
|
int TaskbarApplet::heightForWidth(int w) const
|
|
{
|
|
if (orientation() == Qt::Horizontal)
|
|
{
|
|
return height();
|
|
}
|
|
|
|
// FIXME KDE4: when either TaskBarContainer or Applet smartens up
|
|
// simplify this
|
|
KPanelExtension::Position d = orientation() == Qt::Horizontal ?
|
|
KPanelExtension::Top :
|
|
KPanelExtension::Left;
|
|
return container->tqsizeHint(d, TQSize(w, 200)).height();
|
|
}
|
|
|
|
void TaskbarApplet::preferences()
|
|
{
|
|
container->preferences();
|
|
}
|
|
|
|
void TaskbarApplet::orientationChange( Orientation o )
|
|
{
|
|
container->orientationChange( o );
|
|
}
|
|
|
|
void TaskbarApplet::popupDirectionChange( Direction d )
|
|
{
|
|
container->popupDirectionChange( d );
|
|
}
|
|
|
|
void TaskbarApplet::moveEvent(TQMoveEvent *)
|
|
{
|
|
container->setBackground();
|
|
}
|
|
|
|
void TaskbarApplet::paletteChange(const TQPalette &)
|
|
{
|
|
container->setBackground();
|
|
}
|