declarativemargins.h
55 lines
| 1.8 KiB
| text/x-c
|
CLexer
Titta Heikkala
|
r2845 | /****************************************************************************** | ||
Tero Ahola
|
r1928 | ** | ||
Titta Heikkala
|
r2845 | ** Copyright (C) 2015 The Qt Company Ltd. | ||
** Contact: http://www.qt.io/licensing/ | ||||
Tero Ahola
|
r1928 | ** | ||
Titta Heikkala
|
r2740 | ** This file is part of the Qt Charts module. | ||
Tero Ahola
|
r1928 | ** | ||
Titta Heikkala
|
r2845 | ** $QT_BEGIN_LICENSE:COMM$ | ||
Tero Ahola
|
r1928 | ** | ||
Titta Heikkala
|
r2845 | ** Commercial License Usage | ||
** Licensees holding valid commercial Qt licenses may use this file in | ||||
** accordance with the commercial license agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and The Qt Company. For licensing terms | ||||
** and conditions see http://www.qt.io/terms-conditions. For further | ||||
** information use the contact form at http://www.qt.io/contact-us. | ||||
Tero Ahola
|
r1928 | ** | ||
Titta Heikkala
|
r2845 | ** $QT_END_LICENSE$ | ||
** | ||||
******************************************************************************/ | ||||
Tero Ahola
|
r1928 | |||
#ifndef DECLARATIVE_MARGINS_H | ||||
#define DECLARATIVE_MARGINS_H | ||||
Titta Heikkala
|
r2714 | #include <QtCharts/QChartGlobal> | ||
#include <QtCore/QObject> | ||||
#include <QtCore/QMargins> | ||||
Tero Ahola
|
r1928 | |||
Titta Heikkala
|
r2712 | QT_CHARTS_BEGIN_NAMESPACE | ||
Tero Ahola
|
r1928 | |||
class DeclarativeMargins : public QObject, public QMargins | ||||
{ | ||||
Q_OBJECT | ||||
Q_PROPERTY(int top READ top WRITE setTop NOTIFY topChanged) | ||||
Q_PROPERTY(int bottom READ bottom WRITE setBottom NOTIFY bottomChanged) | ||||
Q_PROPERTY(int left READ left WRITE setLeft NOTIFY leftChanged) | ||||
Q_PROPERTY(int right READ right WRITE setRight NOTIFY rightChanged) | ||||
public: | ||||
explicit DeclarativeMargins(QObject *parent = 0); | ||||
void setTop(int top); | ||||
void setBottom(int bottom); | ||||
void setLeft(int left); | ||||
void setRight(int right); | ||||
Q_SIGNALS: | ||||
void topChanged(int top, int bottom, int left, int right); | ||||
void bottomChanged(int top, int bottom, int left, int right); | ||||
void leftChanged(int top, int bottom, int left, int right); | ||||
void rightChanged(int top, int bottom, int left, int right); | ||||
}; | ||||
Titta Heikkala
|
r2712 | QT_CHARTS_END_NAMESPACE | ||
Tero Ahola
|
r1928 | |||
#endif // DECLARATIVE_MARGINS_H | ||||