]> matita.cs.unibo.it Git - helm.git/commitdiff
* IDL file update (and renamed)
authorLuca Padovani <luca.padovani@unito.it>
Mon, 8 Sep 2003 19:59:22 +0000 (19:59 +0000)
committerLuca Padovani <luca.padovani@unito.it>
Mon, 8 Sep 2003 19:59:22 +0000 (19:59 +0000)
helm/gtkmathview-bonobo/idl/GNOME_GtkMathView_View.idl [deleted file]
helm/gtkmathview-bonobo/idl/GtkMathView.idl [new file with mode: 0644]
helm/gtkmathview-bonobo/idl/Makefile.am

diff --git a/helm/gtkmathview-bonobo/idl/GNOME_GtkMathView_View.idl b/helm/gtkmathview-bonobo/idl/GNOME_GtkMathView_View.idl
deleted file mode 100644 (file)
index b014289..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-
-#include <Bonobo.idl>
-
-module GNOME {
-
-  module GtkMathView {
-
-    typedef string element_id;
-
-    interface View : Bonobo::Unknown {
-      
-      /**
-        * load:
-       * @uri: URI of a MathML document
-       *
-       * Loads the document at the specified URI in the component
-       * and displays it. If the load is successful returns @TRUE,
-       * @FALSE otherwise.
-       */
-      boolean load (in string uri);
-
-      /**
-       * unload:
-       *
-       * Unload any loaded document from the component
-       */
-      void unload ();
-
-      /**
-        * freeze:
-       *
-       * Freezes the component. Any modification to the document is
-       * not reflected by the view.
-       */
-      void freeze ();
-
-      /**
-        * thaw:
-       *
-       * Thaws the component. If the document was changed while the
-       * component was frozen, the view is updated.
-       */
-      void thaw ();
-
-      void setIdAttribute (in string ns, in string name);
-      void getIdAttribute (out string ns, out string name);
-
-      void select (in element_id elem);
-      void unselect (in element_id elem);
-      boolean isSelected (in element_id elem);
-
-      /**
-        * elementRectangle:
-       * @elem: ID of the element
-       * @x: x coordinate of the element
-       * @y: y coordinate of the element
-       * @width: width of the element
-       * @height: height of the element
-       *
-       * Returns the position and the size of the rectangle includes @elem
-       */
-      boolean elementRectangle (in element_id elem,
-                               out short x, out short y,
-                               out short width, out short height);
-
-      void getSize (out short width, out short height,
-                   out short totalWidth, out short totalHeight);
-
-      void getTop (out short x, out short y);
-      void setTop (in short x, in short y);
-
-      void setDefaultFontSize (in short size);
-      short getDefaultFontSize ();
-
-      void setVerbosity (in short level);
-      short getVerbosity ();
-
-    };
-
-  };
-
-};
-
diff --git a/helm/gtkmathview-bonobo/idl/GtkMathView.idl b/helm/gtkmathview-bonobo/idl/GtkMathView.idl
new file mode 100644 (file)
index 0000000..8c850f7
--- /dev/null
@@ -0,0 +1,85 @@
+
+#include <Bonobo.idl>
+
+module GNOME {
+
+  module GtkMathView {
+
+    typedef string element_id;
+
+    interface View : Bonobo::Unknown {
+      
+      /**
+        * load:
+       * @uri: URI of a MathML document
+       *
+       * Loads the document at the specified URI in the component
+       * and displays it. If the load is successful returns @TRUE,
+       * @FALSE otherwise.
+       */
+      boolean load (in string uri);
+
+      /**
+       * unload:
+       *
+       * Unload any loaded document from the component
+       */
+      void unload ();
+
+      /**
+        * freeze:
+       *
+       * Freezes the component. Any modification to the document is
+       * not reflected by the view.
+       */
+      void freeze ();
+
+      /**
+        * thaw:
+       *
+       * Thaws the component. If the document was changed while the
+       * component was frozen, the view is updated.
+       */
+      void thaw ();
+
+      void setIdAttribute (in string ns, in string name);
+      void getIdAttribute (out string ns, out string name);
+
+      void select (in element_id elem);
+      void unselect (in element_id elem);
+      boolean isSelected (in element_id elem);
+
+      /**
+        * elementRectangle:
+       * @elem: ID of the element
+       * @x: x coordinate of the element
+       * @y: y coordinate of the element
+       * @width: width of the element
+       * @height: height of the element
+       *
+       * Returns the position and the size of the rectangle includes @elem
+       */
+      boolean elementBoundingBox (in element_id elem,
+                                 out short x, out short y,
+                                 out short width, out short height, out short depth);
+
+      void getBoundingBox (out short width, out short height, out short depth);
+
+      void getSize (out short width, out short height,
+                   out short totalWidth, out short totalHeight);
+
+      void getTop (out short x, out short y);
+      void setTop (in short x, in short y);
+
+      void setDefaultFontSize (in short size);
+      short getDefaultFontSize ();
+
+      void setVerbosity (in short level);
+      short getVerbosity ();
+
+    };
+
+  };
+
+};
+
index 1f58393098068341f42b81e43a53012290fe7374..14555d1e3fa4bcfdf714f4b78c57fd1871bd3571 100644 (file)
@@ -1,5 +1,5 @@
 
 idldir = $(datadir)/idl/bonobo-2.0
-idl_DATA = GNOME_GtkMathView_View.idl
+idl_DATA = GtkMathView.idl
 
 EXTRA_DIST = $(idl_DATA)