summaryrefslogtreecommitdiffstats
path: root/src/dialogs/extensions.h
blob: 8b0fc27804d22eb3f4be76ab9ccc70b7027bfe20 (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
/** @file
 * A simple dialog with information about extensions
 */
/* Authors:
 *   Jon A. Cruz
 *
 * Copyright (C) 2005 The Inkscape Organization
 * Released under GNU GPL, read the file 'COPYING' for more information
 */
 
#ifndef SEEN_EXTENSIONS_H
#define SEEN_EXTENSIONS_H

#include <gtkmm/textview.h>
#include "ui/widget/panel.h"

namespace Inkscape {
namespace Extension {
class Extension;
}
}

namespace Inkscape {
namespace UI {
namespace Dialogs {


/**
 * A panel that displays information about extensions.
 */
class ExtensionsPanel : public Inkscape::UI::Widget::Panel
{
public:
    ExtensionsPanel();

    static ExtensionsPanel &getInstance();

    void set_full(bool full);

private:
    ExtensionsPanel(ExtensionsPanel const &); // no copy
    ExtensionsPanel &operator=(ExtensionsPanel const &); // no assign

    static void listCB(Inkscape::Extension::Extension *in_plug, gpointer in_data);

    void rescan();

    bool _showAll;
    Gtk::TextView _view;
};

} //namespace Dialogs
} //namespace UI
} //namespace Inkscape

#endif // SEEN_EXTENSIONS_H