summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/lpe-selector.h
blob: 53ec21df2ee99c460af848128acd33a0152d52b6 (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
// 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_LPE_SELECTOR_H
#define INKSCAPE_UI_LPE_SELECTOR_H

#include <gtkmm/gtkmm.h>

namespace Inkscape {
namespace UI {

class LPESelector : public Gtk::Box {
  public:
    LPESelector();
    ~LPESelector() override;

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

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