summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/extensions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/dialog/extensions.cpp')
-rw-r--r--src/ui/dialog/extensions.cpp120
1 files changed, 120 insertions, 0 deletions
diff --git a/src/ui/dialog/extensions.cpp b/src/ui/dialog/extensions.cpp
new file mode 100644
index 0000000..f39c7d5
--- /dev/null
+++ b/src/ui/dialog/extensions.cpp
@@ -0,0 +1,120 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/**
+ * @file
+ * A simple dialog with information about extensions.
+ */
+/* Authors:
+ * Jon A. Cruz
+ *
+ * Copyright (C) 2005 Jon A. Cruz
+ *
+ * Released under GNU GPL v2+, read the file 'COPYING' for more information.
+ */
+
+#include "extensions.h"
+#include "extension/extension.h"
+#include <gtkmm/scrolledwindow.h>
+
+#include "extension/db.h"
+
+
+namespace Inkscape {
+namespace UI {
+namespace Dialogs {
+
+using Inkscape::Extension::Extension;
+
+ExtensionsPanel &ExtensionsPanel::getInstance()
+{
+ ExtensionsPanel &instance = *new ExtensionsPanel();
+
+ instance.rescan();
+
+ return instance;
+}
+
+
+ExtensionsPanel::ExtensionsPanel() :
+ _showAll(false)
+{
+ Gtk::ScrolledWindow* scroller = new Gtk::ScrolledWindow();
+
+ _view.set_editable(false);
+
+ scroller->add(_view);
+ add(*scroller);
+
+ rescan();
+
+ show_all_children();
+}
+
+void ExtensionsPanel::set_full(bool full)
+{
+ if ( full != _showAll ) {
+ _showAll = full;
+ rescan();
+ }
+}
+
+void ExtensionsPanel::listCB( Inkscape::Extension::Extension * in_plug, gpointer in_data )
+{
+ ExtensionsPanel * self = static_cast<ExtensionsPanel*>(in_data);
+
+ const char* stateStr;
+ Extension::state_t state = in_plug->get_state();
+ switch ( state ) {
+ case Extension::STATE_LOADED:
+ {
+ stateStr = "loaded";
+ }
+ break;
+ case Extension::STATE_UNLOADED:
+ {
+ stateStr = "unloaded";
+ }
+ break;
+ case Extension::STATE_DEACTIVATED:
+ {
+ stateStr = "deactivated";
+ }
+ break;
+ default:
+ stateStr = "unknown";
+ }
+
+ if ( self->_showAll || in_plug->deactivated() ) {
+ gchar* line = g_strdup_printf( "%s %s\n \"%s\"", stateStr, in_plug->get_name(), in_plug->get_id() );
+
+ self->_view.get_buffer()->insert( self->_view.get_buffer()->end(), line );
+ self->_view.get_buffer()->insert( self->_view.get_buffer()->end(), "\n" );
+ g_free(line);
+ }
+
+ return;
+}
+
+void ExtensionsPanel::rescan()
+{
+ _view.get_buffer()->set_text("Extensions:\n");
+// g_message("/------------------");
+
+ Inkscape::Extension::db.foreach(listCB, (gpointer)this);
+
+// g_message("\\------------------");
+}
+
+} //namespace Dialogs
+} //namespace UI
+} //namespace Inkscape
+
+/*
+ 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 :