plasma-framework/src/shell/panelview.h

91 lines
2.6 KiB
C
Raw Normal View History

/*
* Copyright 2013 Marco Martin <mart@kde.org>
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef PANELVIEW_H
#define PANELVIEW_H
#include "view.h"
#include "panelconfigview.h"
#include <QtCore/qpointer.h>
class DesktopCorona;
class PanelView : public View
{
Q_OBJECT
Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment NOTIFY alignmentChanged)
Q_PROPERTY(int offset READ offset WRITE setOffset NOTIFY offsetChanged)
2013-03-22 16:13:12 +01:00
Q_PROPERTY(int thickness READ thickness WRITE setThickness NOTIFY thicknessChanged)
Q_PROPERTY(int length READ length WRITE setLength NOTIFY lengthChanged)
2013-05-08 11:16:38 +02:00
Q_PROPERTY(int maximumLength READ maximumLength WRITE setMaximumLength NOTIFY maximumLengthChanged)
Q_PROPERTY(int minimumLength READ minimumLength WRITE setMinimumLength NOTIFY minimumLengthChanged)
public:
explicit PanelView(DesktopCorona *corona, QWindow *parent = 0);
virtual ~PanelView();
virtual KConfigGroup config() const;
virtual void init();
Qt::Alignment alignment() const;
void setAlignment(Qt::Alignment alignment);
2013-03-07 17:56:57 +01:00
int offset() const;
void setOffset(int offset);
2013-03-22 16:13:12 +01:00
int thickness() const;
void setThickness(int thickness);
int length() const;
void setLength(int value);
2013-05-08 11:16:38 +02:00
int maximumLength() const;
void setMaximumLength(int length);
int minimumLength() const;
void setMinimumLength(int length);
protected:
void resizeEvent(QResizeEvent *ev);
Q_SIGNALS:
void alignmentChanged();
void offsetChanged();
void screenGeometryChanged();
2013-03-22 16:13:12 +01:00
void thicknessChanged();
void lengthChanged();
2013-05-08 11:16:38 +02:00
void maximumLengthChanged();
void minimumLengthChanged();
private Q_SLOTS:
void positionPanel();
void restore();
private:
int m_offset;
int m_maxLength;
int m_minLength;
2013-02-21 21:12:12 +01:00
Qt::Alignment m_alignment;
QPointer<PanelConfigView> m_panelConfigView;
DesktopCorona *m_corona;
};
#endif // PANELVIEW_H