aboutsummaryrefslogtreecommitdiff
path: root/generic/Group.h
diff options
context:
space:
mode:
authorlecoanet2002-04-08 13:46:42 +0000
committerlecoanet2002-04-08 13:46:42 +0000
commit737920a9203af23d93d9c8352737b93651392776 (patch)
tree624ea9f045e7844c1d09e1e047c789b1accaa7f0 /generic/Group.h
parenta29924752c636cd1777747fe532398e687e08f49 (diff)
downloadtkzinc-737920a9203af23d93d9c8352737b93651392776.zip
tkzinc-737920a9203af23d93d9c8352737b93651392776.tar.gz
tkzinc-737920a9203af23d93d9c8352737b93651392776.tar.bz2
tkzinc-737920a9203af23d93d9c8352737b93651392776.tar.xz
*** empty log message ***
Diffstat (limited to 'generic/Group.h')
-rw-r--r--generic/Group.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/generic/Group.h b/generic/Group.h
new file mode 100644
index 0000000..de81eaf
--- /dev/null
+++ b/generic/Group.h
@@ -0,0 +1,45 @@
+/*
+ * Group.h -- Header for Group items.
+ *
+ * Authors : Patrick Lecoanet.
+ * Creation date :
+ *
+ * $Id$
+ */
+
+/*
+ * Copyright (c) 2002 CENA, Patrick Lecoanet --
+ *
+ * This code is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This code is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this code; if not, write to the Free
+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+
+#ifndef _Group_h
+#define _Group_h
+
+
+Item ZnGroupHead(Item group);
+Item ZnGroupTail(Item group);
+ZnBool ZnGroupCallOm(Item group);
+void ZnGroupSetCallOm(Item group, ZnBool set);
+void ZnInsertDependentItem(Item item);
+void ZnExtractDependentItem(Item item);
+void ZnDisconnectDependentItems(Item item);
+void ZnGroupInsertItem(Item group, Item item, Item mark_item, ZnBool before);
+void ZnGroupExtractItem(Item item);
+void ZnGroupRemoveClip(Item group, Item clip);
+
+#endif /* _Group_h */