From b15ca763899cf22d5da3f4c75e1b5f37435118f9 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 1 Aug 2015 16:42:01 +0000 Subject: StartupSilence: common project git-svn-id: http://svn.miranda-ng.org/main/trunk@14781 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/StartupSilence/src/StartupSilence.h | 77 ----------------------------- plugins/StartupSilence/src/main.cpp | 2 +- plugins/StartupSilence/src/stdafx.cpp | 18 ------- plugins/StartupSilence/src/stdafx.cxx | 18 +++++++ plugins/StartupSilence/src/stdafx.h | 77 +++++++++++++++++++++++++++++ 5 files changed, 96 insertions(+), 96 deletions(-) delete mode 100644 plugins/StartupSilence/src/StartupSilence.h delete mode 100644 plugins/StartupSilence/src/stdafx.cpp create mode 100644 plugins/StartupSilence/src/stdafx.cxx create mode 100644 plugins/StartupSilence/src/stdafx.h (limited to 'plugins/StartupSilence/src') diff --git a/plugins/StartupSilence/src/StartupSilence.h b/plugins/StartupSilence/src/StartupSilence.h deleted file mode 100644 index f7c0c3043a..0000000000 --- a/plugins/StartupSilence/src/StartupSilence.h +++ /dev/null @@ -1,77 +0,0 @@ -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "win2k.h" - -#include - -#include "version.h" -#include "resource.h" - -static INT_PTR AdvSt(); -static INT_PTR InitMenu(); -void InitSettings(); -void LoadSettings(); -void DefSettings(); -void IsMenu(); -void UpdateMenu(); -void UpdateTTB(); - -INT_PTR SturtupSilenceEnabled(WPARAM wParam, LPARAM lParam); -INT_PTR SilenceConnection(WPARAM wParam, LPARAM lParam); - -#define MODULE_NAME "StartupSilence" - -#define SS_SERVICE_NAME "StartupSilence/ToggleEnabled" - -//StartupSilence/SilenceConnection -//external service for mute sound and popups according to plugin settings -//wParam = 2 - SilenceConnection is on -//wParam = 0 - SilenceConnection is off -//lParam = 0 - not in use -#define SS_SILENCE_CONNECTION "StartupSilence/SilenceConnection" - -#define POPUPONOFF "Popup/EnableDisableMenuCommand" - -#define MENU_NAME LPGEN("Silence at startup") -#define DISABLE_SILENCE LPGEN("Toggle Silence OFF") -#define ENABLE_SILENCE LPGEN("Toggle Silence ON") -#define DISABLE_SILENCETTB LPGEN("Toggle Silence OFF TTB") -#define ENABLE_SILENCETTB LPGEN("Toggle Silence ON TTB") -#define ALL_ENABLED TranslateT("Sounds and popups are enabled") -#define ALL_ENABLED_FLT LPGEN("Filtered mode ON") -#define ALL_DISABLED TranslateT("Sounds and popups are disabled temporarily") -#define ALL_DISABLED_FLT TranslateT("Sounds and popups are disabled temporarily.\nmRadio or Weather popups, etc. are allowed.") -#define S_MODE_CHANGEDON TranslateT("Silent Startup mode changed to ON") -#define S_MODE_CHANGEDOFF TranslateT("Silent Startup mode changed to OFF") -#define SS_IS_ON Translate("Silence At Startup is ON") -#define SS_IS_OFF Translate("Silence At Startup is OFF") -#define TTBNAME Translate("Toggle Silence At Startup") -#define NOTICE TranslateT(MENU_NAME) -#define NEEDTTBMOD TranslateT("You have to install \"TopToolBar\" to use this option.") -#define NEEDPOPUP TranslateT("You have to install \"YAPP\" or \"Popup+\" to use this option.") - -static IconItem iconList[] = { - {MENU_NAME, MENU_NAME, IDI_SSICON}, - {ALL_ENABLED_FLT, ALL_ENABLED_FLT, IDI_SSFILTEREDON}, - {DISABLE_SILENCE, DISABLE_SILENCE, IDI_SSDISABLE}, - {ENABLE_SILENCE, ENABLE_SILENCE, IDI_SSENABLE} -}; - -static IconItem iconttbList[] = { - {DISABLE_SILENCETTB, DISABLE_SILENCETTB, IDI_SSDISABLETTB}, - {ENABLE_SILENCETTB, ENABLE_SILENCETTB, IDI_SSENABLETTB} -}; diff --git a/plugins/StartupSilence/src/main.cpp b/plugins/StartupSilence/src/main.cpp index 948c642712..ccdef4917c 100644 --- a/plugins/StartupSilence/src/main.cpp +++ b/plugins/StartupSilence/src/main.cpp @@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. //HELPME: need new icons for TTB bottons -#include "StartupSilence.h" +#include "stdafx.h" HINSTANCE hInst; int hLangpack; diff --git a/plugins/StartupSilence/src/stdafx.cpp b/plugins/StartupSilence/src/stdafx.cpp deleted file mode 100644 index f64a5b0758..0000000000 --- a/plugins/StartupSilence/src/stdafx.cpp +++ /dev/null @@ -1,18 +0,0 @@ -/* -Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation version 2 -of the License. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . -*/ - -#include "StartupSilence.h" \ No newline at end of file diff --git a/plugins/StartupSilence/src/stdafx.cxx b/plugins/StartupSilence/src/stdafx.cxx new file mode 100644 index 0000000000..6fb37564b7 --- /dev/null +++ b/plugins/StartupSilence/src/stdafx.cxx @@ -0,0 +1,18 @@ +/* +Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation version 2 +of the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + +#include "stdafx.h" \ No newline at end of file diff --git a/plugins/StartupSilence/src/stdafx.h b/plugins/StartupSilence/src/stdafx.h new file mode 100644 index 0000000000..f7c0c3043a --- /dev/null +++ b/plugins/StartupSilence/src/stdafx.h @@ -0,0 +1,77 @@ +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "win2k.h" + +#include + +#include "version.h" +#include "resource.h" + +static INT_PTR AdvSt(); +static INT_PTR InitMenu(); +void InitSettings(); +void LoadSettings(); +void DefSettings(); +void IsMenu(); +void UpdateMenu(); +void UpdateTTB(); + +INT_PTR SturtupSilenceEnabled(WPARAM wParam, LPARAM lParam); +INT_PTR SilenceConnection(WPARAM wParam, LPARAM lParam); + +#define MODULE_NAME "StartupSilence" + +#define SS_SERVICE_NAME "StartupSilence/ToggleEnabled" + +//StartupSilence/SilenceConnection +//external service for mute sound and popups according to plugin settings +//wParam = 2 - SilenceConnection is on +//wParam = 0 - SilenceConnection is off +//lParam = 0 - not in use +#define SS_SILENCE_CONNECTION "StartupSilence/SilenceConnection" + +#define POPUPONOFF "Popup/EnableDisableMenuCommand" + +#define MENU_NAME LPGEN("Silence at startup") +#define DISABLE_SILENCE LPGEN("Toggle Silence OFF") +#define ENABLE_SILENCE LPGEN("Toggle Silence ON") +#define DISABLE_SILENCETTB LPGEN("Toggle Silence OFF TTB") +#define ENABLE_SILENCETTB LPGEN("Toggle Silence ON TTB") +#define ALL_ENABLED TranslateT("Sounds and popups are enabled") +#define ALL_ENABLED_FLT LPGEN("Filtered mode ON") +#define ALL_DISABLED TranslateT("Sounds and popups are disabled temporarily") +#define ALL_DISABLED_FLT TranslateT("Sounds and popups are disabled temporarily.\nmRadio or Weather popups, etc. are allowed.") +#define S_MODE_CHANGEDON TranslateT("Silent Startup mode changed to ON") +#define S_MODE_CHANGEDOFF TranslateT("Silent Startup mode changed to OFF") +#define SS_IS_ON Translate("Silence At Startup is ON") +#define SS_IS_OFF Translate("Silence At Startup is OFF") +#define TTBNAME Translate("Toggle Silence At Startup") +#define NOTICE TranslateT(MENU_NAME) +#define NEEDTTBMOD TranslateT("You have to install \"TopToolBar\" to use this option.") +#define NEEDPOPUP TranslateT("You have to install \"YAPP\" or \"Popup+\" to use this option.") + +static IconItem iconList[] = { + {MENU_NAME, MENU_NAME, IDI_SSICON}, + {ALL_ENABLED_FLT, ALL_ENABLED_FLT, IDI_SSFILTEREDON}, + {DISABLE_SILENCE, DISABLE_SILENCE, IDI_SSDISABLE}, + {ENABLE_SILENCE, ENABLE_SILENCE, IDI_SSENABLE} +}; + +static IconItem iconttbList[] = { + {DISABLE_SILENCETTB, DISABLE_SILENCETTB, IDI_SSDISABLETTB}, + {ENABLE_SILENCETTB, ENABLE_SILENCETTB, IDI_SSENABLETTB} +}; -- cgit v1.2.3