From 1e92bf5cf72665b5fec103a0a70d734340725539 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Tue, 24 Jul 2012 09:26:39 +0000 Subject: StopSpamPlus, TipperYM, TooltipNotify, TopToolBar, TranslitSwitcher, UserGuide: changed folder structure git-svn-id: http://svn.miranda-ng.org/main/trunk@1159 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/TooltipNotify/doc/todo.txt | 0 plugins/TooltipNotify/doc/tt_wnd_def_style.txt | 9 - plugins/TooltipNotify/doc/ttnotify-readme.txt | 128 ------------- plugins/TooltipNotify/doc/ttnotify_translation.txt | 47 ----- plugins/TooltipNotify/docs/todo.txt | 0 .../docs/tooltipnotify-translation.txt | 55 ++++++ plugins/TooltipNotify/docs/tt_wnd_def_style.txt | 9 + plugins/TooltipNotify/docs/ttnotify-readme.txt | 128 +++++++++++++ .../TooltipNotify/docs/ttnotify_translation.txt | 47 +++++ plugins/TooltipNotify/res/main.rc | 204 +++++++++++++++++++++ plugins/TooltipNotify/res/version.rc | 53 ++++++ plugins/TooltipNotify/src/main.rc | 204 --------------------- plugins/TooltipNotify/src/version.rc | 52 ------ .../TooltipNotify/tooltipnotify-translation.txt | 55 ------ plugins/TooltipNotify/ttnotify_10.vcxproj | 17 +- plugins/TooltipNotify/ttnotify_10.vcxproj.filters | 61 +++--- 16 files changed, 530 insertions(+), 539 deletions(-) delete mode 100644 plugins/TooltipNotify/doc/todo.txt delete mode 100644 plugins/TooltipNotify/doc/tt_wnd_def_style.txt delete mode 100644 plugins/TooltipNotify/doc/ttnotify-readme.txt delete mode 100644 plugins/TooltipNotify/doc/ttnotify_translation.txt create mode 100644 plugins/TooltipNotify/docs/todo.txt create mode 100644 plugins/TooltipNotify/docs/tooltipnotify-translation.txt create mode 100644 plugins/TooltipNotify/docs/tt_wnd_def_style.txt create mode 100644 plugins/TooltipNotify/docs/ttnotify-readme.txt create mode 100644 plugins/TooltipNotify/docs/ttnotify_translation.txt create mode 100644 plugins/TooltipNotify/res/main.rc create mode 100644 plugins/TooltipNotify/res/version.rc delete mode 100644 plugins/TooltipNotify/src/main.rc delete mode 100644 plugins/TooltipNotify/src/version.rc delete mode 100644 plugins/TooltipNotify/tooltipnotify-translation.txt (limited to 'plugins/TooltipNotify') diff --git a/plugins/TooltipNotify/doc/todo.txt b/plugins/TooltipNotify/doc/todo.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/plugins/TooltipNotify/doc/tt_wnd_def_style.txt b/plugins/TooltipNotify/doc/tt_wnd_def_style.txt deleted file mode 100644 index c47a6a363f..0000000000 --- a/plugins/TooltipNotify/doc/tt_wnd_def_style.txt +++ /dev/null @@ -1,9 +0,0 @@ -ws_popup -ws_visible -ws_clipsiblings -ws_border - -ws_ex_left -ws_ex_ltrreading -ws_ex_rightscrollbar -ws_ex_topmost \ No newline at end of file diff --git a/plugins/TooltipNotify/doc/ttnotify-readme.txt b/plugins/TooltipNotify/doc/ttnotify-readme.txt deleted file mode 100644 index 1d2e816390..0000000000 --- a/plugins/TooltipNotify/doc/ttnotify-readme.txt +++ /dev/null @@ -1,128 +0,0 @@ - - - Tooltip notify plugin for Miranda IM - ____________________________________ - - Version 0.6.0.45 - - -About -_____ - -This Miranda IM plugin popups a small tooltip above system tray area -when a contact changes his status. It's intended for and tested with ICQ -protocol mainly, so it can miswork with other protocols. - - - -Changelog -_________ - -Version 0.6.0.45 - - Individual font settings for events - -Version 0.5.0.42 - - Added idle notifications - - Using font services - -Version 0.4.0.36 - - Fixed crash with too long contact names - -Version 0.4.0.32 - - Next generation plugin interface support - - Correct unicode/ansi flag in plugin description - -Version 0.4.0.29 - - per-contact notifications ability - - ansi/unicode module check on corresponding os - - more unicode support - - internal module name changed from 'ttntfmod' to 'Tooltip Notify' - (all settings migrate automatically) - - fixed potential crash while reading font settings - - fixed memory leak - -Version 0.3.0.15 - - fixed one major unexpected crash - -Version 0.3.0.14 - - unicode support - - fixed minor bug related to settings reading - - fixed potential crash with the tooltip moving - - other minor fixes - -Version 0.2.0.2 - - obey 'suppress online notification' setting - - sound plays only if the event notification is checked - - minor stability fixes - - translation file update - -Version 0.2.0.1 - - stability fixes - -Version 0.2.0.0 - - some controls' text fields are enlarged (translators requests) - - win9x misworking fixed (not tested) - - new abilities: - - proto name prefixing - - enabled back - - work in conjunction with 'suppress online notification' - -Version 0.1.0.0 - - the whole code rewritten in cpp - - new abilities: - - suppress notifications upon connect - - typing notification - - disabled - - work in conjunction with 'suppress online notification' - -Version 0.0.6.0 - - rewritten code of the tooltip window - - tooltip dragging behavior changed (now with usual left-click) - - new options: - - double click on tooltip action - - font and color customization - - some minor fixes/changes - -Version 0.0.5.0 - - sound support for the contact events - - added a button to run the tooltip within the options dialog to test it - - some minor changes - -Version 0.0.4.3 - - protocols selection bug fixed - -Version 0.0.4.2 - - translucency options - - translation support - -Version 0.0.4.0 - - ability to select protocols to react to - - ability of custom tooltip placement - -Version 0.0.3.1 - - a little translations added - -Version 0.0.3.0 - - options moved to events->tooltip notify - - options added: - - allow tooltip duration adjusting - - conjunctive work with 'Suppress online notification' - - fixed showing a tooltip when protocol goes offline - - plugin size reduced - -Version 0.0.2.4 - - some internal fixes - - -Copyright -_________ - -Copyright (C) 2004-2008 Gneedah software (perf@mail333.com) - - - -DISCLAIMER OF WARRANTY --------------------------------------------------------------------- - -This software is distributed "AS IS" without any warranties. -USE IT AT YOU OWN RISK. diff --git a/plugins/TooltipNotify/doc/ttnotify_translation.txt b/plugins/TooltipNotify/doc/ttnotify_translation.txt deleted file mode 100644 index 2c7d965d67..0000000000 --- a/plugins/TooltipNotify/doc/ttnotify_translation.txt +++ /dev/null @@ -1,47 +0,0 @@ -; This is a template for Tooltip Notify translation. - - -; ******** Plugin info ******** -;[Tooltip Notify] -;[Shows a small tooltip above system tray area when a contact status is changed] - - -; ******** Options and tooltip text ******** - -;[Notify upon the following contact status changes] -;[Online] -;[Offline] -;[Away] -;[N/A] -;[Occupied] -;[DND] -;[Free for chat] -;[Invisible] -;[All other] -;[Unknown] -;[Typing] -;[Idle] -;[Suppress notifications upon connection for] -;[sec] -;[Prefix proto name] -;[Protocols] -;[is] - -;[Duration] -;[Show tooltip for] -;[ms] -;[Duration x2 upon online event] - -;[Double click on tooltip] -;[Shows/Hides CList] -;[Opens message dialog] - -;[Misc] -;[Obey 'Suppress online notification' settings] -;[Auto positioning] -;[Transparent input] - -;[Preview] - -;[Translucency options (Windows 2000/XP only)] -;[Transparent tooltip] diff --git a/plugins/TooltipNotify/docs/todo.txt b/plugins/TooltipNotify/docs/todo.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/plugins/TooltipNotify/docs/tooltipnotify-translation.txt b/plugins/TooltipNotify/docs/tooltipnotify-translation.txt new file mode 100644 index 0000000000..44862c316f --- /dev/null +++ b/plugins/TooltipNotify/docs/tooltipnotify-translation.txt @@ -0,0 +1,55 @@ +; Common strings that belong to many files +;[Idle] +;[Offline] +;[Online] +;[Typing] + +; ../../plugins/TooltipNotify/src/TooltipNotify.cpp +;[** New contacts **] +;[** Unknown contacts **] +;[Appearance] +;[Away] +;[DND] +;[Free for chat] +;[Invisible] +;[N/A] +;[Not Idle] +;[Occupied] +;[Tooltip Notify] +;[Tooltip Notify: Offline] +;[Tooltip Notify: Online] +;[Tooltip Notify: Other] +;[Tooltip Notify: Typing] +;[Unknown] +;[is] + +; ../../plugins/TooltipNotify/src/main.rc +;[All other] +;[Allow tooltip notifications for the following users:] +;[Auto positioning] +;[Behavior] +;[Cancel] +;[Choose contacts...] +;[Contacts] +;[Double click on tooltip] +;[Duration] +;[Duration x2 upon online event] +;[Misc] +;[Notify upon the following events] +;[OK] +;[Obey 'Suppress online notification' settings] +;[Opens message dialog] +;[Prefix proto name] +;[Preview] +;[Protocols] +;[Select protocols] +;[Show tooltip for] +;[Shows/Hides CList] +;[Slider1] +;[Spin1] +;[Suppress notifications upon connection for] +;[Translucency options (Windows 2000/XP only)] +;[Transparent input] +;[Transparent tooltip] +;[ms] +;[sec] diff --git a/plugins/TooltipNotify/docs/tt_wnd_def_style.txt b/plugins/TooltipNotify/docs/tt_wnd_def_style.txt new file mode 100644 index 0000000000..c47a6a363f --- /dev/null +++ b/plugins/TooltipNotify/docs/tt_wnd_def_style.txt @@ -0,0 +1,9 @@ +ws_popup +ws_visible +ws_clipsiblings +ws_border + +ws_ex_left +ws_ex_ltrreading +ws_ex_rightscrollbar +ws_ex_topmost \ No newline at end of file diff --git a/plugins/TooltipNotify/docs/ttnotify-readme.txt b/plugins/TooltipNotify/docs/ttnotify-readme.txt new file mode 100644 index 0000000000..1d2e816390 --- /dev/null +++ b/plugins/TooltipNotify/docs/ttnotify-readme.txt @@ -0,0 +1,128 @@ + + + Tooltip notify plugin for Miranda IM + ____________________________________ + + Version 0.6.0.45 + + +About +_____ + +This Miranda IM plugin popups a small tooltip above system tray area +when a contact changes his status. It's intended for and tested with ICQ +protocol mainly, so it can miswork with other protocols. + + + +Changelog +_________ + +Version 0.6.0.45 + - Individual font settings for events + +Version 0.5.0.42 + - Added idle notifications + - Using font services + +Version 0.4.0.36 + - Fixed crash with too long contact names + +Version 0.4.0.32 + - Next generation plugin interface support + - Correct unicode/ansi flag in plugin description + +Version 0.4.0.29 + - per-contact notifications ability + - ansi/unicode module check on corresponding os + - more unicode support + - internal module name changed from 'ttntfmod' to 'Tooltip Notify' + (all settings migrate automatically) + - fixed potential crash while reading font settings + - fixed memory leak + +Version 0.3.0.15 + - fixed one major unexpected crash + +Version 0.3.0.14 + - unicode support + - fixed minor bug related to settings reading + - fixed potential crash with the tooltip moving + - other minor fixes + +Version 0.2.0.2 + - obey 'suppress online notification' setting + - sound plays only if the event notification is checked + - minor stability fixes + - translation file update + +Version 0.2.0.1 + - stability fixes + +Version 0.2.0.0 + - some controls' text fields are enlarged (translators requests) + - win9x misworking fixed (not tested) + - new abilities: + - proto name prefixing + - enabled back + - work in conjunction with 'suppress online notification' + +Version 0.1.0.0 + - the whole code rewritten in cpp + - new abilities: + - suppress notifications upon connect + - typing notification + - disabled + - work in conjunction with 'suppress online notification' + +Version 0.0.6.0 + - rewritten code of the tooltip window + - tooltip dragging behavior changed (now with usual left-click) + - new options: + - double click on tooltip action + - font and color customization + - some minor fixes/changes + +Version 0.0.5.0 + - sound support for the contact events + - added a button to run the tooltip within the options dialog to test it + - some minor changes + +Version 0.0.4.3 + - protocols selection bug fixed + +Version 0.0.4.2 + - translucency options + - translation support + +Version 0.0.4.0 + - ability to select protocols to react to + - ability of custom tooltip placement + +Version 0.0.3.1 + - a little translations added + +Version 0.0.3.0 + - options moved to events->tooltip notify + - options added: + - allow tooltip duration adjusting + - conjunctive work with 'Suppress online notification' + - fixed showing a tooltip when protocol goes offline + - plugin size reduced + +Version 0.0.2.4 + - some internal fixes + + +Copyright +_________ + +Copyright (C) 2004-2008 Gneedah software (perf@mail333.com) + + + +DISCLAIMER OF WARRANTY +-------------------------------------------------------------------- + +This software is distributed "AS IS" without any warranties. +USE IT AT YOU OWN RISK. diff --git a/plugins/TooltipNotify/docs/ttnotify_translation.txt b/plugins/TooltipNotify/docs/ttnotify_translation.txt new file mode 100644 index 0000000000..2c7d965d67 --- /dev/null +++ b/plugins/TooltipNotify/docs/ttnotify_translation.txt @@ -0,0 +1,47 @@ +; This is a template for Tooltip Notify translation. + + +; ******** Plugin info ******** +;[Tooltip Notify] +;[Shows a small tooltip above system tray area when a contact status is changed] + + +; ******** Options and tooltip text ******** + +;[Notify upon the following contact status changes] +;[Online] +;[Offline] +;[Away] +;[N/A] +;[Occupied] +;[DND] +;[Free for chat] +;[Invisible] +;[All other] +;[Unknown] +;[Typing] +;[Idle] +;[Suppress notifications upon connection for] +;[sec] +;[Prefix proto name] +;[Protocols] +;[is] + +;[Duration] +;[Show tooltip for] +;[ms] +;[Duration x2 upon online event] + +;[Double click on tooltip] +;[Shows/Hides CList] +;[Opens message dialog] + +;[Misc] +;[Obey 'Suppress online notification' settings] +;[Auto positioning] +;[Transparent input] + +;[Preview] + +;[Translucency options (Windows 2000/XP only)] +;[Transparent tooltip] diff --git a/plugins/TooltipNotify/res/main.rc b/plugins/TooltipNotify/res/main.rc new file mode 100644 index 0000000000..74f0c4221b --- /dev/null +++ b/plugins/TooltipNotify/res/main.rc @@ -0,0 +1,204 @@ +// Microsoft Visual C++ generated resource script. +// +#include "..\src\resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#define APSTUDIO_HIDDEN_SYMBOLS +#include "windows.h" +#undef APSTUDIO_HIDDEN_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// Russian resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_RUS) +#ifdef _WIN32 +LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT +#pragma code_page(1251) +#endif //_WIN32 + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "..\\src\\resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#define APSTUDIO_HIDDEN_SYMBOLS\r\n" + "#include ""windows.h""\r\n" + "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "#include ""version.rc2""\0" +END + +#endif // APSTUDIO_INVOKED + +#endif // Russian resources +///////////////////////////////////////////////////////////////////////////// + + +///////////////////////////////////////////////////////////////////////////// +// English (U.S.) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page(1252) +#endif //_WIN32 + +///////////////////////////////////////////////////////////////////////////// +// +// Dialog +// + +IDD_PROTOS DIALOGEX 0, 0, 106, 138 +STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | + WS_CAPTION | WS_SYSMENU +CAPTION "Select protocols" +FONT 8, "MS Shell Dlg", 0, 0, 0x0 +BEGIN + DEFPUSHBUTTON "OK",IDOK,28,117,50,14 + CONTROL "List1",IDC_PROTOS,"SysListView32",LVS_LIST | + LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_NOSORTHEADER | + WS_BORDER | WS_TABSTOP,7,7,91,103 +END + +IDD_CONTACTS DIALOGEX 0, 0, 284, 234 +STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | + WS_CAPTION | WS_SYSMENU +CAPTION "Choose contacts..." +FONT 8, "MS Shell Dlg", 400, 0, 0x1 +BEGIN + LTEXT "Allow tooltip notifications for the following users:", + IDC_STATIC,8,9,268,9 + CONTROL "",IDC_CLIST,"CListControl",WS_TABSTOP | 0x3da,7,23,270, + 180,WS_EX_CLIENTEDGE + DEFPUSHBUTTON "OK",IDOK,171,213,50,14 + PUSHBUTTON "Cancel",IDCANCEL,227,213,50,14 +END + +IDD_OPTIONS DIALOGEX 0, 0, 316, 250 +STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD +EXSTYLE WS_EX_CONTROLPARENT +FONT 8, "MS Shell Dlg", 0, 0, 0x1 +BEGIN + GROUPBOX "Notify upon the following events",IDC_STATIC,5,7,304,32, + WS_GROUP + CONTROL "Online",IDC_ONLINE,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,15,17,46,14 + CONTROL "Offline",IDC_OFFLINE,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,66,17,46,14 + CONTROL "All other",IDC_OTHER,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,117,17,52,14 + CONTROL "Typing",IDC_TYPING,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,174,17,51,14 + PUSHBUTTON "Protocols",IDC_SEL_PROTO,254,162,46,14 + LTEXT "Suppress notifications upon connection for",IDC_STATIC, + 120,93,137,9 + EDITTEXT IDC_DELAYONCONN,259,91,27,12,ES_RIGHT | ES_NUMBER + CONTROL "Spin1",IDC_DELAYONCONNSPIN,"msctls_updown32", + UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | + UDS_ARROWKEYS | UDS_NOTHOUSANDS,280,86,11,14 + LTEXT "sec",IDC_STATIC,290,93,12,10 + CONTROL "Prefix proto name",IDC_PREFIX_PROTO,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,15,163,70,11 + GROUPBOX "Duration",IDC_GB_DURATION,5,43,304,30 + LTEXT "Show tooltip for",IDC_STATIC,15,55,51,10 + EDITTEXT IDC_DURATION,69,53,36,12,ES_RIGHT | ES_NUMBER + CONTROL "Spin1",IDC_DURATIONSPIN,"msctls_updown32", + UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | + UDS_ARROWKEYS | UDS_NOTHOUSANDS,100,47,10,14 + LTEXT "ms",IDC_STATIC,109,55,14,10 + CONTROL "Duration x2 upon online event",IDC_X2,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,159,55,137,10 + GROUPBOX "Double click on tooltip",IDC_GB_DBLCLICK,5,78,103,54 + CONTROL "Shows/Hides CList",IDC_RB_CLIST,"Button", + BS_AUTORADIOBUTTON | WS_TABSTOP,15,93,83,11 + CONTROL "Opens message dialog",IDC_RB_MSGDLG,"Button", + BS_AUTORADIOBUTTON | WS_TABSTOP,15,112,88,11 + GROUPBOX "Behavior",IDC_STATIC,113,78,196,54 + GROUPBOX "Misc",IDC_STATIC,5,136,304,44 + CONTROL "Obey 'Suppress online notification' settings", + IDC_CONJSOLN,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,119, + 112,164,11 + CONTROL "Auto positioning",IDC_AUTOPOS,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,15,147,75,11 + CONTROL "Transparent input",IDC_TRANSP_INPUT,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,96,147,81,11 + PUSHBUTTON "Preview",IDC_PREVIEW,201,162,46,14 + GROUPBOX "Translucency options (Windows 2000/XP only)", + IDC_GB_TRANSP,5,185,304,34 + CONTROL "Transparent tooltip",IDC_TRANSPARENCY,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,15,200,73,9 + CONTROL "Slider1",IDC_TRANSPARENCY_SLIDER,"msctls_trackbar32", + TBS_TOP | TBS_NOTICKS | WS_TABSTOP,94,199,170,11 + LTEXT "000%",IDC_TRANSPERC,273,201,22,9 + PUSHBUTTON "Contacts",IDC_IGNORE,254,144,46,14 + CONTROL "Idle",IDC_IDLE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP, + 227,17,51,14 +END + + +///////////////////////////////////////////////////////////////////////////// +// +// DESIGNINFO +// + +#ifdef APSTUDIO_INVOKED +GUIDELINES DESIGNINFO +BEGIN + IDD_PROTOS, DIALOG + BEGIN + LEFTMARGIN, 7 + RIGHTMARGIN, 99 + TOPMARGIN, 7 + BOTTOMMARGIN, 131 + END + + IDD_CONTACTS, DIALOG + BEGIN + LEFTMARGIN, 7 + RIGHTMARGIN, 277 + TOPMARGIN, 7 + BOTTOMMARGIN, 227 + END + + IDD_OPTIONS, DIALOG + BEGIN + VERTGUIDE, 5 + VERTGUIDE, 309 + HORZGUIDE, 246 + END +END +#endif // APSTUDIO_INVOKED + +#endif // English (U.S.) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/plugins/TooltipNotify/res/version.rc b/plugins/TooltipNotify/res/version.rc new file mode 100644 index 0000000000..e8bd32c519 --- /dev/null +++ b/plugins/TooltipNotify/res/version.rc @@ -0,0 +1,53 @@ +// +// version.rc2 - resources Microsoft Visual C++ does not edit directly +// + +#ifdef APSTUDIO_INVOKED +#error this file is not editable by Microsoft Visual C++ +#endif //APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +#include "afxres.h" +#include "..\src\version.h" + +VS_VERSION_INFO VERSIONINFO + FILEVERSION MAJOR,MINOR,BUILD,REVISION + PRODUCTVERSION MAJOR,MINOR,BUILD,REVISION + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments", "Shows a small tooltip above system tray area when a contact status is changed." + VALUE "CompanyName", "Gneedah software" + VALUE "FileDescription", "Tooltip Notify plugin for Miranda IM." + VALUE "FileVersion", "*,*,*,*" + VALUE "InternalName", "ttnotify.dll" + VALUE "LegalCopyright", "© 2004-2008 Gneedah software" + VALUE "OriginalFilename", "ttnotify.dll" + VALUE "ProductName", "Tooltip Notify" + VALUE "ProductVersion", "*,*,*,*" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + + +///////////////////////////////////////////////////////////////////////////// diff --git a/plugins/TooltipNotify/src/main.rc b/plugins/TooltipNotify/src/main.rc deleted file mode 100644 index fe1fbad85f..0000000000 --- a/plugins/TooltipNotify/src/main.rc +++ /dev/null @@ -1,204 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#define APSTUDIO_HIDDEN_SYMBOLS -#include "windows.h" -#undef APSTUDIO_HIDDEN_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// Russian resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_RUS) -#ifdef _WIN32 -LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT -#pragma code_page(1251) -#endif //_WIN32 - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#define APSTUDIO_HIDDEN_SYMBOLS\r\n" - "#include ""windows.h""\r\n" - "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "#include ""version.rc2""\0" -END - -#endif // APSTUDIO_INVOKED - -#endif // Russian resources -///////////////////////////////////////////////////////////////////////////// - - -///////////////////////////////////////////////////////////////////////////// -// English (U.S.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) -#endif //_WIN32 - -///////////////////////////////////////////////////////////////////////////// -// -// Dialog -// - -IDD_PROTOS DIALOGEX 0, 0, 106, 138 -STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | - WS_CAPTION | WS_SYSMENU -CAPTION "Select protocols" -FONT 8, "MS Shell Dlg", 0, 0, 0x0 -BEGIN - DEFPUSHBUTTON "OK",IDOK,28,117,50,14 - CONTROL "List1",IDC_PROTOS,"SysListView32",LVS_LIST | - LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_NOSORTHEADER | - WS_BORDER | WS_TABSTOP,7,7,91,103 -END - -IDD_CONTACTS DIALOGEX 0, 0, 284, 234 -STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | - WS_CAPTION | WS_SYSMENU -CAPTION "Choose contacts..." -FONT 8, "MS Shell Dlg", 400, 0, 0x1 -BEGIN - LTEXT "Allow tooltip notifications for the following users:", - IDC_STATIC,8,9,268,9 - CONTROL "",IDC_CLIST,"CListControl",WS_TABSTOP | 0x3da,7,23,270, - 180,WS_EX_CLIENTEDGE - DEFPUSHBUTTON "OK",IDOK,171,213,50,14 - PUSHBUTTON "Cancel",IDCANCEL,227,213,50,14 -END - -IDD_OPTIONS DIALOGEX 0, 0, 316, 250 -STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD -EXSTYLE WS_EX_CONTROLPARENT -FONT 8, "MS Shell Dlg", 0, 0, 0x1 -BEGIN - GROUPBOX "Notify upon the following events",IDC_STATIC,5,7,304,32, - WS_GROUP - CONTROL "Online",IDC_ONLINE,"Button",BS_AUTOCHECKBOX | - WS_TABSTOP,15,17,46,14 - CONTROL "Offline",IDC_OFFLINE,"Button",BS_AUTOCHECKBOX | - WS_TABSTOP,66,17,46,14 - CONTROL "All other",IDC_OTHER,"Button",BS_AUTOCHECKBOX | - WS_TABSTOP,117,17,52,14 - CONTROL "Typing",IDC_TYPING,"Button",BS_AUTOCHECKBOX | - WS_TABSTOP,174,17,51,14 - PUSHBUTTON "Protocols",IDC_SEL_PROTO,254,162,46,14 - LTEXT "Suppress notifications upon connection for",IDC_STATIC, - 120,93,137,9 - EDITTEXT IDC_DELAYONCONN,259,91,27,12,ES_RIGHT | ES_NUMBER - CONTROL "Spin1",IDC_DELAYONCONNSPIN,"msctls_updown32", - UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | - UDS_ARROWKEYS | UDS_NOTHOUSANDS,280,86,11,14 - LTEXT "sec",IDC_STATIC,290,93,12,10 - CONTROL "Prefix proto name",IDC_PREFIX_PROTO,"Button", - BS_AUTOCHECKBOX | WS_TABSTOP,15,163,70,11 - GROUPBOX "Duration",IDC_GB_DURATION,5,43,304,30 - LTEXT "Show tooltip for",IDC_STATIC,15,55,51,10 - EDITTEXT IDC_DURATION,69,53,36,12,ES_RIGHT | ES_NUMBER - CONTROL "Spin1",IDC_DURATIONSPIN,"msctls_updown32", - UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | - UDS_ARROWKEYS | UDS_NOTHOUSANDS,100,47,10,14 - LTEXT "ms",IDC_STATIC,109,55,14,10 - CONTROL "Duration x2 upon online event",IDC_X2,"Button", - BS_AUTOCHECKBOX | WS_TABSTOP,159,55,137,10 - GROUPBOX "Double click on tooltip",IDC_GB_DBLCLICK,5,78,103,54 - CONTROL "Shows/Hides CList",IDC_RB_CLIST,"Button", - BS_AUTORADIOBUTTON | WS_TABSTOP,15,93,83,11 - CONTROL "Opens message dialog",IDC_RB_MSGDLG,"Button", - BS_AUTORADIOBUTTON | WS_TABSTOP,15,112,88,11 - GROUPBOX "Behavior",IDC_STATIC,113,78,196,54 - GROUPBOX "Misc",IDC_STATIC,5,136,304,44 - CONTROL "Obey 'Suppress online notification' settings", - IDC_CONJSOLN,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,119, - 112,164,11 - CONTROL "Auto positioning",IDC_AUTOPOS,"Button",BS_AUTOCHECKBOX | - WS_TABSTOP,15,147,75,11 - CONTROL "Transparent input",IDC_TRANSP_INPUT,"Button", - BS_AUTOCHECKBOX | WS_TABSTOP,96,147,81,11 - PUSHBUTTON "Preview",IDC_PREVIEW,201,162,46,14 - GROUPBOX "Translucency options (Windows 2000/XP only)", - IDC_GB_TRANSP,5,185,304,34 - CONTROL "Transparent tooltip",IDC_TRANSPARENCY,"Button", - BS_AUTOCHECKBOX | WS_TABSTOP,15,200,73,9 - CONTROL "Slider1",IDC_TRANSPARENCY_SLIDER,"msctls_trackbar32", - TBS_TOP | TBS_NOTICKS | WS_TABSTOP,94,199,170,11 - LTEXT "000%",IDC_TRANSPERC,273,201,22,9 - PUSHBUTTON "Contacts",IDC_IGNORE,254,144,46,14 - CONTROL "Idle",IDC_IDLE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP, - 227,17,51,14 -END - - -///////////////////////////////////////////////////////////////////////////// -// -// DESIGNINFO -// - -#ifdef APSTUDIO_INVOKED -GUIDELINES DESIGNINFO -BEGIN - IDD_PROTOS, DIALOG - BEGIN - LEFTMARGIN, 7 - RIGHTMARGIN, 99 - TOPMARGIN, 7 - BOTTOMMARGIN, 131 - END - - IDD_CONTACTS, DIALOG - BEGIN - LEFTMARGIN, 7 - RIGHTMARGIN, 277 - TOPMARGIN, 7 - BOTTOMMARGIN, 227 - END - - IDD_OPTIONS, DIALOG - BEGIN - VERTGUIDE, 5 - VERTGUIDE, 309 - HORZGUIDE, 246 - END -END -#endif // APSTUDIO_INVOKED - -#endif // English (U.S.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// -#include "version.rc" -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - diff --git a/plugins/TooltipNotify/src/version.rc b/plugins/TooltipNotify/src/version.rc deleted file mode 100644 index da191b4d06..0000000000 --- a/plugins/TooltipNotify/src/version.rc +++ /dev/null @@ -1,52 +0,0 @@ -// -// version.rc2 - resources Microsoft Visual C++ does not edit directly -// - -#ifdef APSTUDIO_INVOKED -#error this file is not editable by Microsoft Visual C++ -#endif //APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -#include "version.h" - -VS_VERSION_INFO VERSIONINFO - FILEVERSION MAJOR,MINOR,BUILD,REVISION - PRODUCTVERSION MAJOR,MINOR,BUILD,REVISION - FILEFLAGSMASK 0x17L -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x4L - FILETYPE 0x2L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904b0" - BEGIN - VALUE "Comments", "Shows a small tooltip above system tray area when a contact status is changed." - VALUE "CompanyName", "Gneedah software" - VALUE "FileDescription", "Tooltip Notify plugin for Miranda IM." - VALUE "FileVersion", "*,*,*,*" - VALUE "InternalName", "ttnotify.dll" - VALUE "LegalCopyright", "© 2004-2008 Gneedah software" - VALUE "OriginalFilename", "ttnotify.dll" - VALUE "ProductName", "Tooltip Notify" - VALUE "ProductVersion", "*,*,*,*" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END - - -///////////////////////////////////////////////////////////////////////////// diff --git a/plugins/TooltipNotify/tooltipnotify-translation.txt b/plugins/TooltipNotify/tooltipnotify-translation.txt deleted file mode 100644 index 44862c316f..0000000000 --- a/plugins/TooltipNotify/tooltipnotify-translation.txt +++ /dev/null @@ -1,55 +0,0 @@ -; Common strings that belong to many files -;[Idle] -;[Offline] -;[Online] -;[Typing] - -; ../../plugins/TooltipNotify/src/TooltipNotify.cpp -;[** New contacts **] -;[** Unknown contacts **] -;[Appearance] -;[Away] -;[DND] -;[Free for chat] -;[Invisible] -;[N/A] -;[Not Idle] -;[Occupied] -;[Tooltip Notify] -;[Tooltip Notify: Offline] -;[Tooltip Notify: Online] -;[Tooltip Notify: Other] -;[Tooltip Notify: Typing] -;[Unknown] -;[is] - -; ../../plugins/TooltipNotify/src/main.rc -;[All other] -;[Allow tooltip notifications for the following users:] -;[Auto positioning] -;[Behavior] -;[Cancel] -;[Choose contacts...] -;[Contacts] -;[Double click on tooltip] -;[Duration] -;[Duration x2 upon online event] -;[Misc] -;[Notify upon the following events] -;[OK] -;[Obey 'Suppress online notification' settings] -;[Opens message dialog] -;[Prefix proto name] -;[Preview] -;[Protocols] -;[Select protocols] -;[Show tooltip for] -;[Shows/Hides CList] -;[Slider1] -;[Spin1] -;[Suppress notifications upon connection for] -;[Translucency options (Windows 2000/XP only)] -;[Transparent input] -;[Transparent tooltip] -;[ms] -;[sec] diff --git a/plugins/TooltipNotify/ttnotify_10.vcxproj b/plugins/TooltipNotify/ttnotify_10.vcxproj index 462b200e03..87907f9dca 100644 --- a/plugins/TooltipNotify/ttnotify_10.vcxproj +++ b/plugins/TooltipNotify/ttnotify_10.vcxproj @@ -73,7 +73,7 @@ Disabled ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTNOTIFY_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebugDLL @@ -96,7 +96,7 @@ Disabled ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;_DEBUG;_WINDOWS;_USRDLL;TTNOTIFY_EXPORTS;%(PreprocessorDefinitions) + WIN64;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL Level3 @@ -119,7 +119,7 @@ OnlyExplicitInline Size ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTNOTIFY_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) Fast Level3 true @@ -144,7 +144,7 @@ OnlyExplicitInline Size ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;NDEBUG;_WINDOWS;_USRDLL;TTNOTIFY_EXPORTS;%(PreprocessorDefinitions) + WIN64;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) Fast Level3 true @@ -181,13 +181,8 @@ - - - - - - - + + diff --git a/plugins/TooltipNotify/ttnotify_10.vcxproj.filters b/plugins/TooltipNotify/ttnotify_10.vcxproj.filters index d35110bfa0..dbbaafbbf1 100644 --- a/plugins/TooltipNotify/ttnotify_10.vcxproj.filters +++ b/plugins/TooltipNotify/ttnotify_10.vcxproj.filters @@ -1,73 +1,68 @@  - - {c12316ee-1d9e-470b-a9d4-2f96e30ea10d} + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - {9fe30d32-97fa-41fc-8586-9f52a8580112} + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - src + Source Files - src + Source Files - src + Source Files - src + Source Files - src + Source Files - src + Source Files - src + Header Files - src + Header Files - src + Header Files - src + Header Files - src + Header Files - src + Header Files - src + Header Files - - src + + Resource Files + + + Resource Files - - - - doc - - - doc - - - doc - - - doc - \ No newline at end of file -- cgit v1.2.3