summaryrefslogtreecommitdiffstats
path: root/src/widgets/fill-n-stroke-factory.h
blob: 5ca9daa73832a216f15765f84dfb9b8745cfd37c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_FILL_N_STROKE_FACTORY_H
#define SEEN_FILL_N_STROKE_FACTORY_H
/* Authors:
 *   Jon A. Cruz <jon@joncruz.org>
 *
 * Copyright (C) 2010 Jon A. Cruz
 *
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#include "fill-or-stroke.h"

namespace Gtk {
class Widget;
}

namespace Inkscape {
namespace Widgets {

Gtk::Widget *createStyleWidget( FillOrStroke kind );
Gtk::Widget *createStrokeStyleWidget( );

} // namespace Widgets
} // namespace Inkscape

#endif // !SEEN_FILL_N_STROKE_FACTORY_H

/*
  Local Variables:
  mode:c++
  c-file-style:"stroustrup"
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
  indent-tabs-mode:nil
  fill-column:99
  End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :