summaryrefslogtreecommitdiff
path: root/plugins/MirLua/docs/examples/toptoolbar.lua
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-07-06 08:03:40 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-07-06 08:03:40 +0000
commitdc8040ee04ef2819c99d55dc74e9fe56d4ba4d1e (patch)
tree7ffe8d9e4c6e395855ab43fdc14d739cf9b3e9ec /plugins/MirLua/docs/examples/toptoolbar.lua
parentc59e17d57d3e2187c4d6412a128cfa8e09be287d (diff)
MirLua: !api break
- scripts will be load after ME_SYSTEM_MODULESLOADED event - removed event functions OnModulesLoaded, OnPreShutdown from m_core - removed OnMsgToolBarLoaded from m_msg_buttonsbar - removed OnTopToolBarLoaded from m_toptoolbar - fixed examples git-svn-id: http://svn.miranda-ng.org/main/trunk@14495 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/docs/examples/toptoolbar.lua')
-rw-r--r--plugins/MirLua/docs/examples/toptoolbar.lua76
1 files changed, 36 insertions, 40 deletions
diff --git a/plugins/MirLua/docs/examples/toptoolbar.lua b/plugins/MirLua/docs/examples/toptoolbar.lua
index d942927fd5..85a3a3a97b 100644
--- a/plugins/MirLua/docs/examples/toptoolbar.lua
+++ b/plugins/MirLua/docs/examples/toptoolbar.lua
@@ -5,43 +5,39 @@ local icolib = require('m_icolib')
local TTBBF_VISIBLE = tonumber("0002", 16)
-m.OnModulesLoaded(function()
- ttb.OnTopToolBarLoaded(function()
- local ttbButton =
- {
- -- required field
- Name = "MirLua",
-
- Service = nil,
- Flags = TTBBF_VISIBLE,
-
- IconUp = nil,
- TooltipUp = "Up state",
- wParamUp = nil,
- lParamUp = nil,
-
- IconDown = nil,
- TooltipDown = "Down state",
- wParamDown = nil,
- lParamDown = nil
- }
-
- --- Add icons for top toolbar
- ttbButton.IconUp = icolib.AddIcon('testTTBIconUp', 'Lua icon for ttbButtonUp')
- ttbButton.IconDown = icolib.AddIcon('testTTBIconDn', 'Lua icon for ttbButtonUp')
-
- --- Add button on top toolbar
- ttb.Service = "Srv/TTB"
- ttb.AddButton(ttbButton)
-
- --- Create the top toolbar button which will be deleted below
- local hTTButton = ttb.AddButton({
- Name = "MirLua",
- TooltipUp = "Up state to delete",
- TooltipDown = "Down state to delete"
- })
-
- --- Remove button from top toolbar
- ttb.RemoveButton(hTTButton)
- end)
-end)
+local ttbButton =
+{
+ -- required field
+ Name = "MirLua",
+
+ Service = nil,
+ Flags = TTBBF_VISIBLE,
+
+ IconUp = nil,
+ TooltipUp = "Up state",
+ wParamUp = nil,
+ lParamUp = nil,
+
+ IconDown = nil,
+ TooltipDown = "Down state",
+ wParamDown = nil,
+ lParamDown = nil
+}
+
+--- Add icons for top toolbar
+ttbButton.IconUp = icolib.AddIcon('testTTBIconUp', 'Lua icon for ttbButtonUp')
+ttbButton.IconDown = icolib.AddIcon('testTTBIconDn', 'Lua icon for ttbButtonUp')
+
+--- Add button on top toolbar
+ttb.Service = "Srv/TTB"
+ttb.AddButton(ttbButton)
+
+--- Create the top toolbar button which will be deleted below
+local hTTButton = ttb.AddButton({
+ Name = "MirLua",
+ TooltipUp = "Up state to delete",
+ TooltipDown = "Down state to delete"
+ })
+
+--- Remove button from top toolbar
+ttb.RemoveButton(hTTButton)