76f17e6de1
* Models and Delegates for Clients and Desktops * Horizontal, vertical and tabular layout * Layout of one item can be configured by an XML definition * A desktop item can include a client list * An optional second list view showing only the selected item * A new KCM "kwintabbox" * An alternative TabBox with independent settings and keybindings * Optional Highlight Windows effect integration * List scrolls instead of removing items * Scroll wheel support * Cursor key support * Middle click on item closes window BUG: 195745 BUG: 197187 BUG: 201103 FEATURE: 118184 FEATURE: 156723 FEATURE: 177441 FEATURE: 182897 FEATURE: 193882 GUI: svn path=/trunk/KDE/kdebase/workspace/; revision=1022861
95 lines
2.2 KiB
C++
95 lines
2.2 KiB
C++
/********************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 2009 Martin Gräßlin <kde@martin-graesslin.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 option) 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, see <http://www.gnu.org/licenses/>.
|
|
*********************************************************************/
|
|
|
|
#include "itemlayoutconfig.h"
|
|
|
|
namespace KWin
|
|
{
|
|
namespace TabBox
|
|
{
|
|
|
|
ItemLayoutConfigRowElement::ItemLayoutConfigRowElement()
|
|
{
|
|
// initialize attributes with reasonable default values
|
|
m_type = ElementEmpty;
|
|
m_iconSize = QSize( 16, 16 );
|
|
m_alignment = Qt::AlignCenter;
|
|
m_stretch = false;
|
|
m_smallTextSize = false;
|
|
m_bold = false;
|
|
m_italic = false;
|
|
m_italicMinimized = true;
|
|
m_rowSpan = false;
|
|
m_width = 0.0;
|
|
}
|
|
|
|
ItemLayoutConfigRowElement::~ItemLayoutConfigRowElement()
|
|
{
|
|
}
|
|
|
|
ItemLayoutConfigRow::ItemLayoutConfigRow()
|
|
{
|
|
}
|
|
|
|
ItemLayoutConfigRow::~ItemLayoutConfigRow()
|
|
{
|
|
}
|
|
|
|
void ItemLayoutConfigRow::addElement( ItemLayoutConfigRowElement element )
|
|
{
|
|
m_elements.append( element );
|
|
}
|
|
|
|
ItemLayoutConfigRowElement ItemLayoutConfigRow::element( int index ) const
|
|
{
|
|
return m_elements[ index ];
|
|
}
|
|
|
|
int ItemLayoutConfigRow::count() const
|
|
{
|
|
return m_elements.count();
|
|
}
|
|
|
|
ItemLayoutConfig::ItemLayoutConfig()
|
|
{
|
|
}
|
|
|
|
ItemLayoutConfig::~ItemLayoutConfig()
|
|
{
|
|
}
|
|
|
|
void ItemLayoutConfig::addRow( ItemLayoutConfigRow row )
|
|
{
|
|
m_rows.append( row );
|
|
}
|
|
|
|
int ItemLayoutConfig::count() const
|
|
{
|
|
return m_rows.count();
|
|
}
|
|
|
|
ItemLayoutConfigRow ItemLayoutConfig::row( int index ) const
|
|
{
|
|
return m_rows[ index ];
|
|
}
|
|
|
|
} //namespace TabBox
|
|
} //namespace KWin
|
|
|