Code

Change CMS preference widgets to not expand
[inkscape.git] / src / sp-fespotlight.h
index d0b04250f20b3532fa131f96b0a836c7e99d9b62..d48cf6daa73ba5f22385135e7a12f9d6cc0c7408 100644 (file)
@@ -33,20 +33,28 @@ struct SPFeSpotLight : public SPObject {
 
     /** x coordinate of the light source */
     gfloat x; 
+    guint x_set : 1;
     /** y coordinate of the light source */
     gfloat y; 
+    guint y_set : 1;
     /** z coordinate of the light source */
     gfloat z; 
+    guint z_set : 1;
     /** x coordinate of the point the source is pointing at */
     gfloat pointsAtX;
+    guint pointsAtX_set : 1;
     /** y coordinate of the point the source is pointing at */
     gfloat pointsAtY;
+    guint pointsAtY_set : 1;
     /** z coordinate of the point the source is pointing at */
     gfloat pointsAtZ;
+    guint pointsAtZ_set : 1;
     /** specular exponent (focus of the light) */
     gfloat specularExponent;
+    guint specularExponent_set : 1;
     /** limiting cone angle */
     gfloat limitingConeAngle;
+    guint limitingConeAngle_set : 1;
     //other fields
 };