Skip to content

Commit 7c69f97

Browse files
committed
Docs: Add menu functions to appendix
1 parent c487785 commit 7c69f97

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

docs/appendix.rst

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ and Variables) and their Python counterparts.
4040
- :attr:`ahkpy.Settings.mouse_speed`
4141
+ - `A_Hour <https://www.autohotkey.com/docs/Variables.htm#Hour>`_
4242
- ``datetime.datetime.now().hour``
43+
+ - `A_IconFile <https://www.autohotkey.com/docs/Variables.htm#IconFile>`_
44+
- :attr:`ahkpy.TrayMenu.tray_icon_file`
45+
+ - `A_IconHidden <https://www.autohotkey.com/docs/Variables.htm#IconHidden>`_
46+
- :attr:`ahkpy.TrayMenu.is_tray_icon_visible`
47+
+ - `A_IconNumber <https://www.autohotkey.com/docs/Variables.htm#IconNumber>`_
48+
- :attr:`ahkpy.TrayMenu.tray_icon_number`
4349
+ - `A_Is64bitOS <https://www.autohotkey.com/docs/Variables.htm#Is64bitOS>`_
4450
- :func:`platform.architecture`
4551
+ - `A_MDay <https://www.autohotkey.com/docs/Variables.htm#MDay>`_
@@ -307,6 +313,48 @@ and Variables) and their Python counterparts.
307313
- :meth:`str.lstrip`
308314
+ - `Mod() <https://www.autohotkey.com/docs/commands/Mod.htm>`_
309315
- The ``%`` (modulo) operator
316+
+ - `Menu, $, Add <https://www.autohotkey.com/docs/commands/Menu.html#Add>`_
317+
- :meth:`ahkpy.Menu.add`
318+
+ - `Menu, $, Insert <https://www.autohotkey.com/docs/commands/Menu.html#Insert>`_
319+
- :meth:`ahkpy.Menu.insert`
320+
+ - `Menu, $, Delete <https://www.autohotkey.com/docs/commands/Menu.html#Delete>`_
321+
- :meth:`ahkpy.Menu.delete_item`, :meth:`ahkpy.Menu.delete_menu`
322+
+ - `Menu, $, DeleteAll <https://www.autohotkey.com/docs/commands/Menu.html#DeleteAll>`_
323+
- :meth:`ahkpy.Menu.delete_all_items`
324+
+ - `Menu, $, Rename <https://www.autohotkey.com/docs/commands/Menu.html#Rename>`_
325+
- :meth:`ahkpy.Menu.rename`
326+
+ - `Menu, $, Check <https://www.autohotkey.com/docs/commands/Menu.html#Check>`_
327+
- :meth:`ahkpy.Menu.check`
328+
+ - `Menu, $, Uncheck <https://www.autohotkey.com/docs/commands/Menu.html#Uncheck>`_
329+
- :meth:`ahkpy.Menu.uncheck`
330+
+ - `Menu, $, ToggleCheck <https://www.autohotkey.com/docs/commands/Menu.html#ToggleCheck>`_
331+
- :meth:`ahkpy.Menu.toggle_checked`
332+
+ - `Menu, $, Enable <https://www.autohotkey.com/docs/commands/Menu.html#Enable>`_
333+
- :meth:`ahkpy.Menu.enable`
334+
+ - `Menu, $, Disable <https://www.autohotkey.com/docs/commands/Menu.html#Disable>`_
335+
- :meth:`ahkpy.Menu.disable`
336+
+ - `Menu, $, ToggleEnable <https://www.autohotkey.com/docs/commands/Menu.html#ToggleEnable>`_
337+
- :meth:`ahkpy.Menu.toggle_enabled`
338+
+ - `Menu, $, Default <https://www.autohotkey.com/docs/commands/Menu.html#Default>`_
339+
- :meth:`ahkpy.Menu.set_default`
340+
+ - `Menu, $, NoDefault <https://www.autohotkey.com/docs/commands/Menu.html#NoDefault>`_
341+
- :meth:`ahkpy.Menu.remove_default`
342+
+ - `Menu, $, Icon <https://www.autohotkey.com/docs/commands/Menu.html#Icon>`_
343+
- :meth:`ahkpy.Menu.set_icon`
344+
+ - `Menu, $, NoIcon <https://www.autohotkey.com/docs/commands/Menu.html#NoIcon>`_
345+
- :meth:`ahkpy.Menu.remove_icon`
346+
+ - `Menu, $, Show <https://www.autohotkey.com/docs/commands/Menu.html#Show>`_
347+
- :meth:`ahkpy.Menu.show`
348+
+ - `Menu, $, Color <https://www.autohotkey.com/docs/commands/Menu.html#Color>`_
349+
- :meth:`ahkpy.Menu.set_color`
350+
+ - `Menu, Tray, Icon <https://www.autohotkey.com/docs/commands/Menu.html#TrayIcon>`_
351+
- :meth:`ahkpy.TrayMenu.set_tray_icon`, :meth:`ahkpy.TrayMenu.toggle_tray_icon`, :meth:`ahkpy.TrayMenu.show_tray_icon`
352+
+ - `Menu, Tray, NoIcon <https://www.autohotkey.com/docs/commands/Menu.html#NoIcon>`_
353+
- :meth:`ahkpy.TrayMenu.hide_tray_icon`
354+
+ - `Menu, Tray, Tip <https://www.autohotkey.com/docs/commands/Menu.html#Tip>`_
355+
- :attr:`ahkpy.TrayMenu.tip`
356+
+ - `Menu, Tray, Click <https://www.autohotkey.com/docs/commands/Menu.html#Click>`_
357+
- :meth:`ahkpy.TrayMenu.set_clicks`
310358
+ - `MouseClick <https://www.autohotkey.com/docs/commands/MouseClick.htm>`_
311359
- :func:`ahkpy.click`, also :func:`~ahkpy.right_click`, :func:`~ahkpy.double_click`, :func:`~ahkpy.mouse_press`,
312360
:func:`~ahkpy.mouse_release`, :func:`~ahkpy.mouse_scroll`, :func:`~ahkpy.mouse_move`

0 commit comments

Comments
 (0)