comparison doc/module.mk @ 20628: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
parents ea85f96dd0ae
children
comparison
equal deleted inserted replaced
20627:56333f6df823 20628:3af34e1ef330
57 doc/interpreter/plot-imageproperties.texi \ 57 doc/interpreter/plot-imageproperties.texi \
58 doc/interpreter/plot-lineproperties.texi \ 58 doc/interpreter/plot-lineproperties.texi \
59 doc/interpreter/plot-patchproperties.texi \ 59 doc/interpreter/plot-patchproperties.texi \
60 doc/interpreter/plot-rootproperties.texi \ 60 doc/interpreter/plot-rootproperties.texi \
61 doc/interpreter/plot-surfaceproperties.texi \ 61 doc/interpreter/plot-surfaceproperties.texi \
62 doc/interpreter/plot-textproperties.texi 62 doc/interpreter/plot-textproperties.texi \
63 doc/interpreter/plot-uimenuproperties.texi \
64 doc/interpreter/plot-uicontextmenuproperties.texi \
65 doc/interpreter/plot-uipanelproperties.texi \
66 doc/interpreter/plot-uicontrolproperties.texi \
67 doc/interpreter/plot-uitoolbarproperties.texi \
68 doc/interpreter/plot-uipushtoolproperties.texi \
69 doc/interpreter/plot-uitoggletoolproperties.texi
63 70
64 $(GRAPH_PROP_TEXI_SRC): | $(OCTAVE_INTERPRETER_TARGETS) 71 $(GRAPH_PROP_TEXI_SRC): | $(OCTAVE_INTERPRETER_TARGETS)
65 72
66 define gen-propdoc-texi 73 define gen-propdoc-texi
67 rm -f $@-t $@ && \ 74 rm -f $@-t $@ && \
90 doc/interpreter/plot-surfaceproperties.texi: doc/interpreter/genpropdoc.m 97 doc/interpreter/plot-surfaceproperties.texi: doc/interpreter/genpropdoc.m
91 $(AM_V_GEN)$(call gen-propdoc-texi,surface) 98 $(AM_V_GEN)$(call gen-propdoc-texi,surface)
92 99
93 doc/interpreter/plot-textproperties.texi: doc/interpreter/genpropdoc.m 100 doc/interpreter/plot-textproperties.texi: doc/interpreter/genpropdoc.m
94 $(AM_V_GEN)$(call gen-propdoc-texi,text) 101 $(AM_V_GEN)$(call gen-propdoc-texi,text)
102
103 doc/interpreter/plot-uimenuproperties.texi: doc/interpreter/genpropdoc.m
104 $(AM_V_GEN)$(call gen-propdoc-texi,uimenu)
105
106 doc/interpreter/plot-uicontextmenuproperties.texi: doc/interpreter/genpropdoc.m
107 $(AM_V_GEN)$(call gen-propdoc-texi,uicontextmenu)
108
109 doc/interpreter/plot-uipanelproperties.texi: doc/interpreter/genpropdoc.m
110 $(AM_V_GEN)$(call gen-propdoc-texi,uipanel)
111
112 doc/interpreter/plot-uicontrolproperties.texi: doc/interpreter/genpropdoc.m
113 $(AM_V_GEN)$(call gen-propdoc-texi,uicontrol)
114
115 doc/interpreter/plot-uitoolbarproperties.texi: doc/interpreter/genpropdoc.m
116 $(AM_V_GEN)$(call gen-propdoc-texi,uitoolbar)
117
118 doc/interpreter/plot-uipushtoolproperties.texi: doc/interpreter/genpropdoc.m
119 $(AM_V_GEN)$(call gen-propdoc-texi,uipushtool)
120
121 doc/interpreter/plot-uitoggletoolproperties.texi: doc/interpreter/genpropdoc.m
122 $(AM_V_GEN)$(call gen-propdoc-texi,uitoggletool)
95 123
96 dist_man_MANS = \ 124 dist_man_MANS = \
97 doc/interpreter/mkoctfile.1 \ 125 doc/interpreter/mkoctfile.1 \
98 doc/interpreter/octave-cli.1 \ 126 doc/interpreter/octave-cli.1 \
99 doc/interpreter/octave-config.1 \ 127 doc/interpreter/octave-config.1 \