diff options
author | kreol13 <kreol13@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-04-21 13:05:15 +0000 |
---|---|---|
committer | kreol13 <kreol13@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-04-21 13:05:15 +0000 |
commit | e44e7d0d204198d771a328d1553f6c3fcc548395 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /ctrl_base.cpp | |
parent | 0df0be475dcc0bb52c6c4ea0c2e63d68b1a91db1 (diff) |
ups...
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@5 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'ctrl_base.cpp')
-rw-r--r-- | ctrl_base.cpp | 301 |
1 files changed, 0 insertions, 301 deletions
diff --git a/ctrl_base.cpp b/ctrl_base.cpp deleted file mode 100644 index 8203a5c..0000000 --- a/ctrl_base.cpp +++ /dev/null @@ -1,301 +0,0 @@ -/*
-UserinfoEx plugin for Miranda IM
-
-Copyright:
-ฉ 2006-2010 DeathAxe, Yasnovidyashii, Merlin, K. Romanov, Kreol
-
-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; either version 2
-of the License, or (at your option) any later version.
-
-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, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-===============================================================================
-
-File name : $HeadURL: https://userinfoex.googlecode.com/svn/trunk/ctrl_base.cpp $
-Revision : $Revision: 187 $
-Last change on : $Date: 2010-09-08 16:05:54 +0400 (ะกั, 08 ัะตะฝ 2010) $
-Last change by : $Author: ing.u.horn $
-
-===============================================================================
-*/
-
-#include "commonheaders.h"
-#include "ctrl_base.h"
-
-/***********************************************************************************************************
- * Old methods for setting text color of dialog controls
- ***********************************************************************************************************/
-
-COLORREF clrBoth = -1;
-COLORREF clrChanged = -1;
-COLORREF clrCustom = -1;
-COLORREF clrNormal = -1;
-COLORREF clrMeta = -1;
-
-VOID Ctrl_InitTextColours()
-{
- clrBoth = DB::Setting::GetDWord(NULL, MODNAME, SET_PROPSHEET_CLRBOTH, RGB(0, 160, 10));
- clrChanged = DB::Setting::GetDWord(NULL, MODNAME, SET_PROPSHEET_CLRCHANGED, RGB(190, 0, 0));
- clrCustom = DB::Setting::GetDWord(NULL, MODNAME, SET_PROPSHEET_CLRCUSTOM, RGB(0, 10, 130));
- clrNormal = DB::Setting::GetDWord(NULL, MODNAME, SET_PROPSHEET_CLRNORMAL, RGB(90, 90, 90));
- clrMeta = DB::Setting::GetDWord(NULL, MODNAME, SET_PROPSHEET_CLRMETA, RGB(120, 40, 130));
-}
-
-INT_PTR CALLBACK Ctrl_SetTextColour(HDC hdc, WORD wFlags)
-{
- // OLD stuff
- SetTextColor(hdc,
- (wFlags & CTRLF_CHANGED)
- ? clrChanged : ((wFlags & CTRLF_HASCUSTOM) && (wFlags & (CTRLF_HASPROTO|CTRLF_HASMETA)))
- ? clrBoth : (wFlags & CTRLF_HASMETA)
- ? clrMeta : (wFlags & CTRLF_HASCUSTOM)
- ? clrCustom : clrNormal
- );
- return (INT_PTR)GetStockObject(WHITE_BRUSH);
-}
-
-INT_PTR CALLBACK Ctrl_SetTextColour(HWND hCtrl, HDC hdc)
-{
- if (hCtrl && DB::Setting::GetByte(SET_PROPSHEET_SHOWCOLOURS, 1))
- {
- LPCTRL pCtrl = (LPCTRL)GetUserData(hCtrl);
- if (PtrIsValid(pCtrl))
- return Ctrl_SetTextColour(hdc, pCtrl->wFlags);
- }
- return FALSE;
-}
-
-/***********************************************************************************************************
- * Implementation of CBaseCtrl
- ***********************************************************************************************************/
-
-/**
- *
- *
- **/
-CBaseCtrl::CBaseCtrl()
-{
- ZeroMemory(this, sizeof(*this));
- _cbSize = sizeof(CBaseCtrl);
-}
-
-/**
- *
- *
- **/
-CBaseCtrl::CBaseCtrl(HWND hDlg, WORD idCtrl, LPCSTR pszSetting)
-{
- ZeroMemory(this, sizeof(*this));
- _cbSize = sizeof(CBaseCtrl);
- _hwnd = GetDlgItem(hDlg, idCtrl);
- if (!IsWindow(_hwnd)) throw;
- _idCtrl = idCtrl;
- _pszModule = USERINFO;
- _pszSetting = pszSetting;
- SetUserData(_hwnd, this);
-}
-
-/**
- *
- *
- **/
-CBaseCtrl::CBaseCtrl(HWND hDlg, WORD idCtrl, LPCSTR pszModule, LPCSTR pszSetting)
-{
- ZeroMemory(this, sizeof(*this));
- _cbSize = sizeof(CBaseCtrl);
- _hwnd = GetDlgItem(hDlg, idCtrl);
- if (!IsWindow(_hwnd)) throw;
- _idCtrl = idCtrl;
- _pszModule = pszModule;
- _pszSetting = pszSetting;
- SetUserData(_hwnd, this);
-}
-
-
-/**
- *
- *
- **/
-CBaseCtrl::~CBaseCtrl()
-{
- SetUserData(_hwnd, NULL);
- MIR_FREE(_pszValue);
-}
-
-/**
- *
- *
- **/
-INT_PTR CBaseCtrl::OnSetTextColour(HDC hdc)
-{
- SetTextColor(hdc,
- (_Flags.B.hasChanged)
- ? clrChanged : ((_Flags.B.hasCustom) && (_Flags.B.hasProto || _Flags.B.hasMeta))
- ? clrBoth : _Flags.B.hasMeta
- ? clrMeta : _Flags.B.hasCustom
- ? clrCustom : clrNormal
- );
- return (INT_PTR)GetStockObject(WHITE_BRUSH);
-}
-
-/***********************************************************************************************************
- * Implementation of CCtrlList
- ***********************************************************************************************************/
-
-/**
- *
- *
- **/
-CCtrlList* CCtrlList::CreateObj(HWND hOwnerDlg)
-{
- Ctrl_InitTextColours();
- return new CCtrlList(hOwnerDlg);
-}
-
-/**
- *
- *
- **/
-INT_PTR CCtrlList::sortFunc(CBaseCtrl *p1, CBaseCtrl *p2)
-{
- return p1->_idCtrl - p2->_idCtrl;
-}
-
-/**
- *
- *
- **/
-CCtrlList::CCtrlList(HWND hOwnerDlg)
-: LIST<CBaseCtrl>(10, (FTSortFunc) CCtrlList::sortFunc)
-{
- _hOwnerDlg = hOwnerDlg;
- SetUserData(_hOwnerDlg, this);
-}
-
-/**
- *
- *
- **/
-CCtrlList::~CCtrlList()
-{
- INT_PTR i;
-
- SetUserData(_hOwnerDlg, NULL);
- // delete data
- for (i = 0 ; i < count; i++)
- {
- delete (*this)[i];
- }
- // delete the list
- LIST<CBaseCtrl>::destroy();
-}
-
-/**
- *
- *
- **/
-VOID CCtrlList::Release()
-{
- delete this;
-}
-
-/**
- *
- *
- **/
-VOID CCtrlList::OnReset()
-{
- INT_PTR i;
-
- for (i = 0; i < count; i++)
- {
- if (items[i])
- {
- items[i]->OnReset();
- }
- }
-}
-
-/**
- *
- *
- **/
-BOOL CCtrlList::OnInfoChanged(HANDLE hContact, LPCSTR pszProto)
-{
- BOOL bChanged = 0;
- INT_PTR i;
-
- for (i = 0; i < count; i++)
- {
- if (PtrIsValid(items[i]))
- {
- bChanged |= items[i]->OnInfoChanged(hContact, pszProto);
- }
- }
- return bChanged;
-}
-
-/**
- *
- *
- **/
-VOID CCtrlList::OnApply(HANDLE hContact, LPCSTR pszProto)
-{
- INT_PTR i;
-
- for (i = 0; i < count; i++)
- {
- if (PtrIsValid(items[i]))
- {
- items[i]->OnApply(hContact, pszProto);
- }
- }
-}
-
-/**
- *
- *
- **/
-VOID CCtrlList::OnChangedByUser(WORD idCtrl, WORD wChangedMsg)
-{
- // prefilter messages to avoid unessesary search operations
- switch (wChangedMsg)
- {
- case EN_UPDATE:
- case EN_CHANGE:
- case CBN_SELCHANGE:
- {
- CBaseCtrl *pResult = CBaseCtrl::GetObj(_hOwnerDlg, idCtrl);
- if (PtrIsValid(pResult) && (pResult->_cbSize == sizeof(CBaseCtrl)))
- {
- pResult->OnChangedByUser(wChangedMsg);
- }
- }
- }
-}
-
-/**
- *
- *
- **/
-INT_PTR CCtrlList::OnSetTextColour(HWND hCtrl, HDC hdc)
-{
- if (IsWindow(hCtrl) && myGlobals.ShowPropsheetColours)
- {
- CBaseCtrl* pCtrl = CBaseCtrl::GetObj(hCtrl);
- if (PtrIsValid(pCtrl) && (pCtrl->_cbSize = sizeof(CBaseCtrl)))
- {
- return pCtrl->OnSetTextColour(hdc);
- }
- }
- return FALSE;
-}
|