File indexing completed on 2024-12-22 04:13:03

0001 /*
0002  *  SPDX-FileCopyrightText: 2019 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KISTOOLSHAPEUTILS_H
0008 #define KISTOOLSHAPEUTILS_H
0009 
0010 namespace KisToolShapeUtils
0011 {
0012 
0013 enum FillStyle {
0014     FillStyleNone,
0015     FillStyleForegroundColor,
0016     FillStyleBackgroundColor,
0017     FillStylePattern,
0018 };
0019 
0020 enum StrokeStyle {
0021     StrokeStyleNone,
0022     StrokeStyleForeground,
0023     StrokeStyleBackground
0024 };
0025 
0026 }
0027 
0028 #endif // KISTOOLSHAPEUTILS_H