/* BEGIN_COMMON_COPYRIGHT_HEADER * (c)LGPL2+ * * LXDE-Qt - a lightweight, Qt based, desktop toolset * http://razor-qt.org * * Copyright: 2011 Razor team * Authors: * Petr Vanek * * This program or library is free software; you can redistribute it * and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA * * END_COMMON_COPYRIGHT_HEADER */ #include #include #include #include #include #include #include #include #include #include "desktopswitch.h" #include "desktopswitchbutton.h" DesktopSwitch::DesktopSwitch(const ILxQtPanelPluginStartupInfo &startupInfo) : QObject(), ILxQtPanelPlugin(startupInfo), m_pSignalMapper(new QSignalMapper(this)), m_desktopCount(KWindowSystem::numberOfDesktops()) { m_buttons = new QButtonGroup(this); connect (m_pSignalMapper, SIGNAL(mapped(int)), this, SLOT(setDesktop(int))); mLayout = new LxQt::GridLayout(&mWidget); mWidget.setLayout(mLayout); setup(); connect(KWindowSystem::self(), SIGNAL(numberOfDesktopsChanged(int)), SLOT(onNumberOfDesktopsChanged(int))); connect(KWindowSystem::self(), SIGNAL(currentDesktopChanged(int)), SLOT(onCurrentDesktopChanged(int))); connect(KWindowSystem::self(), SIGNAL(desktopNamesChanged()), SLOT(onDesktopNamesChanged())); } void DesktopSwitch::setup() { // clear current state foreach (QAbstractButton * b, m_buttons->buttons()) { // TODO/FIXME: maybe it has to be removed from layout too? m_pSignalMapper->removeMappings(b); m_buttons->removeButton(b); // dynamic_cast(b)->unregisterShortcut(); delete b; } // create new desktop layout for (int i = 0; i < m_desktopCount; ++i) { QString path = QString("/panel/%1/desktop_%2").arg(settings()->group()).arg(i + 1); QString shortcut = QString("Control+F%1").arg(i + 1); DesktopSwitchButton * m = new DesktopSwitchButton(&mWidget, i, path, shortcut, KWindowSystem::desktopName(i + 1).isEmpty() ? tr("Desktop %1").arg(i + 1) : KWindowSystem::desktopName(i + 1)); m_pSignalMapper->setMapping(m, i); connect(m, SIGNAL(activated()), m_pSignalMapper, SLOT(map())) ; mWidget.layout()->addWidget(m); m_buttons->addButton(m, i); } int activeDesk = KWindowSystem::currentDesktop(); QAbstractButton * button = m_buttons->button(activeDesk - 1); if (button) button->setChecked(true); connect(m_buttons, SIGNAL(buttonClicked(int)), this, SLOT(setDesktop(int))); realign(); } DesktopSwitch::~DesktopSwitch() { } void DesktopSwitch::setDesktop(int desktop) { KWindowSystem::setCurrentDesktop(desktop + 1); } void DesktopSwitch::onNumberOfDesktopsChanged(int count) { if (m_desktopCount != count) { qDebug() << "Desktop count changed from" << m_desktopCount << "to" << count; m_desktopCount = count; onDesktopNamesChanged(); setup(); } } void DesktopSwitch::onCurrentDesktopChanged(int current) { QAbstractButton *button = m_buttons->button(current - 1); if (button) button->setChecked(true); } void DesktopSwitch::onDesktopNamesChanged() { QStringList names; const int count = KWindowSystem::numberOfDesktops(); for (int i = 0; i < count; ++i) names << KWindowSystem::desktopName(i + 1); m_desktopNames = names; setup(); } void DesktopSwitch::realign() { mLayout->setEnabled(false); if (panel()->isHorizontal()) { mLayout->setRowCount(qMin(panel()->lineCount(), mLayout->count())); mLayout->setColumnCount(0); } else { mLayout->setColumnCount(qMin(panel()->lineCount(), mLayout->count())); mLayout->setRowCount(0); } mLayout->setEnabled(true); } DesktopSwitchWidget::DesktopSwitchWidget(): QFrame() { } void DesktopSwitchWidget::wheelEvent(QWheelEvent *e) { int max = KWindowSystem::currentDesktop() - 1; int delta = e->delta() < 0 ? 1 : -1; int current = KWindowSystem::currentDesktop() + delta; if (current > max) current = 0; else if (current < 0) current = max; KWindowSystem::setCurrentDesktop(current); }