mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
97 lines
2.9 KiB
C++
97 lines
2.9 KiB
C++
/*
|
|
* Copyright 2008 Aike J Sommer <dev@aikesommer.name>
|
|
*
|
|
* 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,
|
|
* 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 Library General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
|
|
#ifndef KEPHAL_NOCONFIGURATIONS_H
|
|
#define KEPHAL_NOCONFIGURATIONS_H
|
|
|
|
#include "configurations.h"
|
|
|
|
|
|
namespace Kephal {
|
|
|
|
class NoConfigurations;
|
|
|
|
/**
|
|
* Dummy Configuration object for NoConfigurations to return
|
|
*/
|
|
class SimpleConfiguration : public Configuration {
|
|
Q_OBJECT
|
|
public:
|
|
SimpleConfiguration(NoConfigurations * parent);
|
|
|
|
/**
|
|
* @reimp Kephal::Configuration
|
|
*/
|
|
QString name() const;
|
|
/**
|
|
* @reimp Kephal::Configuration
|
|
*/
|
|
bool isModifiable() const;
|
|
/**
|
|
* @reimp Kephal::Configuration
|
|
*/
|
|
bool isActivated() const;
|
|
/**
|
|
* @reimp Kephal::Configuration
|
|
*/
|
|
QMap<int, QPoint> layout() const;
|
|
/**
|
|
* @reimp Kephal::Configuration
|
|
*/
|
|
int primaryScreen() const;
|
|
|
|
public Q_SLOTS:
|
|
void activate();
|
|
};
|
|
|
|
/**
|
|
* Dummy Configurations to use when no real backend is available
|
|
*/
|
|
class NoConfigurations : public Configurations {
|
|
Q_OBJECT
|
|
public:
|
|
NoConfigurations(QObject * parent);
|
|
|
|
QMap<QString, Configuration *> configurations();
|
|
Configuration * findConfiguration();
|
|
Configuration * activeConfiguration();
|
|
QList<Configuration *> alternateConfigurations();
|
|
QList<QPoint> possiblePositions(const Output * output);
|
|
bool move(Output * output, const QPoint & position);
|
|
bool resize(Output * output, const QSize & size);
|
|
bool rotate(Output * output, Rotation rotation);
|
|
bool changeRate(Output * output, float rate);
|
|
bool reflectX(Output * output, bool reflect);
|
|
bool reflectY(Output * output, bool reflect);
|
|
int screen(Output * output);
|
|
void applyOutputSettings();
|
|
void setPolling(bool polling);
|
|
bool polling() const;
|
|
void confirm();
|
|
void revert();
|
|
|
|
private:
|
|
SimpleConfiguration * m_config;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // KEPHAL_NOCONFIGURATIONS_H
|
|
|