summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2016-12-02 16:52:47 +0300
committerGeorge Hazan <ghazan@miranda.im>2016-12-02 16:52:47 +0300
commit6c4c81c02298ba6ab34c85c58f96da92c835f20d (patch)
tree604cddf1260a6d319b8de855b3dfc46d3905c9b0 /plugins
parent5bf0b5424af1153dcb1b1c32f8a26d43811f5bb2 (diff)
toolbar services removed from pascal
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Actman/ua/i_uaplaces.inc11
-rw-r--r--plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc51
2 files changed, 9 insertions, 53 deletions
diff --git a/plugins/Actman/ua/i_uaplaces.inc b/plugins/Actman/ua/i_uaplaces.inc
index c5ac67c4db..df8a23fc14 100644
--- a/plugins/Actman/ua/i_uaplaces.inc
+++ b/plugins/Actman/ua/i_uaplaces.inc
@@ -45,7 +45,6 @@ var
pc:pWideChar;
begin
FillChar(tabb,SizeOf(tabb),0);
- tabb.cbSize :=SizeOf(tabb);
tabb.dwButtonID :=ActionItem.dwActID;
tabb.pszModuleName:=MODULE_NAME;
@@ -64,7 +63,7 @@ begin
end;
if pc=nil then pc:=ActionItem.szActDescr;
tabb.szTooltip:=pc;
- CallService(MS_BB_SETBUTTONSTATE,hContact,TLPARAM(@tabb));
+ Srmm_SetButtonState(hContact,@tabb);
end;
function IsLocalItem(const UAItem:tMyActionItem):boolean;
@@ -731,7 +730,6 @@ begin
begin
FillChar(tabb,SizeOf(tabb),0);
// register Tab ButtonBar button
- tabb.cbSize :=SizeOf(tabb);
tabb.dwButtonID :=ActionItem.dwActID;
tabb.pszModuleName:=MODULE_NAME;
tabb.dwDefPos :=(TABTOOLBAR_INITPOS+ActionItem.wSortIndex*10) and $7FFF;
@@ -747,8 +745,8 @@ begin
else
tabb.szTooltip:=ActionItem.szActDescr;
- if CallService(MS_BB_ADDBUTTON,0,LPARAM(@tabb))=0 then
- ActionItem.flags:=ActionItem.flags or UAF_TBREGGED;
+ Srmm_AddButton(@tabb);
+ ActionItem.flags:=ActionItem.flags or UAF_TBREGGED;
end;
end;
@@ -759,10 +757,9 @@ begin
if (ActionItem.flags and UAF_TBREGGED)<>0 then
begin
FillChar(tabb,SizeOf(tabb),0);
- tabb.cbSize :=SizeOf(tabb);
tabb.dwButtonID :=ActionItem.dwActID;
tabb.pszModuleName:=MODULE_NAME;
- CallService(MS_BB_REMOVEBUTTON,0,LPARAM(@tabb));
+ Srmm_RemoveButton(@tabb);
ActionItem.flags:=ActionItem.flags and not UAF_TBREGGED;
end;
end;
diff --git a/plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc b/plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc
index 9caa4dc44a..9ead87cdb1 100644
--- a/plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc
+++ b/plugins/ExternalAPI/delphi/m_msg_buttonsbar.inc
@@ -1,53 +1,12 @@
{$IFNDEF M_MSG_BUTTONSBAR}
{$DEFINE M_MSG_BUTTONSBAR}
-//////////////////////////////////////////////////////////////////////////
-// Services
-//
-//////////////////////////////////////////////////////////////////////////
-// Adding a button
-//
-// wParam = 0
-// lParam = (BBButton *) &description
const
- MS_BB_ADDBUTTON:PAnsiChar = 'TabSRMM/ButtonsBar/AddButton';
-
-//////////////////////////////////////////////////////////////////////////
-// Remove button
-//
-// wParam = 0
-// lParam = (BBButton *) &description, only button ID and ModuleName used
- MS_BB_REMOVEBUTTON:PAnsiChar = 'TabSRMM/ButtonsBar/RemoveButton';
-
-//////////////////////////////////////////////////////////////////////////
-// ModifyButton(global)
-//
-// wParam = 0
-// lParam = (BBButton *) &description
- MS_BB_MODIFYBUTTON:PAnsiChar = 'TabSRMM/ButtonsBar/ModifyButton';
-
-
BBSF_HIDDEN = 1;
BBSF_DISABLED = 2;
BBSF_PUSHED = 4;
BBSF_RELEASED = 8;
-//////////////////////////////////////////////////////////////////////////
-// GetButtonState(local)
-//
-// wParam = hContact
-// lParam = (BBButton *) &description , only ModuleName and ID used
-// Returns BBButton struct with BBSF_ bbbFlags:
- MS_BB_GETBUTTONSTATE:PansiChar = 'TabSRMM/ButtonsBar/GetButtonState';
-
-//////////////////////////////////////////////////////////////////////////
-// SetButtonState (local)
-//
-// wParam = hContact
-// lParam = (BBButton *) &description , ModuleName, ID,hIcon,Tooltip, and BBSF_ bbbFlags are used
- MS_BB_SETBUTTONSTATE:PAnsiChar = 'TabSRMM/ButtonsBar/SetButtonState';
-
-
////////////////////////////////////////////////////////////////
//Events
//
@@ -75,7 +34,6 @@ const
type
pCustomButtonClickData = ^tCustomButtonClickData;
tCustomButtonClickData = record
- cbSize :int;
pt :TPOINT; // screen coordinates for menus
pszModule :PAnsiChar; // button owners name
dwButtonId:dword; // registered button ID
@@ -97,8 +55,8 @@ const
BBBF_ISDUMMYBUTTON = $0200;
type
- tagBBButton = record
- cbSize :int; // size of structure
+ pBBButton = ^tBBButton;
+ tBBButton = record
dwButtonID :dword; // your button ID, will be combined with pszModuleName for storing settings, etc...
pszModuleName:PAnsiChar; // module name without spaces and underline symbols (e.g. "tabsrmm")
szTooltip :PWideChar; // button's tooltip
@@ -108,7 +66,8 @@ type
bbbFlags :dword; // combine of BBBF_ flags above
hIcon :HICON; // Handle to icolib registered icon, it's better to register with pszSection = "TabSRMM/Toolbar"
end;
- tBBButton = tagBBButton;
-
+function Srmm_RemoveButton(bbdi:pBBButton) : integer; stdcall; external AppDll;
+function Srmm_SetButtonState(hContact:TMCONTACT;bbdi:pBBButton) : integer; stdcall; external AppDll;
+
{$ENDIF}