blob: f5f4d64600072453dd5e2df97f58d46494f4ff87 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* Marker edit mode toolbar - onCanvas marker editing of marker orientation, position, scale
*//*
* Authors:
* see git history
* Rachana Podaralla <rpodaralla3@gatech.edu>
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_MARKER_TOOLBAR_H
#define SEEN_MARKER_TOOLBAR_H
#include "toolbar.h"
namespace Inkscape {
namespace UI {
namespace Toolbar {
class MarkerToolbar : public Toolbar {
protected:
MarkerToolbar(SPDesktop *desktop);
public:
static GtkWidget * create(SPDesktop *desktop);
};
}}}
#endif
|