kwin/tabbox/desktopmodel.cpp

162 lines
4.6 KiB
C++
Raw Normal View History

/********************************************************************
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/>.
*********************************************************************/
// own
#include "desktopmodel.h"
// tabbox
#include "clientmodel.h"
#include "tabboxconfig.h"
#include "tabboxhandler.h"
#include <math.h>
namespace KWin
{
namespace TabBox
{
2011-01-30 17:34:42 +03:00
DesktopModel::DesktopModel(QObject* parent)
: QAbstractItemModel(parent)
{
}
DesktopModel::~DesktopModel()
2011-01-30 17:34:42 +03:00
{
}
2011-01-30 17:34:42 +03:00
QVariant DesktopModel::data(const QModelIndex& index, int role) const
{
if (!index.isValid())
return QVariant();
2011-01-30 17:34:42 +03:00
int desktopIndex = index.row() * columnCount() + index.column();
if (desktopIndex >= m_desktopList.count())
return QVariant();
switch(role) {
case Qt::DisplayRole:
case DesktopNameRole:
return tabBox->desktopName(m_desktopList[ desktopIndex ]);
case DesktopRole:
return m_desktopList[ desktopIndex ];
case ClientModelRole:
return qVariantFromValue((void*)m_clientModels[ m_desktopList[ desktopIndex ] ]);
default:
return QVariant();
}
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
int DesktopModel::columnCount(const QModelIndex& parent) const
{
Q_UNUSED(parent)
int count = 1;
2011-01-30 17:34:42 +03:00
switch(tabBox->config().layout()) {
case TabBoxConfig::HorizontalLayout:
count = m_desktopList.count();
break;
case TabBoxConfig::VerticalLayout:
count = 1;
break;
case TabBoxConfig::HorizontalVerticalLayout:
count = qRound(sqrt(float(m_desktopList.count())));
if (count * count < m_desktopList.count())
count++;
// TODO: pager layout?
break;
}
2011-01-30 17:34:42 +03:00
return qMax(count, 1);
}
2011-01-30 17:34:42 +03:00
int DesktopModel::rowCount(const QModelIndex& parent) const
{
Q_UNUSED(parent)
int count = 1;
2011-01-30 17:34:42 +03:00
switch(tabBox->config().layout()) {
case TabBoxConfig::HorizontalLayout:
count = 1;
break;
case TabBoxConfig::VerticalLayout:
count = m_desktopList.count();
break;
case TabBoxConfig::HorizontalVerticalLayout:
count = qRound(sqrt(float(m_desktopList.count())));
// TODO: pager layout?
break;
}
2011-01-30 17:34:42 +03:00
return qMax(count, 1);
}
2011-01-30 17:34:42 +03:00
QModelIndex DesktopModel::parent(const QModelIndex& child) const
{
Q_UNUSED(child)
return QModelIndex();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
QModelIndex DesktopModel::index(int row, int column, const QModelIndex& parent) const
{
Q_UNUSED(parent)
int index = row * columnCount() + column;
2011-01-30 17:34:42 +03:00
if (index > m_desktopList.count() || m_desktopList.isEmpty())
return QModelIndex();
2011-01-30 17:34:42 +03:00
return createIndex(row, column);
}
2011-01-30 17:34:42 +03:00
QModelIndex DesktopModel::desktopIndex(int desktop) const
{
if (desktop > m_desktopList.count())
return QModelIndex();
2011-01-30 17:34:42 +03:00
int index = m_desktopList.indexOf(desktop);
int row = index / columnCount();
int column = index % columnCount();
2011-01-30 17:34:42 +03:00
return createIndex(row, column);
}
void DesktopModel::createDesktopList()
2011-01-30 17:34:42 +03:00
{
m_desktopList.clear();
2011-01-30 17:34:42 +03:00
qDeleteAll(m_clientModels);
m_clientModels.clear();
2011-01-30 17:34:42 +03:00
switch(tabBox->config().desktopSwitchingMode()) {
case TabBoxConfig::MostRecentlyUsedDesktopSwitching: {
int desktop = tabBox->currentDesktop();
do {
m_desktopList.append(desktop);
ClientModel* clientModel = new ClientModel(this);
clientModel->createClientList(desktop);
m_clientModels.insert(desktop, clientModel);
desktop = tabBox->nextDesktopFocusChain(desktop);
} while (desktop != tabBox->currentDesktop());
break;
}
case TabBoxConfig::StaticDesktopSwitching: {
for (int i = 1; i <= tabBox->numberOfDesktops(); i++) {
m_desktopList.append(i);
ClientModel* clientModel = new ClientModel(this);
clientModel->createClientList(i);
m_clientModels.insert(i, clientModel);
}
2011-01-30 17:34:42 +03:00
break;
}
2011-01-30 17:34:42 +03:00
}
reset();
}
} // namespace Tabbox
} // namespace KWin