]> saetta.ns0.it Git - zakaudit/libzakaudit/commitdiff
Started GUI to view changes.
authorAndrea Zagli <azagli@libero.it>
Sun, 24 Nov 2013 19:01:41 +0000 (19:01 +0000)
committerAndrea Zagli <azagli@libero.it>
Sun, 24 Nov 2013 19:01:41 +0000 (19:01 +0000)
12 files changed:
.anjuta_sym_db.db
.gitignore
Makefile.am
configure.ac
data/Makefile.am [new file with mode: 0644]
data/libzakaudit/Makefile.am [new file with mode: 0644]
data/libzakaudit/gui/Makefile.am [new file with mode: 0644]
data/libzakaudit/gui/libzakaudit.ui [new file with mode: 0644]
src/Makefile.am
src/audit.c
src/libzakaudit.h
tests/test1.c

index 783ebc1281815b536b2c14cc73c1aebecd5d4074..0e8be400b96bc735aa7bafbec102562f1b3a63d7 100644 (file)
Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ
index ea19dd680fa050f0097ed6ebb4ac7a682d598a5b..0b5e80fdf787706fcf34588dd51cb0cc16a21843 100644 (file)
@@ -1,3 +1,4 @@
+compile
 INSTALL
 aclocal.m4
 autom4te.cache
index f8d72d8d829a5b313cb2498eb931530110fd53da..a9928bd8be62c96ba9b407fefbbe4a83bd8461b7 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS = src docs tests
+SUBDIRS = src data docs tests
 
 EXTRA_DIST = \
         libzakaudit.pc.in
index e4315e21adfefc13d987f37b8fc639bb1d703cc7..8f5b81557c166fe0629906d4500f354ac8610602 100644 (file)
@@ -45,12 +45,15 @@ AC_STRUCT_TM
 # Checks for library functions.
 
 AC_CONFIG_FILES([
-  libzakaudit.pc
-  Makefile
-  src/Makefile
-  docs/Makefile
-  docs/sql/Makefile
-  tests/Makefile
+       libzakaudit.pc
+       Makefile
+       src/Makefile
+       data/Makefile
+       data/libzakaudit/Makefile
+       data/libzakaudit/gui/Makefile
+       docs/Makefile
+       docs/sql/Makefile
+       tests/Makefile
 ])
 
 AC_OUTPUT
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644 (file)
index 0000000..b931e3a
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = libzakaudit
diff --git a/data/libzakaudit/Makefile.am b/data/libzakaudit/Makefile.am
new file mode 100644 (file)
index 0000000..13c2b3d
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = gui
diff --git a/data/libzakaudit/gui/Makefile.am b/data/libzakaudit/gui/Makefile.am
new file mode 100644 (file)
index 0000000..38a3375
--- /dev/null
@@ -0,0 +1,5 @@
+guidir = $(datadir)/$(PACKAGE)/gui
+
+gui_DATA = libzakaudit.ui
+
+EXTRA_DIST = $(gui_DATA)
diff --git a/data/libzakaudit/gui/libzakaudit.ui b/data/libzakaudit/gui/libzakaudit.ui
new file mode 100644 (file)
index 0000000..b82369b
--- /dev/null
@@ -0,0 +1,138 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+  <requires lib="gtk+" version="2.24"/>
+  <!-- interface-naming-policy project-wide -->
+  <object class="GtkTreeStore" id="tstore_changes">
+    <columns>
+      <!-- column-name id_actions -->
+      <column type="guint"/>
+      <!-- column-name date -->
+      <column type="gchararray"/>
+      <!-- column-name type -->
+      <column type="gchararray"/>
+      <!-- column-name user -->
+      <column type="gchararray"/>
+      <!-- column-name field -->
+      <column type="gchararray"/>
+      <!-- column-name value -->
+      <column type="gchararray"/>
+    </columns>
+  </object>
+  <object class="GtkWindow" id="w_changes">
+    <property name="can_focus">False</property>
+    <property name="modal">True</property>
+    <property name="window_position">center-on-parent</property>
+    <property name="destroy_with_parent">True</property>
+    <child>
+      <object class="GtkVBox" id="vbox1">
+        <property name="visible">True</property>
+        <property name="can_focus">False</property>
+        <property name="border_width">5</property>
+        <property name="spacing">5</property>
+        <child>
+          <object class="GtkScrolledWindow" id="scrolledwindow1">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="hscrollbar_policy">automatic</property>
+            <property name="vscrollbar_policy">automatic</property>
+            <property name="shadow_type">etched-in</property>
+            <child>
+              <object class="GtkTreeView" id="treeview1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="model">tstore_changes</property>
+                <property name="rules_hint">True</property>
+                <child>
+                  <object class="GtkTreeViewColumn" id="treeviewcolumn5">
+                    <property name="title" translatable="yes">Date</property>
+                    <child>
+                      <object class="GtkCellRendererText" id="cellrenderertext5"/>
+                      <attributes>
+                        <attribute name="text">1</attribute>
+                      </attributes>
+                    </child>
+                  </object>
+                </child>
+                <child>
+                  <object class="GtkTreeViewColumn" id="treeviewcolumn1">
+                    <property name="title" translatable="yes">Type</property>
+                    <child>
+                      <object class="GtkCellRendererText" id="cellrenderertext1"/>
+                      <attributes>
+                        <attribute name="text">2</attribute>
+                      </attributes>
+                    </child>
+                  </object>
+                </child>
+                <child>
+                  <object class="GtkTreeViewColumn" id="treeviewcolumn2">
+                    <property name="title" translatable="yes">User</property>
+                    <child>
+                      <object class="GtkCellRendererText" id="cellrenderertext2"/>
+                      <attributes>
+                        <attribute name="text">3</attribute>
+                      </attributes>
+                    </child>
+                  </object>
+                </child>
+                <child>
+                  <object class="GtkTreeViewColumn" id="treeviewcolumn3">
+                    <property name="title" translatable="yes">Field</property>
+                    <child>
+                      <object class="GtkCellRendererText" id="cellrenderertext3"/>
+                      <attributes>
+                        <attribute name="text">4</attribute>
+                      </attributes>
+                    </child>
+                  </object>
+                </child>
+                <child>
+                  <object class="GtkTreeViewColumn" id="treeviewcolumn4">
+                    <property name="title" translatable="yes">Value</property>
+                    <child>
+                      <object class="GtkCellRendererText" id="cellrenderertext4"/>
+                      <attributes>
+                        <attribute name="text">5</attribute>
+                      </attributes>
+                    </child>
+                  </object>
+                </child>
+              </object>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">True</property>
+            <property name="fill">True</property>
+            <property name="position">0</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkHButtonBox" id="hbuttonbox1">
+            <property name="visible">True</property>
+            <property name="can_focus">False</property>
+            <property name="layout_style">end</property>
+            <child>
+              <object class="GtkButton" id="button1">
+                <property name="label">gtk-close</property>
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="receives_default">True</property>
+                <property name="use_stock">True</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="fill">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+            <property name="position">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+  </object>
+</interface>
index a30bbc8466b6750fe130c330e893f21fb7435183..b01b64dc0c278765f9f1ce464d3fc363c873c2e6 100644 (file)
@@ -1,5 +1,8 @@
+guidir = $(datadir)/$(PACKAGE)/gui
+
 AM_CPPFLAGS = $(WARN_CFLAGS) \
            $(DISABLE_DEPRECATED_CFLAGS) \
+           -DGUIDIR=\""$(guidir)"\" \
            -DG_LOG_DOMAIN=\"ZakAudit\" \
            $(LIBZAKAUDIT_CFLAGS)
 
index 8c680bc8fccbbfbfac72c0d3e0b6d6117b8016ae..885c1eb0aaddd64912b9288473b36a5af2f3dc91 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * audit.c
  *
- * Copyright (C) 2005-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2013 Andrea Zagli <azagli@libero.it>
  *
  *  This file is part of libzak_audit.
  *  
index 6ae18789636bb30813df4bce7438472fb40f6ac4..5b3f76d323344cd4b9f92c7126359551141ebcd7 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * libzakaudit.h
  *
- * Copyright (C) 2005-2011 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2013 Andrea Zagli <azagli@libero.it>
  *
  *  This file is part of libzak_audit.
  *  
index 9cd62266c4827fb4eef49c32f59824ae4d7c9677..48e2fb824e76c1cf23ab3a8c09b8246ca2481cb3 100644 (file)
@@ -120,7 +120,6 @@ main (int argc, char *argv[])
        gda_connection_statement_execute_non_select (conn, stmt, NULL, NULL, NULL);
        zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_AFTER_UPDATE, "I", "audit_test1", stmt);
 
-
        stmt = gda_sql_parser_parse_string (parser, "DELETE FROM test1 WHERE id = 2", NULL, NULL);
        if (stmt == NULL)
                {