<interface>
<requires lib="gtk+" version="2.16"/>
<!-- interface-naming-policy project-wide -->
+ <object class="GtkTreeStore" id="tstore_fields">
+ <columns>
+ <!-- column-name name -->
+ <column type="gchararray"/>
+ <!-- column-name name_visible -->
+ <column type="gchararray"/>
+ </columns>
+ </object>
+ <object class="GtkListStore" id="lstore_show">
+ <columns>
+ <!-- column-name name -->
+ <column type="gchararray"/>
+ <!-- column-name name_visible -->
+ <column type="gchararray"/>
+ </columns>
+ </object>
+ <object class="GtkListStore" id="lstore_order">
+ <columns>
+ <!-- column-name name -->
+ <column type="gchararray"/>
+ <!-- column-name name_visible -->
+ <column type="gchararray"/>
+ <!-- column-name order -->
+ <column type="gchararray"/>
+ </columns>
+ </object>
+ <object class="GtkTreeStore" id="tstore_where">
+ <columns>
+ <!-- column-name name -->
+ <column type="gchararray"/>
+ <!-- column-name name_visible -->
+ <column type="gchararray"/>
+ <!-- column-name condition_not -->
+ <column type="gboolean"/>
+ <!-- column-name condition_type -->
+ <column type="guint"/>
+ <!-- column-name condition_type_visible -->
+ <column type="gchararray"/>
+ <!-- column-name condition_from -->
+ <column type="gchararray"/>
+ <!-- column-name condition_to -->
+ <column type="gchararray"/>
+ </columns>
+ </object>
<object class="GtkDialog" id="dialog1">
<property name="border_width">5</property>
<property name="type_hint">normal</property>
- <property name="has_separator">False</property>
<child internal-child="vbox">
<object class="GtkVBox" id="dialog-vbox1">
<property name="visible">True</property>
</child>
</object>
</child>
+ <child>
+ <object class="GtkTreeViewColumn" id="treeviewcolumn9">
+ <property name="title">Not</property>
+ <child>
+ <object class="GtkCellRendererToggle" id="cellrenderertoggle1"/>
+ <attributes>
+ <attribute name="active">2</attribute>
+ </attributes>
+ </child>
+ </object>
+ </child>
<child>
<object class="GtkTreeViewColumn" id="treeviewcolumn6">
<property name="title">Type</property>
<child>
<object class="GtkCellRendererText" id="cellrenderertext6"/>
<attributes>
- <attribute name="text">3</attribute>
+ <attribute name="text">4</attribute>
</attributes>
</child>
</object>
<child>
<object class="GtkCellRendererText" id="cellrenderertext7"/>
<attributes>
- <attribute name="text">4</attribute>
+ <attribute name="text">5</attribute>
</attributes>
</child>
</object>
<child>
<object class="GtkCellRendererText" id="cellrenderertext8"/>
<attributes>
- <attribute name="text">5</attribute>
+ <attribute name="text">6</attribute>
</attributes>
</child>
</object>
<action-widget response="2">button2</action-widget>
</action-widgets>
</object>
- <object class="GtkTreeStore" id="tstore_fields">
- <columns>
- <!-- column-name name -->
- <column type="gchararray"/>
- <!-- column-name name_visible -->
- <column type="gchararray"/>
- </columns>
- </object>
- <object class="GtkListStore" id="lstore_show">
- <columns>
- <!-- column-name name -->
- <column type="gchararray"/>
- <!-- column-name name_visible -->
- <column type="gchararray"/>
- </columns>
- </object>
- <object class="GtkListStore" id="lstore_order">
- <columns>
- <!-- column-name name -->
- <column type="gchararray"/>
- <!-- column-name name_visible -->
- <column type="gchararray"/>
- <!-- column-name order -->
- <column type="gchararray"/>
- </columns>
- </object>
- <object class="GtkTreeStore" id="tstore_where">
- <columns>
- <!-- column-name name -->
- <column type="gchararray"/>
- <!-- column-name name_visible -->
- <column type="gchararray"/>
- <!-- column-name condition_type -->
- <column type="guint"/>
- <!-- column-name condition_type_visible -->
- <column type="gchararray"/>
- <!-- column-name condition_from -->
- <column type="gchararray"/>
- <!-- column-name condition_to -->
- <column type="gchararray"/>
- </columns>
- </object>
</interface>
GtkWidget *gdaex_query_editor_get_widget (GdaExQueryEditor *gdaex_query_editor);
+typedef struct
+ {
+ gchar *name;
+ gchar *name_visible;
+ /* - tipo di campo (stringa, interno, double, date, datetime) */
+ /* - sempre presente nelle query, quindi non sceglibile per la parte show */
+ /* - sceglibile per la parte where */
+ /* - condizioni where che è possibile applicare (es. i campi id_* non ha senso che abbiano un between, */
+ /* ma ci deve essere la possibilità di fare ricerche anche sulle decodifiche) */
+ } GdaExQueryEditorField;
+
+gboolean gdaex_query_editor_add_table (GdaExQueryEditor *qe, const gchar *table_name, const gchar *table_name_visibile);
+gboolean gdaex_query_editor_table_add_field (GdaExQueryEditor *qe, const gchar *table_name, GdaExQueryEditorField field);
+gboolean gdaex_query_editor_add_relation (GdaExQueryEditor *qe,
+ const gchar *table_name1, GdaExQueryEditorField field1,
+ const gchar *table_name2, GdaExQueryEditorField field2);
+
+const gchar *gdaex_query_editor_get_sql (GdaExQueryEditor *qe);
+
G_END_DECLS