summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/color-notebook.h
blob: 938ab8710084c507379a994bb6ac30ee5b66b5af (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
92
93
94
95
96
97
98
99
100
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
 * A notebook with RGB, CMYK, CMS, HSL, and Wheel pages
 *//*
 * Authors:
 *   Lauris Kaplinski <lauris@kaplinski.com>
 *   bulia byak <buliabyak@users.sf.net>
 *   Tomasz Boczkowski <penginsbacon@gmail.com> (c++-sification)
 *
 * Copyright (C) 2001-2014 Authors
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */
#ifndef SEEN_SP_COLOR_NOTEBOOK_H
#define SEEN_SP_COLOR_NOTEBOOK_H

#ifdef HAVE_CONFIG_H
# include "config.h"  // only include where actually required!
#endif

#include <boost/ptr_container/ptr_vector.hpp>
#include <gtkmm/grid.h>
#include <gtkmm/stack.h>
#include <gtkmm/stackswitcher.h>
#include <glib.h>

#include "color.h"
#include "color-rgba.h"
#include "preferences.h"
#include "ui/selected-color.h"
#include "ui/widget/icon-combobox.h"

namespace Inkscape {
namespace UI {
namespace Widget {

class ColorNotebook
    : public Gtk::Grid
{
public:
    ColorNotebook(SelectedColor &color);
    ~ColorNotebook() override;

    void set_label(const Glib::ustring& label);

protected:
    struct Page {
        Page(Inkscape::UI::ColorSelectorFactory *selector_factory, const char* icon);

        std::unique_ptr<Inkscape::UI::ColorSelectorFactory> selector_factory;
        Glib::ustring icon_name;
    };

    virtual void _initUI();
    void _addPage(Page &page);

    void _pickColor(ColorRGBA *color);
    static void _onPickerClicked(GtkWidget *widget, ColorNotebook *colorbook);
    void _onPageSwitched(int page_num);
    virtual void _onSelectedColorChanged();

    void _updateICCButtons();
    void _setCurrentPage(int i, bool sync_combo);

    Inkscape::UI::SelectedColor &_selected_color;
    gulong _entryId;
    Gtk::Stack* _book;
    Gtk::StackSwitcher* _switcher;
    Gtk::Box* _buttonbox;
    Gtk::Label* _label;
    GtkWidget *_rgbal; /* RGBA entry */
    GtkWidget *_box_outofgamut, *_box_colormanaged, *_box_toomuchink;
    GtkWidget *_btn_picker;
    GtkWidget *_p; /* Color preview */
    boost::ptr_vector<Page> _available_pages;
    sigc::connection _onetimepick;
    IconComboBox* _combo = nullptr;

private:
    // By default, disallow copy constructor and assignment operator
    ColorNotebook(const ColorNotebook &obj) = delete;
    ColorNotebook &operator=(const ColorNotebook &obj) = delete;

    PrefObserver _observer;
};

}
}
}
#endif // SEEN_SP_COLOR_NOTEBOOK_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 :