aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlecoanet2000-05-26 08:14:47 +0000
committerlecoanet2000-05-26 08:14:47 +0000
commit209deb7ffa30a6826df82015384c7e671cfe0427 (patch)
tree4ec13cae6ac088ac0742ad1a0b8d2077c4f0b188
parent4b9cae628e8c06d106948c4fe5af96bb1138e8b6 (diff)
downloadtkzinc-209deb7ffa30a6826df82015384c7e671cfe0427.zip
tkzinc-209deb7ffa30a6826df82015384c7e671cfe0427.tar.gz
tkzinc-209deb7ffa30a6826df82015384c7e671cfe0427.tar.bz2
tkzinc-209deb7ffa30a6826df82015384c7e671cfe0427.tar.xz
Modif de la structure de classe pour l'ajout des nouvelles m�thodes.
-rw-r--r--Bezier.c5
-rw-r--r--generic/Arc.c5
-rw-r--r--generic/Icon.c5
-rw-r--r--generic/Map.c5
-rw-r--r--generic/Rectangle.c5
-rw-r--r--generic/Reticle.c5
-rw-r--r--generic/Tabular.c5
7 files changed, 35 insertions, 0 deletions
diff --git a/Bezier.c b/Bezier.c
index b966593..5ad1230 100644
--- a/Bezier.c
+++ b/Bezier.c
@@ -1125,6 +1125,11 @@ static ItemClassStruct BEZIER_ITEM_CLASS = {
NULL,
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Arc.c b/generic/Arc.c
index 3fab559..917eb0a 100644
--- a/generic/Arc.c
+++ b/generic/Arc.c
@@ -1629,6 +1629,11 @@ static ItemClassStruct ARC_ITEM_CLASS = {
NULL, /* GetAnchor */
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Icon.c b/generic/Icon.c
index 7a89753..140143c 100644
--- a/generic/Icon.c
+++ b/generic/Icon.c
@@ -757,6 +757,11 @@ static ItemClassStruct ICON_ITEM_CLASS = {
GetAnchor,
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Map.c b/generic/Map.c
index 37b3531..66587ea 100644
--- a/generic/Map.c
+++ b/generic/Map.c
@@ -1386,6 +1386,11 @@ static ItemClassStruct MAP_ITEM_CLASS = {
NULL, /* GetAnchor */
NULL, /* GetClipVertices */
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Rectangle.c b/generic/Rectangle.c
index b1be39f..c85dc98 100644
--- a/generic/Rectangle.c
+++ b/generic/Rectangle.c
@@ -849,6 +849,11 @@ static ItemClassStruct RECTANGLE_ITEM_CLASS = {
NULL, /* GetAnchor */
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Reticle.c b/generic/Reticle.c
index ebc97d6..6777182 100644
--- a/generic/Reticle.c
+++ b/generic/Reticle.c
@@ -484,6 +484,11 @@ static ItemClassStruct RETICLE_ITEM_CLASS = {
NULL, /* GetAnchor */
NULL, /* GetClipVertices */
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,
diff --git a/generic/Tabular.c b/generic/Tabular.c
index 6f40926..2c91706 100644
--- a/generic/Tabular.c
+++ b/generic/Tabular.c
@@ -513,6 +513,11 @@ static ItemClassStruct TABULAR_ITEM_CLASS = {
GetAnchor,
GetClipVertices,
Coords,
+ NULL, /* InsertChars */
+ NULL, /* DeleteChars */
+ NULL, /* Cursor */
+ NULL, /* Index */
+ NULL, /* Selection */
NULL, /* Contour */
ComputeCoordinates,
ToArea,