[glade] Added GladeScaleButtonEditor.
- From: Tristan Van Berkom <tvb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glade] Added GladeScaleButtonEditor.
- Date: Sun, 12 May 2013 12:09:41 +0000 (UTC)
commit bba4e48982875fccd168fd621fe856ae5b83fcbf
Author: Tristan Van Berkom <tristan van berkom gmail com>
Date: Sun May 12 19:30:35 2013 +0900
Added GladeScaleButtonEditor.
plugins/gtk+/Makefile.am | 9 +-
plugins/gtk+/glade-gtk-button.c | 5 +-
plugins/gtk+/glade-gtk-resources.gresource.xml | 3 +-
plugins/gtk+/glade-scale-button-editor.c | 85 ++++++++
plugins/gtk+/glade-scale-button-editor.h | 57 +++++
plugins/gtk+/glade-scale-button-editor.ui | 262 ++++++++++++++++++++++++
plugins/gtk+/gtk+.xml.in | 21 ++-
po/POTFILES.in | 6 +-
8 files changed, 433 insertions(+), 15 deletions(-)
---
diff --git a/plugins/gtk+/Makefile.am b/plugins/gtk+/Makefile.am
index dc16386..53cdf97 100644
--- a/plugins/gtk+/Makefile.am
+++ b/plugins/gtk+/Makefile.am
@@ -108,13 +108,14 @@ libgladegtk_la_SOURCES = \
glade-message-dialog-editor.c \
glade-model-data.c \
glade-notebook-editor.c \
- glade-spin-button-editor.c \
glade-recent-action-editor.c \
glade-recent-chooser-dialog-editor.c \
glade-recent-chooser-editor.c \
glade-recent-chooser-menu-editor.c \
glade-recent-chooser-widget-editor.c \
+ glade-scale-button-editor.c \
glade-scrolled-window-editor.c \
+ glade-spin-button-editor.c \
glade-store-editor.c \
glade-string-list.c \
glade-tool-button-editor.c \
@@ -166,13 +167,14 @@ noinst_HEADERS = \
glade-message-dialog-editor.h \
glade-model-data.h \
glade-notebook-editor.h \
- glade-spin-button-editor.h \
glade-recent-action-editor.h \
glade-recent-chooser-dialog-editor.h \
glade-recent-chooser-editor.h \
glade-recent-chooser-menu-editor.h \
glade-recent-chooser-widget-editor.h \
+ glade-scale-button-editor.h \
glade-scrolled-window-editor.h \
+ glade-spin-button-editor.h \
glade-store-editor.h \
glade-string-list.h \
glade-tool-button-editor.h \
@@ -222,13 +224,14 @@ UI_FILES = \
glade-label-editor.ui \
glade-message-dialog-editor.ui \
glade-notebook-editor.ui \
- glade-spin-button-editor.ui \
glade-recent-action-editor.ui \
glade-recent-chooser-dialog-editor.ui \
glade-recent-chooser-editor.ui \
glade-recent-chooser-menu-editor.ui \
glade-recent-chooser-widget-editor.ui \
+ glade-scale-button-editor.ui \
glade-scrolled-window-editor.ui \
+ glade-spin-button-editor.ui \
glade-tool-button-editor.ui \
glade-widget-editor.ui \
glade-window-editor.ui
diff --git a/plugins/gtk+/glade-gtk-button.c b/plugins/gtk+/glade-gtk-button.c
index bd5f866..3c588df 100644
--- a/plugins/gtk+/glade-gtk-button.c
+++ b/plugins/gtk+/glade-gtk-button.c
@@ -26,6 +26,7 @@
#include <gladeui/glade.h>
#include "glade-button-editor.h"
+#include "glade-scale-button-editor.h"
#include "glade-font-button-editor.h"
#include "glade-gtk.h"
#include "glade-gtk-button.h"
@@ -124,8 +125,10 @@ glade_gtk_button_create_editable (GladeWidgetAdaptor * adaptor,
if (g_type_is_a (type, GTK_TYPE_FONT_BUTTON))
return (GladeEditable *) glade_font_button_editor_new ();
+ else if (g_type_is_a (type, GTK_TYPE_SCALE_BUTTON))
+ return (GladeEditable *) glade_scale_button_editor_new ();
else
- return (GladeEditable *) glade_button_editor_new (adaptor, NULL);
+ return (GladeEditable *) glade_button_editor_new ();
}
return GWA_GET_CLASS (GTK_TYPE_CONTAINER)->create_editable (adaptor, type);
diff --git a/plugins/gtk+/glade-gtk-resources.gresource.xml b/plugins/gtk+/glade-gtk-resources.gresource.xml
index 603f960..8ca3d68 100644
--- a/plugins/gtk+/glade-gtk-resources.gresource.xml
+++ b/plugins/gtk+/glade-gtk-resources.gresource.xml
@@ -20,13 +20,14 @@
<file compressed="true" preprocess="xml-stripblanks">glade-label-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-message-dialog-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-notebook-editor.ui</file>
- <file compressed="true" preprocess="xml-stripblanks">glade-spin-button-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-recent-action-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-recent-chooser-dialog-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-recent-chooser-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-recent-chooser-widget-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-recent-chooser-menu-editor.ui</file>
+ <file compressed="true" preprocess="xml-stripblanks">glade-scale-button-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-scrolled-window-editor.ui</file>
+ <file compressed="true" preprocess="xml-stripblanks">glade-spin-button-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-tool-button-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-widget-editor.ui</file>
<file compressed="true" preprocess="xml-stripblanks">glade-window-editor.ui</file>
diff --git a/plugins/gtk+/glade-scale-button-editor.c b/plugins/gtk+/glade-scale-button-editor.c
new file mode 100644
index 0000000..dfc41ec
--- /dev/null
+++ b/plugins/gtk+/glade-scale-button-editor.c
@@ -0,0 +1,85 @@
+/*
+ * Copyright (C) 2013 Tristan Van Berkom.
+ *
+ * This library is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Authors:
+ * Tristan Van Berkom <tvb gnome org>
+ */
+
+#include <config.h>
+#include <gladeui/glade.h>
+#include <glib/gi18n-lib.h>
+
+#include "glade-scale-button-editor.h"
+
+static void glade_scale_button_editor_editable_init (GladeEditableIface * iface);
+
+struct _GladeScaleButtonEditorPrivate
+{
+ GtkWidget *dummy;
+};
+
+static GladeEditableIface *parent_editable_iface;
+
+G_DEFINE_TYPE_WITH_CODE (GladeScaleButtonEditor, glade_scale_button_editor, GLADE_TYPE_BUTTON_EDITOR,
+ G_IMPLEMENT_INTERFACE (GLADE_TYPE_EDITABLE,
+ glade_scale_button_editor_editable_init));
+
+static void
+glade_scale_button_editor_class_init (GladeScaleButtonEditorClass * klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
+
+ gtk_widget_class_set_template_from_resource (widget_class,
"/org/gnome/gladegtk/glade-scale-button-editor.ui");
+
+ g_type_class_add_private (object_class, sizeof (GladeScaleButtonEditorPrivate));
+}
+
+static void
+glade_scale_button_editor_init (GladeScaleButtonEditor * self)
+{
+ self->priv =
+ G_TYPE_INSTANCE_GET_PRIVATE (self,
+ GLADE_TYPE_SCALE_BUTTON_EDITOR,
+ GladeScaleButtonEditorPrivate);
+
+ gtk_widget_init_template (GTK_WIDGET (self));
+}
+
+static void
+glade_scale_button_editor_load (GladeEditable * editable, GladeWidget * widget)
+{
+ /* GladeScaleButtonEditor *button_editor = GLADE_SCALE_BUTTON_EDITOR (editable); */
+ /* GladeScaleButtonEditorPrivate *priv = button_editor->priv; */
+
+ /* Chain up to default implementation */
+ parent_editable_iface->load (editable, widget);
+}
+
+static void
+glade_scale_button_editor_editable_init (GladeEditableIface * iface)
+{
+ parent_editable_iface = g_type_interface_peek_parent (iface);
+
+ iface->load = glade_scale_button_editor_load;
+}
+
+GtkWidget *
+glade_scale_button_editor_new (void)
+{
+ return g_object_new (GLADE_TYPE_SCALE_BUTTON_EDITOR, NULL);
+}
diff --git a/plugins/gtk+/glade-scale-button-editor.h b/plugins/gtk+/glade-scale-button-editor.h
new file mode 100644
index 0000000..bf38951
--- /dev/null
+++ b/plugins/gtk+/glade-scale-button-editor.h
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2013 Tristan Van Berkom.
+ *
+ * This library is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Authors:
+ * Tristan Van Berkom <tvb gnome org>
+ */
+#ifndef _GLADE_SCALE_BUTTON_EDITOR_H_
+#define _GLADE_SCALE_BUTTON_EDITOR_H_
+
+#include <gtk/gtk.h>
+#include "glade-button-editor.h"
+
+G_BEGIN_DECLS
+
+#define GLADE_TYPE_SCALE_BUTTON_EDITOR (glade_scale_button_editor_get_type ())
+#define GLADE_SCALE_BUTTON_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj),
GLADE_TYPE_SCALE_BUTTON_EDITOR, GladeScaleButtonEditor))
+#define GLADE_SCALE_BUTTON_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass),
GLADE_TYPE_SCALE_BUTTON_EDITOR, GladeScaleButtonEditorClass))
+#define GLADE_IS_SCALE_BUTTON_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj),
GLADE_TYPE_SCALE_BUTTON_EDITOR))
+#define GLADE_IS_SCALE_BUTTON_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),
GLADE_TYPE_SCALE_BUTTON_EDITOR))
+#define GLADE_SCALE_BUTTON_EDITOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj),
GLADE_TYPE_SCALE_BUTTON_EDITOR, GladeScaleButtonEditorClass))
+
+typedef struct _GladeScaleButtonEditor GladeScaleButtonEditor;
+typedef struct _GladeScaleButtonEditorClass GladeScaleButtonEditorClass;
+typedef struct _GladeScaleButtonEditorPrivate GladeScaleButtonEditorPrivate;
+
+struct _GladeScaleButtonEditor
+{
+ GladeButtonEditor parent;
+
+ GladeScaleButtonEditorPrivate *priv;
+};
+
+struct _GladeScaleButtonEditorClass
+{
+ GladeButtonEditorClass parent;
+};
+
+GType glade_scale_button_editor_get_type (void) G_GNUC_CONST;
+GtkWidget *glade_scale_button_editor_new (void);
+
+G_END_DECLS
+
+#endif /* _GLADE_SCALE_BUTTON_EDITOR_H_ */
diff --git a/plugins/gtk+/glade-scale-button-editor.ui b/plugins/gtk+/glade-scale-button-editor.ui
new file mode 100644
index 0000000..1faf6ef
--- /dev/null
+++ b/plugins/gtk+/glade-scale-button-editor.ui
@@ -0,0 +1,262 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface domain="glade">
+ <!-- interface-requires gladeui 0.0 -->
+ <!-- interface-requires gtk+ 3.10 -->
+ <!-- interface-requires glade-gtk-plugin 0.0 -->
+ <template class="GladeScaleButtonEditor" parent="GladeButtonEditor">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="orientation">vertical</property>
+ <property name="spacing">4</property>
+ <child internal-child="extension_port">
+ <object class="GtkBox" id="extension_port">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="orientation">vertical</property>
+ <child>
+ <object class="GtkGrid" id="grid">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="row_spacing">6</property>
+ <property name="column_spacing">6</property>
+ <child>
+ <object class="GtkLabel" id="title">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="halign">start</property>
+ <property name="valign">center</property>
+ <property name="label" translatable="yes">Scale Button Attributes</property>
+ <attributes>
+ <attribute name="weight" value="bold"/>
+ </attributes>
+ </object>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="top_attach">0</property>
+ <property name="width">5</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyLabel" id="orientation_label">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="margin_left">12</property>
+ <property name="hexpand">False</property>
+ <property name="property_name">orientation</property>
+ <property name="custom_text" translatable="yes">Scale orientation:</property>
+ </object>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="top_attach">1</property>
+ <property name="width">2</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyShell" id="orientation_editor">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="hexpand">False</property>
+ <property name="property_name">orientation</property>
+ </object>
+ <packing>
+ <property name="left_attach">2</property>
+ <property name="top_attach">1</property>
+ <property name="width">1</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyLabel" id="adj_label">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="margin_left">12</property>
+ <property name="hexpand">False</property>
+ <property name="property_name">adjustment</property>
+ </object>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="top_attach">2</property>
+ <property name="width">2</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyShell" id="adj_editor">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="hexpand">False</property>
+ <property name="property_name">adjustment</property>
+ </object>
+ <packing>
+ <property name="left_attach">2</property>
+ <property name="top_attach">2</property>
+ <property name="width">1</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyLabel" id="value_label">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="margin_left">12</property>
+ <property name="hexpand">False</property>
+ <property name="property_name">value</property>
+ </object>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="top_attach">3</property>
+ <property name="width">2</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyShell" id="value_editor">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="hexpand">False</property>
+ <property name="property_name">value</property>
+ </object>
+ <packing>
+ <property name="left_attach">2</property>
+ <property name="top_attach">3</property>
+ <property name="width">1</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyLabel" id="icons_label">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="margin_left">12</property>
+ <property name="hexpand">False</property>
+ <property name="property_name">icons</property>
+ </object>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="top_attach">4</property>
+ <property name="width">2</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyShell" id="icons_editor">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="margin_left">12</property>
+ <property name="property_name">icons</property>
+ </object>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="top_attach">5</property>
+ <property name="width">5</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkBox" id="box">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="margin_left">12</property>
+ <property name="hexpand">False</property>
+ <property name="spacing">6</property>
+ <child>
+ <object class="GladePropertyLabel" id="size_label">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="hexpand">False</property>
+ <property name="property_name">size</property>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">True</property>
+ <property name="position">0</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyShell" id="size_editor">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="hexpand">False</property>
+ <property name="property_name">size</property>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">True</property>
+ <property name="position">1</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GladePropertyShell" id="use_symbolic_editor">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="hexpand">True</property>
+ <property name="property_name">use-symbolic</property>
+ <property name="editor_type">GladeEpropCheck</property>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">True</property>
+ <property name="position">2</property>
+ </packing>
+ </child>
+ </object>
+ <packing>
+ <property name="left_attach">0</property>
+ <property name="top_attach">6</property>
+ <property name="width">5</property>
+ <property name="height">1</property>
+ </packing>
+ </child>
+ <child>
+ <placeholder/>
+ </child>
+ <child>
+ <placeholder/>
+ </child>
+ <child>
+ <placeholder/>
+ </child>
+ <child>
+ <placeholder/>
+ </child>
+ <child>
+ <placeholder/>
+ </child>
+ <child>
+ <placeholder/>
+ </child>
+ <child>
+ <placeholder/>
+ </child>
+ <child>
+ <placeholder/>
+ </child>
+ <child>
+ <placeholder/>
+ </child>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">True</property>
+ <property name="position">0</property>
+ </packing>
+ </child>
+ </object>
+ </child>
+ <child-editors>
+ <editor id="orientation_label"/>
+ <editor id="orientation_editor"/>
+ <editor id="adj_label"/>
+ <editor id="adj_editor"/>
+ <editor id="value_label"/>
+ <editor id="value_editor"/>
+ <editor id="icons_label"/>
+ <editor id="icons_editor"/>
+ <editor id="size_label"/>
+ <editor id="size_editor"/>
+ <editor id="use_symbolic_editor"/>
+ </child-editors>
+ </template>
+</interface>
diff --git a/plugins/gtk+/gtk+.xml.in b/plugins/gtk+/gtk+.xml.in
index c139db5..ad840d1 100644
--- a/plugins/gtk+/gtk+.xml.in
+++ b/plugins/gtk+/gtk+.xml.in
@@ -1369,13 +1369,18 @@ embedded in another object</_tooltip>
<glade-widget-class name="GtkScaleButton" generic-name="scalebutton" _title="Scale Button" since="2.12">
<properties>
- <property id="orientation" since="2.14"/>
-
- <!-- These props dont apply to scale buttons -->
- <property id="glade-type" disabled="True"/>
- <property id="label" disabled="True"/>
- <property id="use-underline" disabled="True"/>
- <property id="stock" disabled="True"/>
+ <property id="orientation" custom-layout="True"/>
+ <property id="size" custom-layout="True"/>
+ <property id="adjustment" custom-layout="True"/>
+ <property id="value" custom-layout="True"/>
+ <property id="icons" custom-layout="True">
+ <_tooltip>The names of the icons to be used by the scale button.
+The first item in the array will be used in the button
+when the current value is the lowest value, the second
+item for the highest value. All the subsequent icons will
+be used for all the other values, spread evenly over the
+range of values</_tooltip>
+ </property>
</properties>
<internal-children>
@@ -1387,7 +1392,7 @@ embedded in another object</_tooltip>
<glade-widget-class name="GtkVolumeButton" generic-name="volumebutton" _title="Volume Button">
<properties>
- <property id="use-symbolic" since="3.0"/>
+ <property id="use-symbolic" since="3.0" custom-layout="True"/>
</properties>
</glade-widget-class>
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 6e442da..b7316f6 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -137,13 +137,14 @@ plugins/gtk+/glade-label-editor.c
plugins/gtk+/glade-message-dialog-editor.c
plugins/gtk+/glade-model-data.c
plugins/gtk+/glade-notebook-editor.c
-plugins/gtk+/glade-spin-button-editor.c
plugins/gtk+/glade-recent-action-editor.c
plugins/gtk+/glade-recent-chooser-dialog-editor.c
plugins/gtk+/glade-recent-chooser-editor.c
plugins/gtk+/glade-recent-chooser-menu-editor.c
plugins/gtk+/glade-recent-chooser-widget-editor.c
+plugins/gtk+/glade-scale-button-editor.c
plugins/gtk+/glade-scrolled-window-editor.c
+plugins/gtk+/glade-spin-button-editor.c
plugins/gtk+/glade-store-editor.c
plugins/gtk+/glade-string-list.c
plugins/gtk+/glade-tool-button-editor.c
@@ -171,13 +172,14 @@ plugins/gtk+/gtk+.xml.in
[type: gettext/glade]plugins/gtk+/glade-label-editor.ui
[type: gettext/glade]plugins/gtk+/glade-message-dialog-editor.ui
[type: gettext/glade]plugins/gtk+/glade-notebook-editor.ui
-[type: gettext/glade]plugins/gtk+/glade-spin-button-editor.ui
[type: gettext/glade]plugins/gtk+/glade-recent-action-editor.ui
[type: gettext/glade]plugins/gtk+/glade-recent-chooser-dialog-editor.ui
[type: gettext/glade]plugins/gtk+/glade-recent-chooser-editor.ui
[type: gettext/glade]plugins/gtk+/glade-recent-chooser-menu-editor.ui
[type: gettext/glade]plugins/gtk+/glade-recent-chooser-widget-editor.ui
+[type: gettext/glade]plugins/gtk+/glade-scale-button-editor.ui
[type: gettext/glade]plugins/gtk+/glade-scrolled-window-editor.ui
+[type: gettext/glade]plugins/gtk+/glade-spin-button-editor.ui
[type: gettext/glade]plugins/gtk+/glade-tool-button-editor.ui
[type: gettext/glade]plugins/gtk+/glade-widget-editor.ui
[type: gettext/glade]plugins/gtk+/glade-window-editor.ui
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]