diff options
author | George Hazan <george.hazan@gmail.com> | 2016-04-26 08:09:32 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-04-26 08:09:32 +0000 |
commit | 14b3e00732b7f8b23c3e194815a9a0d3a6f2723f (patch) | |
tree | 9499fbd9f587dae601c2c94dc6ded57ea839b45a /include | |
parent | 3bf8dd214686baa698ec98c16d49f320d6f4eee8 (diff) |
absolutely useless service MS_CLUI_GETCAPS removed as pre-kernel clist atavism
git-svn-id: http://svn.miranda-ng.org/main/trunk@16766 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_clui.inc | 45 | ||||
-rw-r--r-- | include/m_clui.h | 28 |
2 files changed, 1 insertions, 72 deletions
diff --git a/include/delphi/m_clui.inc b/include/delphi/m_clui.inc index 10af8c8c29..bb7bd26f7b 100644 --- a/include/delphi/m_clui.inc +++ b/include/delphi/m_clui.inc @@ -67,46 +67,6 @@ const MS_CLUI_LISTENDREBUILD:PAnsiChar = 'CLUI/ListEndRebuild';
{
- wParam : CLUICAPS_*
- lParam : 0
- Affect : Gets a load of capabilites for the loaded CLUI, see notes
- Returns: the requested value, 0 of wParam is unknown --
- if this service is not implemented it is assumed all return
- values will be 0.
- Version: v0.1.2.1+
- }
-{
- CLUIF2_PLUGININFO = 1; // returns pointer to plugininfo
- CLUIF2_CLISTTYPE = 2; // the genaration of list in chronologic
- // modern layered return 0x07 (assuming classic,
- // mw, meta, nicer1, modern1, nicer++, modernLayered)
- // +0x0100 for unicode
- CLUIF2_EXTRACOLUMNCOUNT = 3; // return max number of extra icon available to
- // be set in main window
- CLUIF2_USEREXTRASTART = 4; // return index of first 'advanced' image except
- // Adv1 and Adv2
-}
- // can only provide this flag to return the following set of caps, the strings
- // show the database setting/type to store the list option, changing the value
- // does not reflect what the change is, i.e. ontop can only be affected with
- // a call to SetWindowPos()
- CLUICAPS_FLAGS1 = 0;
- // empty groups aren't shown, 'CList/HideEmptyGroups' (byte) [changes make the list reload]
- CLUIF_HIDEEMPTYGROUPS = 1;
- // groups can be disabled, lists can be merged into one seamlessly, (byte) 'CList/UseGroups'
- CLUIF_DISABLEGROUPS = 2;
- // list can be displayed 'on top' of all other windows, 4 (byte) 'CList/OnTop'
- CLUIF_HASONTOPOPTION = 4;
- // can disappear after a while of inactive use,
- // (byte) 'CList/AutoHide' (word) 'CList/HideTime'
- CLUIF_HASAUTOHIDEOPTION = 8;
-
- CLUICAPS_FLAGS2 = 1; // Returns info about extra icons
- // HIWORD is the first extra icon number, LOWORD is the extra icons count
-
- MS_CLUI_GETCAPS:PAnsiChar = 'CLUI/GetCaps';
-
- {
wParam : TMCONTACT
lParam : MAKELPARAM(screenX, screenY)
Affect : A contact is being dragged outside the main window
@@ -135,10 +95,7 @@ const }
ME_CLUI_CONTACTDRAGSTOP:PAnsiChar = 'CLUI/ContactDragStop';
-// return TRUE if Clist Module Support Metacontacts
+ // return TRUE if Clist Module Support Metacontacts
ME_CLUI_METASUPPORT:PAnsiChar = 'CLUI/MetaContactSupport';
-// return pointer to PLUGININFO structure
-// MS_CLIST_GETCLISTCAPS = 'CList/GetCaps';
-
{$ENDIF}
diff --git a/include/m_clui.h b/include/m_clui.h index bd49c8213a..abf2d48a78 100644 --- a/include/m_clui.h +++ b/include/m_clui.h @@ -49,34 +49,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. //you do not need to explicitly sort the list
#define MS_CLUI_LISTENDREBUILD "CLUI/ListEndRebuild"
-//Gets a load of capabilities for the loaded CLUI v0.1.2.1+
-//wParam = capability, CLUICAPS_*
-//lParam = 0
-//returns the requested value, 0 if wParam is an unknown value
-//If this service is not implemented, it is assumed to return 0 to all input
-
-#define CLUICAPS_FLAGS1 0
-#define CLUIF_HIDEEMPTYGROUPS 1 //the clist has a checkbox in its options
- //to set this, which will be hidden if this flag is not set. It is
- //up to the CLUI to provide support for it, but it just seemed insane
- //to me to have hide offline and hide empty in different pages.
- //The setting is "CList"/"HideEmptyGroups", a byte. A complete list
- //reload is sent whenever the user changes it.
-#define CLUIF_DISABLEGROUPS 2 //can show list without groups. Adds option
- //to change "CList"/"UseGroups", a byte.
-#define CLUIF_HASONTOPOPTION 4 //the clui options page provides a way to
- //change "CList"/"OnTop", a byte. When it is changed the clui should
- //also set the topmost flag on the window using SetWindowPos().
-#define CLUIF_HASAUTOHIDEOPTION 8 //the clui options page provides a way to
- //change the list auto hide options. It should read and write the
- //byte "CList"/"AutoHide" and the word "CList"/"HideTime". No other
- //action is needed.
-
-#define CLUICAPS_FLAGS2 1 //Returns info about extra icons
- //HIWORD is the first extra icon number, LOWORD is the extra icons count
-
-#define MS_CLUI_GETCAPS "CLUI/GetCaps"
-
//a contact is being dragged outside the main window v0.1.2.0+
//wParam = (MCONTACT)hContact
//lParam = MAKELPARAM(screenX, screenY)
|