<column type="gchararray"/>
<!-- column-name order -->
<column type="gchararray"/>
+ <!-- column-name order_visible -->
+ <column type="gchararray"/>
</columns>
</object>
<object class="GtkListStore" id="lstore_show">
<property name="can_focus">False</property>
<property name="orientation">vertical</property>
<property name="spacing">5</property>
+ <property name="homogeneous">True</property>
<property name="layout_style">start</property>
<child>
<object class="GtkButton" id="button3">
<property name="can_focus">False</property>
<property name="orientation">vertical</property>
<property name="spacing">5</property>
+ <property name="homogeneous">True</property>
<property name="layout_style">start</property>
<child>
<object class="GtkButton" id="button7">
<child>
<object class="GtkCellRendererText" id="cellrenderertext4"/>
<attributes>
- <attribute name="text">3</attribute>
+ <attribute name="text">4</attribute>
</attributes>
</child>
</object>
<property name="can_focus">False</property>
<property name="orientation">vertical</property>
<property name="spacing">5</property>
+ <property name="homogeneous">True</property>
<property name="layout_style">start</property>
<child>
<object class="GtkButton" id="button11">
COL_ORDER_TABLE_NAME,
COL_ORDER_NAME,
COL_ORDER_VISIBLE_NAME,
- COL_ORDER_ORDER
+ COL_ORDER_ORDER,
+ COL_ORDER_ORDER_VISIBLE
};
static void
gchar *asc_desc;
asc_desc = xmlGetProp (node_field, "asc_desc");
- if (g_strcmp0 (asc_desc, _("ASC")) == 0
- || g_strcmp0 (asc_desc, _("DESC")) == 0)
+ if (g_strcmp0 (asc_desc, "ASC") == 0
+ || g_strcmp0 (asc_desc, "DESC") == 0)
{
gtk_list_store_append (priv->lstore_order, &iter);
gtk_list_store_set (priv->lstore_order, &iter,
COL_ORDER_NAME, field_name,
COL_ORDER_VISIBLE_NAME, name_visible,
COL_ORDER_ORDER, asc_desc,
+ COL_ORDER_ORDER_VISIBLE, g_strcmp0 (asc_desc, "ASC") == 0 ? _("Ascending") : _("Descending"),
-1);
}
}
gchar *val1;
gchar *val2;
gchar *asc_desc;
+ gchar *asc_desc_visible;
qe = (GdaExQueryEditor *)user_data;
priv = GDAEX_QUERY_EDITOR_GET_PRIVATE (qe);
{
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->opt_asc)))
{
- asc_desc = g_strdup (_("ASC"));
+ asc_desc = g_strdup ("ASC");
+ asc_desc_visible = g_strdup (_("Ascending"));
}
else
{
- asc_desc = g_strdup (_("DESC"));
+ asc_desc = g_strdup ("DESC");
+ asc_desc_visible = g_strdup (_("Descending"));
}
gtk_list_store_set (priv->lstore_order, &iter,
COL_ORDER_ORDER, asc_desc,
+ COL_ORDER_ORDER_VISIBLE, asc_desc_visible,
-1);
gtk_tree_selection_unselect_all (priv->sel_order);
}
g_free (asc_desc);
+ g_free (asc_desc_visible);
g_free (val1);
g_free (val2);
COL_ORDER_NAME, field_name,
COL_ORDER_VISIBLE_NAME, g_strconcat (table->name_visible, " - ", field->name_visible, NULL),
COL_ORDER_ORDER, "ASC",
+ COL_ORDER_ORDER_VISIBLE, _("Ascending"),
-1);
wpage = gtk_notebook_get_nth_page (GTK_NOTEBOOK (priv->notebook), GDAEX_QE_PAGE_ORDER);