Mercurial > hg > octave-jordi
diff src/graphics.h.in @ 6890:b2b7526a5772
[project @ 2007-09-12 20:14:35 by jwe]
author | jwe |
---|---|
date | Wed, 12 Sep 2007 20:14:35 +0000 |
parents | 94bda6abc224 |
children | c78e454ab599 |
line wrap: on
line diff
--- a/src/graphics.h.in +++ b/src/graphics.h.in @@ -36,6 +36,7 @@ #include <set> #include <string> +#include "gripes.h" #include "oct-map.h" #include "ov.h" @@ -915,6 +916,11 @@ base_properties& get_properties (void) { return xproperties; } + void defaults (void) const + { + gripe_not_implemented ("root_figure::defaults"); + } + bool valid_object (void) const { return true; } private: @@ -1049,6 +1055,8 @@ base_properties& get_properties (void) { return xproperties; } + void defaults (void) const { gripe_not_implemented ("figure::defaults"); } + bool valid_object (void) const { return true; } private: @@ -1227,6 +1235,8 @@ base_properties& get_properties (void) { return xproperties; } + void defaults (void) const { gripe_not_implemented ("axes::defaults"); } + bool valid_object (void) const { return true; } private: @@ -1332,6 +1342,8 @@ base_properties& get_properties (void) { return xproperties; } + void defaults (void) const { gripe_not_implemented ("line::defaults"); } + bool valid_object (void) const { return true; } }; @@ -1366,7 +1378,7 @@ octave_value position octave_value rotation octave_value horizontalalignment - octave_value color + color_property color END_PROPERTIES static std::string go_name; @@ -1425,6 +1437,8 @@ base_properties& get_properties (void) { return xproperties; } + void defaults (void) const { gripe_not_implemented ("text::defaults"); } + bool valid_object (void) const { return true; } }; @@ -1515,6 +1529,8 @@ base_properties& get_properties (void) { return xproperties; } + void defaults (void) const { gripe_not_implemented ("image::defaults"); } + bool valid_object (void) const { return true; } }; @@ -1615,6 +1631,8 @@ base_properties& get_properties (void) { return xproperties; } + void defaults (void) const { gripe_not_implemented ("patch::defaults"); } + bool valid_object (void) const { return true; } }; @@ -1706,6 +1724,8 @@ base_properties& get_properties (void) { return xproperties; } + void defaults (void) const { gripe_not_implemented ("surface::defaults"); } + bool valid_object (void) const { return true; } };