rename header guards
This commit is contained in:
parent
cdc584506d
commit
2578edce08
|
@ -1,5 +1,5 @@
|
||||||
#ifndef CARD_H
|
#ifndef BOX_H
|
||||||
#define CARD_H
|
#define BOX_H
|
||||||
|
|
||||||
#include <QskLinearBox.h>
|
#include <QskLinearBox.h>
|
||||||
|
|
||||||
|
@ -22,4 +22,4 @@ class Box : public QskLinearBox
|
||||||
QskControl* m_content;
|
QskControl* m_content;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // CARD_H
|
#endif // BOX_H
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
// ### copyright Uwe
|
/******************************************************************************
|
||||||
|
* QSkinny - Copyright (C) 2021 Uwe Rathmann
|
||||||
|
* This file may be used under the terms of the QSkinny License, Version 1.0
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#ifndef DIAGRAM_H
|
||||||
|
#define DIAGRAM_H
|
||||||
|
|
||||||
#include <QskControl.h>
|
#include <QskControl.h>
|
||||||
#include <QskNamespace.h>
|
#include <QskNamespace.h>
|
||||||
|
@ -48,3 +52,5 @@ class Diagram : public QskControl
|
||||||
};
|
};
|
||||||
|
|
||||||
Q_DECLARE_OPERATORS_FOR_FLAGS( Diagram::Types )
|
Q_DECLARE_OPERATORS_FOR_FLAGS( Diagram::Types )
|
||||||
|
|
||||||
|
#endif // DIAGRAM_H
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
#pragma once
|
/******************************************************************************
|
||||||
|
* QSkinny - Copyright (C) 2021 Uwe Rathmann
|
||||||
|
* This file may be used under the terms of the QSkinny License, Version 1.0
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
#ifndef DIAGRAM_SKINLET_H
|
||||||
|
#define DIAGRAM_SKINLET_H
|
||||||
|
|
||||||
#include <QskSkinlet.h>
|
#include <QskSkinlet.h>
|
||||||
|
|
||||||
|
@ -32,3 +38,5 @@ class DiagramSkinlet : public QskSkinlet
|
||||||
QSGNode* updateChartNode( const Diagram*, QSGNode* ) const;
|
QSGNode* updateChartNode( const Diagram*, QSGNode* ) const;
|
||||||
QSGNode* updateSeparatorNode( const Diagram*, QSGNode* ) const;
|
QSGNode* updateSeparatorNode( const Diagram*, QSGNode* ) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif // DIAGRAM_SKINLET_H
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef PIECHARTSKINLET_H
|
#ifndef PIECHART_SKINLET_H
|
||||||
#define PIECHARTSKINLET_H
|
#define PIECHART_SKINLET_H
|
||||||
|
|
||||||
#include <QskSkinlet.h>
|
#include <QskSkinlet.h>
|
||||||
|
|
||||||
|
@ -28,4 +28,4 @@ class PieChartSkinlet : public QskSkinlet
|
||||||
QSGNode* updateLabelsNode( const PieChart*, QSGNode* ) const;
|
QSGNode* updateLabelsNode( const PieChart*, QSGNode* ) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // PIECHARTSKINLET_H
|
#endif // PIECHART_SKINLET_H
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef DSKIN_H
|
#ifndef SKIN_H
|
||||||
#define DSKIN_H
|
#define SKIN_H
|
||||||
|
|
||||||
#include <QskGradient.h>
|
#include <QskGradient.h>
|
||||||
#include <QskSkin.h>
|
#include <QskSkin.h>
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#pragma once
|
#ifndef TOPBAR_H
|
||||||
|
#define TOPBAR_H
|
||||||
|
|
||||||
#include <QskLinearBox.h>
|
#include <QskLinearBox.h>
|
||||||
#include <QskTextLabel.h>
|
#include <QskTextLabel.h>
|
||||||
|
@ -100,3 +101,5 @@ class TopBar : public QskLinearBox
|
||||||
private:
|
private:
|
||||||
QList< TopBarItem* > m_entries;
|
QList< TopBarItem* > m_entries;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#pragma once
|
#ifndef DIAGRAMDATANODE_H
|
||||||
|
#define DIAGRAMDATANODE_H
|
||||||
|
|
||||||
#include <QskNamespace.h>
|
#include <QskNamespace.h>
|
||||||
|
|
||||||
|
@ -31,3 +32,5 @@ class IdlChartNode : public QSGGeometryNode
|
||||||
Qsk::Position m_position;
|
Qsk::Position m_position;
|
||||||
int m_lineWidth;
|
int m_lineWidth;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#pragma once
|
#ifndef DIAGRAMSEGMENTSNODE_H
|
||||||
|
#define DIAGRAMSEGMENTSNODE_H
|
||||||
|
|
||||||
#include <QPolygonF>
|
#include <QPolygonF>
|
||||||
#include <QSGFlatColorMaterial>
|
#include <QSGFlatColorMaterial>
|
||||||
|
@ -20,3 +21,5 @@ class IdlChartSegmentsNode : public QSGGeometryNode
|
||||||
QVector< QVector<QPointF> > m_dataPoints;
|
QVector< QVector<QPointF> > m_dataPoints;
|
||||||
int m_xGridLines;
|
int m_xGridLines;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue