Mercurial > hg > octave-nkf
diff doc/module.mk @ 20804:3af34e1ef330
Preliminary inclusion of uixx objects properties in the manual (bug #46076)
* doc/interpreter/genpropdoc.m: add uixx objects to the list of supported graphics objects
* doc/interpreter/genpropdoc.m (get_doc): add uixx objects and their specific properties (currently empty documentation)
* doc/interpreter/plot.txi("Interacting with Plots"): add a note and a reference about ui* family of functions.
* doc/interpreter/plot.txi("Interacting with Plots"): for consistency, remove "uimenu" reference. All the other uixx are already in the gui section
* doc/interpreter/plot.txi("graphics data structure"): add uixx objects
* doc/interpreter/gui.txi("UI Elements"): add "uimenu" function reference
* doc/module.mk: add rules to build uixx properties texi files.
* graphics.in.h: make uixx "__object__" property (Octave internal) hidden so that it does not appear in the documentation.
author | Pantxo Diribarne <pantxo.diribarne@gmail.com> |
---|---|
date | Fri, 09 Oct 2015 16:25:27 +0200 (2015-10-09) |
parents | ea85f96dd0ae |
children |
line wrap: on
line diff
--- a/doc/module.mk +++ b/doc/module.mk @@ -59,7 +59,14 @@ doc/interpreter/plot-patchproperties.texi \ doc/interpreter/plot-rootproperties.texi \ doc/interpreter/plot-surfaceproperties.texi \ - doc/interpreter/plot-textproperties.texi + doc/interpreter/plot-textproperties.texi \ + doc/interpreter/plot-uimenuproperties.texi \ + doc/interpreter/plot-uicontextmenuproperties.texi \ + doc/interpreter/plot-uipanelproperties.texi \ + doc/interpreter/plot-uicontrolproperties.texi \ + doc/interpreter/plot-uitoolbarproperties.texi \ + doc/interpreter/plot-uipushtoolproperties.texi \ + doc/interpreter/plot-uitoggletoolproperties.texi $(GRAPH_PROP_TEXI_SRC): | $(OCTAVE_INTERPRETER_TARGETS) @@ -93,6 +100,27 @@ doc/interpreter/plot-textproperties.texi: doc/interpreter/genpropdoc.m $(AM_V_GEN)$(call gen-propdoc-texi,text) +doc/interpreter/plot-uimenuproperties.texi: doc/interpreter/genpropdoc.m + $(AM_V_GEN)$(call gen-propdoc-texi,uimenu) + +doc/interpreter/plot-uicontextmenuproperties.texi: doc/interpreter/genpropdoc.m + $(AM_V_GEN)$(call gen-propdoc-texi,uicontextmenu) + +doc/interpreter/plot-uipanelproperties.texi: doc/interpreter/genpropdoc.m + $(AM_V_GEN)$(call gen-propdoc-texi,uipanel) + +doc/interpreter/plot-uicontrolproperties.texi: doc/interpreter/genpropdoc.m + $(AM_V_GEN)$(call gen-propdoc-texi,uicontrol) + +doc/interpreter/plot-uitoolbarproperties.texi: doc/interpreter/genpropdoc.m + $(AM_V_GEN)$(call gen-propdoc-texi,uitoolbar) + +doc/interpreter/plot-uipushtoolproperties.texi: doc/interpreter/genpropdoc.m + $(AM_V_GEN)$(call gen-propdoc-texi,uipushtool) + +doc/interpreter/plot-uitoggletoolproperties.texi: doc/interpreter/genpropdoc.m + $(AM_V_GEN)$(call gen-propdoc-texi,uitoggletool) + dist_man_MANS = \ doc/interpreter/mkoctfile.1 \ doc/interpreter/octave-cli.1 \