summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern/src/modern_clc.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2016-06-01 11:02:25 +0000
committerGeorge Hazan <george.hazan@gmail.com>2016-06-01 11:02:25 +0000
commitfd23c78f121f3f1d07d97d657c617b46b25c614f (patch)
tree6fc12a82ed0e537228e6c712d0c571afcdf10e1c /plugins/Clist_modern/src/modern_clc.h
parentea68d4474bb7329a5e59e0388b88155b96f31f7c (diff)
- finally clist_modern's own rebuild all function got wiped out;
- massive removal of duplicate code; - code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@16894 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clc.h')
-rw-r--r--plugins/Clist_modern/src/modern_clc.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/Clist_modern/src/modern_clc.h b/plugins/Clist_modern/src/modern_clc.h
index ab94c5def0..03e05d44b6 100644
--- a/plugins/Clist_modern/src/modern_clc.h
+++ b/plugins/Clist_modern/src/modern_clc.h
@@ -240,11 +240,9 @@ struct ClcData : public ClcDataBase
{
BYTE HiLightMode;
BYTE doubleClickExpand;
- int MetaIgnoreEmptyExtra;
- BYTE expandMeta;
BYTE IsMetaContactsEnabled;
time_t last_tick_time;
- BOOL force_in_dialog;
+ bool bForceInDialog, bPlaceOfflineToRoot, bMetaIgnoreEmptyExtra, bMetaExpanding;
int subIndent;
int rightMargin;
HBITMAP hMenuBackground;
@@ -315,7 +313,6 @@ struct ClcData : public ClcDataBase
BYTE menuOwnerType;
int menuOwnerID;
DWORD m_paintCouter; //range is enoght to 49 days if painting will occure each one millisecond
- BYTE useMetaIcon;
BYTE drawOverlayedStatus;
int nInsertionLevel;
@@ -348,6 +345,7 @@ int FindItem(HWND hwnd, ClcData *dat, DWORD hItem, ClcContact **contact, ClcGro
int cliGetRowByIndex(ClcData *dat, int testindex, ClcContact **contact, ClcGroup **subgroup);
// clcitems.c
+ClcContact* cli_AddContactToGroup(ClcData *dat, ClcGroup *group, MCONTACT hContact);
void cliRebuildEntireList(HWND hwnd, ClcData *dat);
void cli_AddContactToTree(HWND hwnd, ClcData *dat, MCONTACT hContact, int updateTotalCount, int checkHideOffline);
void cli_SortCLC(HWND hwnd, ClcData *dat, int useInsertionSort);
@@ -362,7 +360,7 @@ void cliBeginRenameSelection(HWND hwnd, ClcData *dat);
int cliHitTest(HWND hwnd, ClcData *dat, int testx, int testy, ClcContact **contact, ClcGroup **group, DWORD *flags);
void cliScrollTo(HWND hwnd, ClcData *dat, int desty, int noSmooth);
int GetDropTargetInformation(HWND hwnd, ClcData *dat, POINT pt);
-void LoadCLCOptions(HWND hwnd, ClcData *dat, BOOL bFirst);
+void cli_LoadCLCOptions(HWND hwnd, ClcData *dat, BOOL bFirst);
COLORREF cliGetColor(char *module, char *color, COLORREF defColor);