diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-04 20:00:53 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-04 20:00:53 -0500 |
commit | aeaa35262f1b6f45e074eb67c5699a1cdcd72b78 (patch) | |
tree | 9365b107bc4012ddf7203afe4ca3acbfa5bd8155 | |
parent | 9ecc35ec6888f19ee761d94c4f67874c45a99a8b (diff) | |
download | gtk+-aeaa35262f1b6f45e074eb67c5699a1cdcd72b78.tar.gz |
docs: use a list instead of a table
-rw-r--r-- | gtk/gtkmenubutton.c | 154 |
1 files changed, 56 insertions, 98 deletions
diff --git a/gtk/gtkmenubutton.c b/gtk/gtkmenubutton.c index ca24c329bc..49301c884b 100644 --- a/gtk/gtkmenubutton.c +++ b/gtk/gtkmenubutton.c @@ -40,104 +40,62 @@ * the button instead. If the alignment would move part of the menu offscreen, * it is 'pushed in'. * - * <informaltable> - * <tgroup cols="4"> - * <tbody> - * <row> - * <entry></entry> - * <entry>halign = start</entry> - * <entry>halign = center</entry> - * <entry>halign = end</entry> - * </row> - * <row> - * <entry>direction = down</entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="down-start.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="down-center.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="down-end.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * </row> - * <row> - * <entry>direction = up</entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="up-start.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="up-center.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="up-end.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * </row> - * </tbody> - * </tgroup> - * </informaltable> - * <informaltable> - * <tgroup cols="3"> - * <tbody> - * <row> - * <entry></entry> - * <entry>direction = left</entry> - * <entry>direction = right</entry> - * </row> - * <row> - * <entry>valign = start</entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="left-start.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="right-start.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * </row> - * <row> - * <entry>valign = center</entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="left-center.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="right-center.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * </row> - * <row> - * <entry>valign = end</entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="left-end.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * <entry> - * <inlinemediaobject> - * <imageobject><imagedata fileref="right-end.png" format="PNG"/></imageobject> - * </inlinemediaobject> - * </entry> - * </row> - * </tbody> - * </tgroup> - * </informaltable> + * ## Direction = Down + * + * - halign = start + * + * ![](down-start.png) + * + * - halign = center + * + * ![](down-center.png) + * + * - halign = end + * + * ![](down-end.png) + * + * ## Direction = Up + * + * - halign = start + * + * ![](up-start.png) + * + * - halign = center + * + * ![](up-center.png) + * + * - halign = end + * + * ![](up-end.png) + * + * ## Direction = Left + * + * - valign = start + * + * ![](left-start.png) + * + * - valign = center + * + * ![](left-center.png) + * + * - valign = end + * + * ![](left-end.png) + * + * ## Direction = Right + * + * - valign = start + * + * ![](right-start.png) + * + * - valign = center + * + * ![](right-center.png) + * + * - valign = end + * + * ![](right-end.png) + * */ #include "config.h" |