Skip to content

Commit

Permalink
Fix include issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dimula73 committed Nov 22, 2022
1 parent 2c7858c commit abc879b
Show file tree
Hide file tree
Showing 16 changed files with 33 additions and 4 deletions.
1 change: 1 addition & 0 deletions libs/global/KisZug.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#ifndef KISZUG_H
#define KISZUG_H

#include <QtGlobal>
#include "KisMpl.h"
#include <zug/transducer/map.hpp>
#include <zug/reducing/last.hpp>
Expand Down
1 change: 1 addition & 0 deletions libs/ui/kis_paintop_options_model.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <kritaui_export.h>

#include <QString>
#include <QSignalMapper>

struct KRITAUI_EXPORT KisOptionInfo
{
Expand Down
5 changes: 4 additions & 1 deletion libs/ui/widgets/KisCompositeOpListConnectionHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
*/
#include "KisCompositeOpListConnectionHelper.h"

#include "KoCompositeOpRegistry.h"
#include <QMetaObject>
#include <QMetaProperty>
#include <KoCompositeOpRegistry.h>
#include <kis_assert.h>
#include "kis_cmb_composite.h"

namespace KisWidgetConnectionUtils
Expand Down
3 changes: 3 additions & 0 deletions libs/ui/widgets/KisLodAvailabilityData.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
#ifndef KISLODAVAILABILITYDATA_H
#define KISLODAVAILABILITYDATA_H

#include <QtGlobal>
#include <boost/operators.hpp>
#include <kritaui_export.h>

class KisPropertiesConfiguration;

class KRITAUI_EXPORT KisLodAvailabilityData : boost::equality_comparable<KisLodAvailabilityData>
{
public:
Expand Down
4 changes: 4 additions & 0 deletions plugins/paintops/libpaintop/KisAirbrushOptionData.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@
#ifndef KISAIRBRUSHOPTIONDATA_H
#define KISAIRBRUSHOPTIONDATA_H

#include <QtGlobal>
#include <boost/operators.hpp>
#include <kritapaintop_export.h>

class KisPropertiesConfiguration;


class PAINTOP_EXPORT KisAirbrushOptionData : boost::equality_comparable<KisAirbrushOptionData>
{
public:
Expand Down
1 change: 1 addition & 0 deletions plugins/paintops/libpaintop/KisAirbrushOptionModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#ifndef KISAIRBRUSHOPTIONMODEL_H
#define KISAIRBRUSHOPTIONMODEL_H

#include <QObject>
#include <lager/cursor.hpp>
#include <lager/extra/qt.hpp>

Expand Down
3 changes: 3 additions & 0 deletions plugins/paintops/libpaintop/KisColorSourceOptionData.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@
#define KISCOLORSOURCEOPTIONDATA_H


#include "kis_types.h"
#include <boost/operators.hpp>
#include <kritapaintop_export.h>

class KisPropertiesConfiguration;

class PAINTOP_EXPORT KisColorSourceOptionData : boost::equality_comparable<KisColorSourceOptionData>
{
public:
Expand Down
3 changes: 3 additions & 0 deletions plugins/paintops/libpaintop/KisCompositeOpOptionData.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
#ifndef KISCOMPOSITEOPOPTIONDATA_H
#define KISCOMPOSITEOPOPTIONDATA_H

#include "kis_types.h"
#include <boost/operators.hpp>
#include <kritapaintop_export.h>

class KisPropertiesConfiguration;

class PAINTOP_EXPORT KisCompositeOpOptionData : boost::equality_comparable<KisCompositeOpOptionData>
{
public:
Expand Down
1 change: 1 addition & 0 deletions plugins/paintops/libpaintop/KisEmbeddedTextureData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
#include "KisEmbeddedTextureData.h"

#include <QFileInfo>
#include <kis_properties_configuration.h>
#include <KoResourceLoadResult.h>
#include <KisResourcesInterface.h>
Expand Down
3 changes: 3 additions & 0 deletions plugins/paintops/libpaintop/KisEmbeddedTextureData.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@
#ifndef KISEMBEDDEDTEXTUREDATA_H
#define KISEMBEDDEDTEXTUREDATA_H

#include "kis_types.h"
#include <boost/operators.hpp>
#include <kritapaintop_export.h>
#include <KoPattern.h>

class KisPropertiesConfiguration;


class PAINTOP_EXPORT KisEmbeddedTextureData : boost::equality_comparable<KisEmbeddedTextureData>
{
Expand Down
3 changes: 2 additions & 1 deletion plugins/paintops/libpaintop/KisMirrorProperties.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
#ifndef KISMIRRORPROPERTIES_H
#define KISMIRRORPROPERTIES_H

struct MirrorProperties {
class MirrorProperties {
public:
MirrorProperties()
: horizontalMirror(false),
verticalMirror(false),
Expand Down
3 changes: 3 additions & 0 deletions plugins/paintops/libpaintop/KisPaintingModeOptionData.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@
#define KISPAINTINGMODEOPTIONDATA_H


#include "kis_types.h"
#include <boost/operators.hpp>
#include <kritapaintop_export.h>

class KisPropertiesConfiguration;

enum class enumPaintingMode {
BUILDUP,
WASH
Expand Down
1 change: 1 addition & 0 deletions plugins/paintops/libpaintop/KisTextureOptionModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
#include "KisTextureOptionModel.h"

#include <kis_assert.h>
#include <KisZug.h>

#include <KoResourceLoadResult.h>
Expand Down
1 change: 1 addition & 0 deletions plugins/paintops/libpaintop/kis_color_source_option.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <kritapaintop_export.h>

#include <QList>
#include <QScopedPointer>

class KisColorSource;
class KoID;
Expand Down
2 changes: 1 addition & 1 deletion plugins/paintops/libpaintop/sensors2/KisDynamicSensor2.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <KoID.h>

class KisPaintInformation;
class KisSensorData;
struct KisSensorData;

class KisDynamicSensor2
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "KisDynamicSensor2.h"

class KisSensorWithLengthData;
struct KisSensorWithLengthData;

class KisDynamicSensorFade2 : public KisDynamicSensor2
{
Expand Down

0 comments on commit abc879b

Please sign in to comment.