blob: d60f2d686ea38bd31cdfbe631ffce4019ee00c6a (
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
|
// 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.
*/
#include <glibmm/i18n.h>
#include "marker-toolbar.h"
#include "document-undo.h"
#include "preferences.h"
#include "desktop.h"
#include "ui/widget/canvas.h"
namespace Inkscape {
namespace UI {
namespace Toolbar {
MarkerToolbar::MarkerToolbar(SPDesktop *desktop)
: Toolbar(desktop)
{
}
GtkWidget* MarkerToolbar::create(SPDesktop *desktop)
{
auto toolbar = Gtk::manage(new MarkerToolbar(desktop));
return GTK_WIDGET(toolbar->gobj());
}
}}}
|