* data/glade/object-editor.glade:
Added dummy page to notebook, to prevent shadow page from
becoming the default current page at creation.
* src/view-box.c: (construct_properties_editor):
* src/view-ellipse.c: (construct_properties_editor):
* src/view-line.c: (construct_properties_editor):
* src/view-text.c: (construct_properties_editor):
Reconciled order of params.
git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@609
f5e0f49d-192f-0410-a22d-
a8d8700d0965
+2007-01-25 Jim Evins <evins@snaught.com>
+
+ * data/glade/object-editor.glade:
+ Added dummy page to notebook, to prevent shadow page from
+ becoming the default current page at creation.
+ * src/view-box.c: (construct_properties_editor):
+ * src/view-ellipse.c: (construct_properties_editor):
+ * src/view-line.c: (construct_properties_editor):
+ * src/view-text.c: (construct_properties_editor):
+ Reconciled order of params.
+
2007-01-19 Jim Evins <evins@snaught.com>
* src/label-barcode.h:
<property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
<property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
<property name="focus_on_map">True</property>
+ <property name="urgency_hint">False</property>
<property name="has_separator">True</property>
<child internal-child="vbox">
<property name="action">GTK_FILE_CHOOSER_ACTION_OPEN</property>
<property name="local_only">True</property>
<property name="show_hidden">False</property>
+ <property name="do_overwrite_confirmation">False</property>
<property name="width_chars">-1</property>
</widget>
<packing>
<property name="type">tab</property>
</packing>
</child>
+
+ <child>
+ <widget class="GtkVBox" id="dummy_vbox">
+ <property name="visible">True</property>
+ <property name="homogeneous">False</property>
+ <property name="spacing">0</property>
+
+ <child>
+ <placeholder/>
+ </child>
+ </widget>
+ <packing>
+ <property name="tab_expand">False</property>
+ <property name="tab_fill">True</property>
+ </packing>
+ </child>
+
+ <child>
+ <widget class="GtkLabel" id="dummy_page">
+ <property name="visible">True</property>
+ <property name="label" translatable="yes">label48</property>
+ <property name="use_underline">False</property>
+ <property name="use_markup">False</property>
+ <property name="justify">GTK_JUSTIFY_LEFT</property>
+ <property name="wrap">False</property>
+ <property name="selectable">False</property>
+ <property name="xalign">0.5</property>
+ <property name="yalign">0.5</property>
+ <property name="xpad">0</property>
+ <property name="ypad">0</property>
+ <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+ <property name="width_chars">-1</property>
+ <property name="single_line_mode">False</property>
+ <property name="angle">0</property>
+ </widget>
+ <packing>
+ <property name="type">tab</property>
+ </packing>
+ </child>
</widget>
<packing>
<property name="padding">0</property>
/* Build editor. */
editor = gl_object_editor_new (GL_STOCK_BOX, _("Box object properties"),
+ GL_OBJECT_EDITOR_SHADOW_PAGE,
GL_OBJECT_EDITOR_POSITION_PAGE,
GL_OBJECT_EDITOR_SIZE_PAGE,
GL_OBJECT_EDITOR_FILL_PAGE,
GL_OBJECT_EDITOR_LINE_PAGE,
- GL_OBJECT_EDITOR_SHADOW_PAGE,
0);
/* Update */
/* Build editor. */
editor = gl_object_editor_new (GL_STOCK_ELLIPSE, _("Ellipse object properties"),
+ GL_OBJECT_EDITOR_SHADOW_PAGE,
GL_OBJECT_EDITOR_POSITION_PAGE,
GL_OBJECT_EDITOR_SIZE_PAGE,
GL_OBJECT_EDITOR_FILL_PAGE,
GL_OBJECT_EDITOR_LINE_PAGE,
- GL_OBJECT_EDITOR_SHADOW_PAGE,
0);
/* Update */
/* Build editor. */
editor = gl_object_editor_new (GL_STOCK_LINE, _("Line object properties"),
+ GL_OBJECT_EDITOR_SHADOW_PAGE,
GL_OBJECT_EDITOR_POSITION_PAGE,
GL_OBJECT_EDITOR_SIZE_LINE_PAGE,
GL_OBJECT_EDITOR_LINE_PAGE,
- GL_OBJECT_EDITOR_SHADOW_PAGE,
0);
/* Update */
/* Build editor. */
editor = gl_object_editor_new (GL_STOCK_TEXT, _("Text object properties"),
+ GL_OBJECT_EDITOR_SHADOW_PAGE,
GL_OBJECT_EDITOR_POSITION_PAGE,
GL_OBJECT_EDITOR_SIZE_PAGE,
GL_OBJECT_EDITOR_TEXT_PAGE,
GL_OBJECT_EDITOR_EDIT_PAGE,
- GL_OBJECT_EDITOR_SHADOW_PAGE,
0);
buffer = gl_label_text_get_buffer (GL_LABEL_TEXT(object));