From 556ec5e59c94222224eb8a13c05d737b765b9259 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Sat, 2 Jan 2016 13:55:52 +0000 Subject: MirLua: linked with liblua git-svn-id: http://svn.miranda-ng.org/main/trunk@15989 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirLua/docs/examples/msgbuttonsbar.lua | 36 -------------------------- 1 file changed, 36 deletions(-) delete mode 100644 plugins/MirLua/docs/examples/msgbuttonsbar.lua (limited to 'plugins/MirLua/docs/examples/msgbuttonsbar.lua') diff --git a/plugins/MirLua/docs/examples/msgbuttonsbar.lua b/plugins/MirLua/docs/examples/msgbuttonsbar.lua deleted file mode 100644 index d69ee9078a..0000000000 --- a/plugins/MirLua/docs/examples/msgbuttonsbar.lua +++ /dev/null @@ -1,36 +0,0 @@ ---- include m_msg_buttonsbar module -local mbb = require('m_msg_buttonsbar') ---- include m_icolib module -local icolib = require('m_icolib') - -local BBBF_ISIMBUTTON = 32 -local BBBF_ISLSIDEBUTTON = 64 - -local bbButton = -{ - -- required fields - Module = "MirLua", - ButtonID = 1, - - Flags = BBBF_ISIMBUTTON | BBBF_ISLSIDEBUTTON, - Tooltip = "Msg button", - Icon = icolib.AddIcon('testBBBIcon', 'Lua icon for bbbButton') -} - ---- Add button on msg buttons bar -mbb.AddButton(bbButton) - ---- Create the msg buttons bar button which will be deleted below -mbb.AddButton({ - Module = "MirLua", - ButtonID = 2, - Flags = BBBF_ISIMBUTTON | BBBF_ISLSIDEBUTTON, - Tooltip = "Msg button for deletion" - }) - -mbb.OnMsgToolBarButtonPressed(function(w, l) - if l.Module == "MirLua" and l.ButtonID == 1 then - --- Remove button from msg buttons bar - mbb.RemoveButton("MirLua", 2) - end -end) -- cgit v1.2.3