summaryrefslogtreecommitdiffstats
path: root/src/ui/toolbar/page-toolbar.h
blob: 8a2ec084777f4895f4016823abfd66f3bf5a757b (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_PAGE_TOOLBAR_H
#define SEEN_PAGE_TOOLBAR_H

/**
 * @file
 * Page toolbar
 */
/* Authors:
 *   Martin Owens <doctormo@geek-2.com>
 *
 * Copyright (C) 2021 Martin Owens
 *
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#include <gtkmm.h>

#include "toolbar.h"

class SPDesktop;
class SPDocument;
class SPPage;

namespace Inkscape {
class PaperSize;
namespace UI {
namespace Tools {
class ToolBase;
}
namespace Toolbar {

class PageToolbar : public Gtk::Toolbar
{
public:
    PageToolbar(BaseObjectType *cobject, const Glib::RefPtr<Gtk::Builder> &builder, SPDesktop *desktop);
    ~PageToolbar() override;

    static GtkWidget *create(SPDesktop *desktop);

protected:
    void labelEdited();
    void sizeChoose();
    void sizeChanged();
    void setSizeText(SPPage *page = nullptr);

private:
    SPDesktop *_desktop;
    SPDocument *_document;

    void toolChanged(SPDesktop *desktop, Inkscape::UI::Tools::ToolBase *ec);
    void pagesChanged();
    void selectionChanged(SPPage *page);
    void on_parent_changed(Gtk::Widget *prev) override;

    sigc::connection _ec_connection;
    sigc::connection _doc_connection;
    sigc::connection _pages_changed;
    sigc::connection _page_selected;
    sigc::connection _page_modified;

    bool was_referenced;
    Gtk::ComboBoxText *combo_page_sizes;
    Gtk::Entry *entry_page_sizes;
    Gtk::Entry *text_page_label;
    Gtk::Label *label_page_pos;
    Gtk::ToolButton *btn_page_backward;
    Gtk::ToolButton *btn_page_foreward;
    Gtk::ToolButton *btn_page_delete;
    Gtk::ToolButton *btn_move_toggle;
    Gtk::SeparatorToolItem *sep1;

    double _unit_to_size(std::string number, std::string unit_str, std::string backup);
};

} // namespace Toolbar
} // namespace UI
} // namespace Inkscape

#endif /* !SEEN_PAGE_TOOLBAR_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 :