summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/filter-editor.h
blob: e20ecbf73835180af48cce8b54a910ba5dd3880d (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
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
 * @brief Filter Editor dialog
 */
/* Authors:
 *   Marc Jeanmougin
 *
 * Copyright (C) 2017 Authors
 *
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#ifndef INKSCAPE_UI_DIALOG_FILTER_EDITOR_H
#define INKSCAPE_UI_DIALOG_FILTER_EDITOR_H

#include <gtkmm/notebook.h>
#include <gtkmm/sizegroup.h>
#include <gtkmm/builder.h>
#include <gtkmm/comboboxtext.h>
#include <gtkmm/combobox.h>
#include <gtkmm/drawingarea.h>
#include <gtkmm/liststore.h>

#include <gtkmm/paned.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/treeview.h>

#include "ui/widget/panel.h"


namespace Inkscape {
namespace UI {
namespace Dialog {

class FilterEditorDialog : public UI::Widget::Panel {
public:

    FilterEditorDialog();
    ~FilterEditorDialog() override;

    static FilterEditorDialog &getInstance()
    { return *new FilterEditorDialog(); }

//    void set_attrs_locked(const bool);
private:
    Glib::RefPtr<Gtk::Builder> builder;
    Glib::RefPtr<Glib::Object> FilterStore;
    Gtk::Box *FilterEditor;
};
}
}
}
#endif