From a33833212f040272fc6c97047c8cb335b6f5405a Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Tue, 24 Jul 2012 06:41:19 +0000 Subject: SimpleAR, SimpleStatusMsg, SmileyAdd, SpellChecker: changed folder structure git-svn-id: http://svn.miranda-ng.org/main/trunk@1149 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SpellChecker/commons.h | 154 ----------------------------------------- 1 file changed, 154 deletions(-) delete mode 100644 plugins/SpellChecker/commons.h (limited to 'plugins/SpellChecker/commons.h') diff --git a/plugins/SpellChecker/commons.h b/plugins/SpellChecker/commons.h deleted file mode 100644 index c03fc3d7cd..0000000000 --- a/plugins/SpellChecker/commons.h +++ /dev/null @@ -1,154 +0,0 @@ -/* -Copyright (C) 2006-2010 Ricardo Pescuma Domenecci - -This is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. - -This 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 -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this file; see the file license.txt. If -not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. -*/ - -#ifndef __COMMONS_H__ -# define __COMMONS_H__ - - -#define OEMRESOURCE -#define _CRT_SECURE_NO_WARNINGS -#include -#include -#include -#include -#include -#include -#include -#include - -// Disable "...truncated to '255' characters in the debug information" warnings -#pragma warning(disable: 4786) - -#include -#include -#include -using namespace std; - - -// Miranda headers -#define MIRANDA_VER 0x0900 -#define MIRANDA_CUSTOM_LP -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -//own includes -#include "m_folders.h" -#include "m_metacontacts.h" -#include "m_variables.h" -#include "m_userinfoex.h" - -#include "../utils/mir_memory.h" -#include "../utils/mir_options.h" -#include "../utils/mir_icons.h" -#include "../utils/tstring.h" -#include "../utils/utf8_helpers.h" -#include "../utils/scope.h" - -#include "resource.h" -#include "Version.h" -#include "m_spellchecker.h" -#include "options.h" -#include "autoreplace.h" -#include "dictionary.h" -#include "ardialog.h" -#include "RichEdit.h" - - -#define MODULE_NAME "SpellChecker" - -#define FLAGS_DLL_FOLDER _T("%miranda_path%\\Icons") -#define CUSTOM_DICTIONARIES_FOLDER _T("%miranda_userdata%\\Dictionaries") -#define DICTIONARIES_FOLDER _T("%miranda_path%\\Dictionaries") - -// Global Variables -extern HINSTANCE hInst; -extern BOOL uinfoex_enabled; -extern BOOL variables_enabled; - - -#define MAX_REGS(_A_) ( sizeof(_A_) / sizeof(_A_[0])) -#define FREE(_m_) if (_m_ != NULL) { free(_m_); _m_ = NULL; } - - -#define ICON_SIZE 16 - - -extern LIST languages; - -struct WrongWordPopupMenuData -{ - Suggestions suggestions; - TCHAR *word; - CHARRANGE pos; - HMENU hMeSubMenu; - HMENU hCorrectSubMenu; - HMENU hReplaceSubMenu; -}; - -struct Dialog -{ - HWND hwnd; - HWND hwnd_owner; - HANDLE hContact; - char name[64]; - Dictionary *lang; - TCHAR lang_name[32]; - WNDPROC old_edit_proc; - WNDPROC owner_old_edit_proc; - BOOL enabled; - BOOL srmm; - - RichEdit *re; - - HWND hwnd_menu_owner; - WNDPROC old_menu_proc; - - BOOL changed; - BOOL markedSomeWord; - int old_text_len; - - // Popup data - HMENU hLanguageSubMenu; - HMENU hWrongWordsSubMenu; - vector *wrong_words; -}; - -HICON IcoLib_LoadIcon(Dictionary *dict, BOOL copy = FALSE); - -BOOL CenterParent(HWND hwnd); -BOOL CreatePath(const TCHAR *path); -TCHAR *lstrtrim(TCHAR *str); -BOOL lstreq(TCHAR *a, TCHAR *b, size_t len = -1); -BOOL IsNumber(TCHAR c); - -#endif // __COMMONS_H__ -- cgit v1.2.3