diff options
| author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-31 18:40:14 +0000 | 
|---|---|---|
| committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-31 18:40:14 +0000 | 
| commit | cecb2a6e6e221b6cb94e48ef601d12bfde7f60f4 (patch) | |
| tree | 5fe249c35960f89fcb3a235beb662e65b9bc23a6 | |
| parent | 77df1dd7b267eeb95d3ed68f32c4fcdb9319b1ae (diff) | |
changed group in folders plugin
git-svn-id: http://svn.miranda-ng.org/main/trunk@4266 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
| -rw-r--r-- | plugins/Popup/src/headers.h | 2 | ||||
| -rw-r--r-- | plugins/Popup/src/main.cpp | 40 | ||||
| -rw-r--r-- | plugins/TabSRMM/src/mim.cpp | 2 | ||||
| -rw-r--r-- | plugins/TipperYM/src/tipper.cpp | 2 | 
4 files changed, 22 insertions, 24 deletions
diff --git a/plugins/Popup/src/headers.h b/plugins/Popup/src/headers.h index 4c85cd85d7..593389b765 100644 --- a/plugins/Popup/src/headers.h +++ b/plugins/Popup/src/headers.h @@ -58,6 +58,8 @@ http://miranda-ng.org/distr/  #include <time.h>
  #include <process.h>
  #include <commctrl.h>
 +#include <shellapi.h>
 +#include <malloc.h>
  #include <newpluginapi.h>
  #include <win2k.h>
 diff --git a/plugins/Popup/src/main.cpp b/plugins/Popup/src/main.cpp index 18e804f6ed..2c5e60743b 100644 --- a/plugins/Popup/src/main.cpp +++ b/plugins/Popup/src/main.cpp @@ -1,9 +1,9 @@  /*
  Popup Plus plugin for Miranda IM
 -Copyright	� 2002 Luca Santarelli,
 -			� 2004-2007 Victor Pavlychko
 -			� 2010 MPK
 +Copyright	© 2002 Luca Santarelli,
 +			© 2004-2007 Victor Pavlychko
 +			© 2010 MPK
  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License
 @@ -21,8 +21,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.  */
  #include "headers.h"
 -#include <shellapi.h>
 -#include <malloc.h>
  WORD SETTING_MAXIMUMWIDTH_MAX = GetSystemMetrics(SM_CXSCREEN);
 @@ -68,7 +66,7 @@ HANDLE hMenuItemHistory		= NULL;  HANDLE hTTButton = NULL;
  //===== Options pages =====
 -static int OptionsInitialize(WPARAM wParam,LPARAM lParam)
 +static int OptionsInitialize(WPARAM wParam, LPARAM lParam)
  {
  	OPTIONSDIALOGPAGE odp = { 0 };
  	odp.cbSize      = sizeof(odp);
 @@ -111,36 +109,36 @@ static int OptionsInitialize(WPARAM wParam,LPARAM lParam)  	return 0;
  }
 -static int FontsChanged(WPARAM wParam,LPARAM lParam)
 +static int FontsChanged(WPARAM wParam, LPARAM lParam)
  {
  	ReloadFonts();
  	return 0;
  }
 -static int IconsChanged(WPARAM wParam,LPARAM lParam)
 +static int IconsChanged(WPARAM wParam, LPARAM lParam)
  {
  	LoadActions();
  	CLISTMENUITEM mi = { sizeof(mi) };
  	if (PopUpOptions.ModuleIsEnabled == TRUE) { //The module is enabled.
  		//The action to do is "disable popups" (show disabled) and we must write "enable popup" in the new item.
 -		mi.hIcon = IcoLib_GetIcon(ICO_POPUP_ON,0);
 +		mi.hIcon = IcoLib_GetIcon(ICO_POPUP_ON, 0);
  	}
  	else { //The module is disabled.
  		//The action to do is enable popups (show enabled), then write "disable popup" in the new item.
 -		mi.hIcon = IcoLib_GetIcon(ICO_POPUP_OFF,0);
 +		mi.hIcon = IcoLib_GetIcon(ICO_POPUP_OFF, 0);
  	}
  	mi.flags = CMIM_ICON;
 -	CallService(MS_CLIST_MODIFYMENUITEM,(WPARAM)hMenuItem,(LPARAM)&mi);
 -	CallService(MS_CLIST_MODIFYMENUITEM,(WPARAM)hMenuRoot,(LPARAM)&mi);
 +	CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hMenuItem, (LPARAM)&mi);
 +	CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hMenuRoot, (LPARAM)&mi);
 -	mi.hIcon = IcoLib_GetIcon(ICO_HISTORY,0);
 +	mi.hIcon = IcoLib_GetIcon(ICO_HISTORY, 0);
  	mi.flags = CMIM_ICON;
 -	CallService(MS_CLIST_MODIFYMENUITEM,(WPARAM)hMenuItemHistory,(LPARAM)&mi);
 +	CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hMenuItemHistory, (LPARAM)&mi);
  	return 0;
  }
 -static int TTBLoaded(WPARAM wParam,LPARAM lParam)
 +static int TTBLoaded(WPARAM wParam, LPARAM lParam)
  {
  	TTBButton ttb = { sizeof(ttb) };
  	ttb.pszService = MENUCOMMAND_SVC;
 @@ -181,9 +179,9 @@ INT_PTR svcEnableDisableMenuCommand(WPARAM wp, LPARAM lp)  		mi.hIcon = IcoLib_GetIcon(ICO_POPUP_ON,0);
  	}
  	mi.flags = CMIM_NAME | CMIM_ICON | CMIF_TCHAR;
 -	iResult = CallService(MS_CLIST_MODIFYMENUITEM,(WPARAM)hMenuItem,(LPARAM)&mi);
 +	iResult = CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hMenuItem, (LPARAM)&mi);
  	mi.flags = CMIM_ICON;
 -	iResultRoot = CallService(MS_CLIST_MODIFYMENUITEM,(WPARAM)hMenuRoot,(LPARAM)&mi);
 +	iResultRoot = CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hMenuRoot, (LPARAM)&mi);
  	if (hTTButton)
  		CallService(MS_TTB_SETBUTTONSTATE, (WPARAM)hTTButton, (PopUpOptions.ModuleIsEnabled) ? TTBST_PUSHED : TTBST_RELEASED);
 @@ -279,11 +277,11 @@ static int ModulesLoaded(WPARAM wParam,LPARAM lParam)  	//Uninstalling purposes
  	if (ServiceExists("PluginSweeper/Add"))
 -		CallService("PluginSweeper/Add",(WPARAM)Translate(MODULNAME),(LPARAM)MODULNAME);
 +		CallService("PluginSweeper/Add", (WPARAM)Translate(MODULNAME), (LPARAM)MODULNAME);
  	//load fonts / create hook
  	InitFonts();
 -	HookEvent(ME_FONT_RELOAD,FontsChanged);
 +	HookEvent(ME_FONT_RELOAD, FontsChanged);
  	//load actions and notifications
  	LoadActions();
 @@ -291,9 +289,7 @@ static int ModulesLoaded(WPARAM wParam,LPARAM lParam)  	//hook TopToolBar
  	HookEvent(ME_TTB_MODULELOADED, TTBLoaded);
  	//Folder plugin support
 -	LPTSTR pszPath = mir_a2t(MIRANDA_PATH "\\Skins\\PopUp");
 -	folderId = FoldersRegisterCustomPathT(LPGEN("Popup Plus"), LPGEN("Skins"), pszPath);
 -	mir_free(pszPath);
 +	folderId = FoldersRegisterCustomPathT(LPGEN("Skins"), LPGEN("Popup Plus"), MIRANDA_PATHT _T("\\Skins\\PopUp"));
  	//load skin
  	skins.load(_T("dir"));
  	const PopupSkin *skin;
 diff --git a/plugins/TabSRMM/src/mim.cpp b/plugins/TabSRMM/src/mim.cpp index 51106b4cfb..6d8258732c 100644 --- a/plugins/TabSRMM/src/mim.cpp +++ b/plugins/TabSRMM/src/mim.cpp @@ -315,7 +315,7 @@ int CMimAPI::FoldersPathChanged(WPARAM wParam, LPARAM lParam)  void CMimAPI::configureCustomFolders()
  {
  	m_hDataPath = FoldersRegisterCustomPathT(LPGEN("TabSRMM"), LPGEN("Data path"), const_cast<TCHAR *>(getDataPath()));
 -	m_hSkinsPath = FoldersRegisterCustomPathT(LPGEN("TabSRMM"), LPGEN("Skins root"), const_cast<TCHAR *>(getSkinPath()));
 +	m_hSkinsPath = FoldersRegisterCustomPathT(LPGEN("Skins"), LPGEN("TabSRMM"), const_cast<TCHAR *>(getSkinPath()));
  	m_hAvatarsPath = FoldersRegisterCustomPathT(LPGEN("Avatars"), LPGEN("Saved TabSRMM avatars"), const_cast<TCHAR *>(getSavedAvatarPath()));
  	m_hChatLogsPath = FoldersRegisterCustomPathT(LPGEN("TabSRMM"), LPGEN("Group chat logs root"), const_cast<TCHAR *>(getChatLogPath()));
 diff --git a/plugins/TipperYM/src/tipper.cpp b/plugins/TipperYM/src/tipper.cpp index b5b2ae04ae..17e9100251 100644 --- a/plugins/TipperYM/src/tipper.cpp +++ b/plugins/TipperYM/src/tipper.cpp @@ -257,7 +257,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam)  	hFolderChanged = HookEvent(ME_FOLDERS_PATH_CHANGED, ReloadSkinFolder);
 -	hSkinFolder = FoldersRegisterCustomPathT(LPGEN("Tipper"), LPGEN("Tipper skins"), MIRANDA_PATHT _T("\\") _T(DEFAULT_SKIN_FOLDER));
 +	hSkinFolder = FoldersRegisterCustomPathT(LPGEN("Skins"), LPGEN("Tipper"), MIRANDA_PATHT _T("\\") _T(DEFAULT_SKIN_FOLDER));
  	FoldersGetCustomPathT(hSkinFolder, SKIN_FOLDER, SIZEOF(SKIN_FOLDER), _T(DEFAULT_SKIN_FOLDER));
  	InitTipperSmileys();
  | 
