123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719 |
- #include "StdAfx.h"
- #include "UIEdit.h"
- namespace DuiLib
- {
- class CEditWnd : public CWindowWnd
- {
- public:
- CEditWnd();
- void Init(CEditUI* pOwner);
- RECT CalPos();
- LPCTSTR GetWindowClassName() const;
- LPCTSTR GetSuperClassName() const;
- void OnFinalMessage(HWND hWnd);
- LRESULT HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam);
- LRESULT OnKillFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
- LRESULT OnEditChanged(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
- protected:
- enum {
- DEFAULT_TIMERID = 20,
- };
- CEditUI* m_pOwner;
- HBRUSH m_hBkBrush;
- bool m_bInit;
- bool m_bDrawCaret;
- };
- CEditWnd::CEditWnd() : m_pOwner(NULL), m_hBkBrush(NULL), m_bInit(false), m_bDrawCaret(false)
- {
- }
- void CEditWnd::Init(CEditUI* pOwner)
- {
- m_pOwner = pOwner;
- RECT rcPos = CalPos();
- UINT uStyle = 0;
- if(m_pOwner->GetManager()->IsLayered()) {
- uStyle = WS_POPUP | ES_AUTOHSCROLL | WS_VISIBLE;
- RECT rcWnd={0};
- ::GetWindowRect(m_pOwner->GetManager()->GetPaintWindow(), &rcWnd);
- rcPos.left += rcWnd.left;
- rcPos.right += rcWnd.left;
- rcPos.top += rcWnd.top - 1;
- rcPos.bottom += rcWnd.top - 1;
- }
- else {
- uStyle = WS_CHILD | ES_AUTOHSCROLL;
- }
- UINT uTextStyle = m_pOwner->GetTextStyle();
- if(uTextStyle & DT_LEFT) uStyle |= ES_LEFT;
- else if(uTextStyle & DT_CENTER) uStyle |= ES_CENTER;
- else if(uTextStyle & DT_RIGHT) uStyle |= ES_RIGHT;
- if( m_pOwner->IsPasswordMode() ) uStyle |= ES_PASSWORD;
- Create(m_pOwner->GetManager()->GetPaintWindow(), NULL, uStyle, 0, rcPos);
- HFONT hFont=NULL;
- int iFontIndex=m_pOwner->GetFont();
- if (iFontIndex!=-1)
- hFont = m_pOwner->GetManager()->GetFont(iFontIndex);
- if (hFont == NULL)
- hFont = m_pOwner->GetManager()->GetDefaultFontInfo()->hFont;
- SetWindowFont(m_hWnd, hFont, TRUE);
- Edit_LimitText(m_hWnd, m_pOwner->GetMaxChar());
- if( m_pOwner->IsPasswordMode() ) Edit_SetPasswordChar(m_hWnd, m_pOwner->GetPasswordChar());
- Edit_SetText(m_hWnd, m_pOwner->GetText());
- Edit_SetModify(m_hWnd, FALSE);
- SendMessage(EM_SETMARGINS, EC_LEFTMARGIN | EC_RIGHTMARGIN, MAKELPARAM(0, 0));
- Edit_Enable(m_hWnd, m_pOwner->IsEnabled() == true);
- Edit_SetReadOnly(m_hWnd, m_pOwner->IsReadOnly() == true);
- //Styls
- LONG styleValue = ::GetWindowLong(m_hWnd, GWL_STYLE);
- styleValue |= pOwner->GetWindowStyls();
- ::SetWindowLong(GetHWND(), GWL_STYLE, styleValue);
- //Styls
- ::ShowWindow(m_hWnd, SW_SHOWNOACTIVATE);
- ::SetFocus(m_hWnd);
- if (m_pOwner->IsAutoSelAll()) {
- int nSize = GetWindowTextLength(m_hWnd);
- if( nSize == 0 ) nSize = 1;
- Edit_SetSel(m_hWnd, 0, nSize);
- }
- else {
- int nSize = GetWindowTextLength(m_hWnd);
- Edit_SetSel(m_hWnd, nSize, nSize);
- }
- m_bInit = true;
- }
- RECT CEditWnd::CalPos()
- {
- CDuiRect rcPos = m_pOwner->GetPos();
- RECT rcInset = m_pOwner->GetTextPadding();
- rcPos.left += rcInset.left;
- rcPos.top += rcInset.top;
- rcPos.right -= rcInset.right;
- rcPos.bottom -= rcInset.bottom;
- LONG lEditHeight = m_pOwner->GetManager()->GetFontInfo(m_pOwner->GetFont())->tm.tmHeight;
- if( lEditHeight < rcPos.GetHeight() ) {
- rcPos.top += (rcPos.GetHeight() - lEditHeight) / 2;
- rcPos.bottom = rcPos.top + lEditHeight;
- }
- CControlUI* pParent = m_pOwner;
- RECT rcParent;
- while( pParent = pParent->GetParent() ) {
- if( !pParent->IsVisible() ) {
- rcPos.left = rcPos.top = rcPos.right = rcPos.bottom = 0;
- break;
- }
- rcParent = pParent->GetClientPos();
- if( !::IntersectRect(&rcPos, &rcPos, &rcParent) ) {
- rcPos.left = rcPos.top = rcPos.right = rcPos.bottom = 0;
- break;
- }
- }
- return rcPos;
- }
- LPCTSTR CEditWnd::GetWindowClassName() const
- {
- return _T("EditWnd");
- }
- LPCTSTR CEditWnd::GetSuperClassName() const
- {
- return WC_EDIT;
- }
- void CEditWnd::OnFinalMessage(HWND hWnd)
- {
- m_pOwner->Invalidate();
- // Clear reference and die
- if( m_hBkBrush != NULL ) ::DeleteObject(m_hBkBrush);
- if (m_pOwner->GetManager()->IsLayered()) {
- m_pOwner->GetManager()->RemoveNativeWindow(hWnd);
- }
- m_pOwner->m_pWindow = NULL;
- delete this;
- }
- LRESULT CEditWnd::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)
- {
- LRESULT lRes = 0;
- BOOL bHandled = TRUE;
- if( uMsg == WM_CREATE ) {
- bHandled = FALSE;
- }
- else if( uMsg == WM_KILLFOCUS ) lRes = OnKillFocus(uMsg, wParam, lParam, bHandled);
- else if( uMsg == OCM_COMMAND ) {
- if( GET_WM_COMMAND_CMD(wParam, lParam) == EN_CHANGE ) lRes = OnEditChanged(uMsg, wParam, lParam, bHandled);
- else if( GET_WM_COMMAND_CMD(wParam, lParam) == EN_UPDATE ) {
- RECT rcClient;
- ::GetClientRect(m_hWnd, &rcClient);
- ::InvalidateRect(m_hWnd, &rcClient, FALSE);
- }
- }
- else if( uMsg == WM_KEYDOWN && TCHAR(wParam) == VK_RETURN ){
- m_pOwner->GetManager()->SendNotify(m_pOwner, DUI_MSGTYPE_RETURN);
- }
- else if( uMsg == WM_KEYDOWN && TCHAR(wParam) == VK_TAB ){
- if (m_pOwner->GetManager()->IsLayered()) {
- m_pOwner->GetManager()->SetNextTabControl();
- }
- }
- else if( uMsg == OCM__BASE + WM_CTLCOLOREDIT || uMsg == OCM__BASE + WM_CTLCOLORSTATIC ) {
- ::SetBkMode((HDC)wParam, TRANSPARENT);
- DWORD dwTextColor = m_pOwner->GetTextColor();
- ::SetTextColor((HDC)wParam, RGB(GetBValue(dwTextColor),GetGValue(dwTextColor),GetRValue(dwTextColor)));
- DWORD clrColor = m_pOwner->GetNativeEditBkColor();
- if (clrColor < 0xFF000000) {
- if (m_hBkBrush != NULL) ::DeleteObject(m_hBkBrush);
- RECT rcWnd = m_pOwner->GetManager()->GetNativeWindowRect(m_hWnd);
- HBITMAP hBmpEditBk = CRenderEngine::GenerateBitmap(m_pOwner->GetManager(), rcWnd, m_pOwner, clrColor);
- m_hBkBrush = ::CreatePatternBrush(hBmpEditBk);
- ::DeleteObject(hBmpEditBk);
- }
- else {
- if (m_hBkBrush == NULL) {
- m_hBkBrush = ::CreateSolidBrush(RGB(GetBValue(clrColor), GetGValue(clrColor), GetRValue(clrColor)));
- }
- }
- return (LRESULT)m_hBkBrush;
- }
- else if( uMsg == WM_PAINT) {
- bHandled = FALSE;
- }
- else if( uMsg == WM_PRINT ) {
- bHandled = FALSE;
- }
- else if( uMsg == WM_TIMER ) {
- if (wParam == CARET_TIMERID) {
- m_bDrawCaret = !m_bDrawCaret;
- RECT rcClient;
- ::GetClientRect(m_hWnd, &rcClient);
- ::InvalidateRect(m_hWnd, &rcClient, FALSE);
- return 0;
- }
- bHandled = FALSE;
- }
- else bHandled = FALSE;
- if( !bHandled ) return CWindowWnd::HandleMessage(uMsg, wParam, lParam);
- return lRes;
- }
- LRESULT CEditWnd::OnKillFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
- {
- LRESULT lRes = ::DefWindowProc(m_hWnd, uMsg, wParam, lParam);
- PostMessage(WM_CLOSE);
- return lRes;
- }
- LRESULT CEditWnd::OnEditChanged(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
- {
- if( !m_bInit ) return 0;
- if( m_pOwner == NULL ) return 0;
- // Copy text back
- int cchLen = ::GetWindowTextLength(m_hWnd) + 1;
- LPTSTR pstr = static_cast<LPTSTR>(_alloca(cchLen * sizeof(TCHAR)));
- ASSERT(pstr);
- if( pstr == NULL ) return 0;
- ::GetWindowText(m_hWnd, pstr, cchLen);
- m_pOwner->m_sText = pstr;
- m_pOwner->GetManager()->SendNotify(m_pOwner, DUI_MSGTYPE_TEXTCHANGED);
- if( m_pOwner->GetManager()->IsLayered() ) m_pOwner->Invalidate();
- return 0;
- }
- /////////////////////////////////////////////////////////////////////////////////////
- //
- //
- IMPLEMENT_DUICONTROL(CEditUI)
- CEditUI::CEditUI() : m_pWindow(NULL), m_uMaxChar(255), m_bReadOnly(false),
- m_bPasswordMode(false), m_cPasswordChar(_T('*')), m_bAutoSelAll(false), m_uButtonState(0),
- m_dwEditbkColor(0xFFFFFFFF), m_dwEditTextColor(0x00000000), m_iWindowStyls(0),m_dwTipValueColor(0xFFBAC0C5)
- {
- SetTextPadding(CDuiRect(4, 3, 4, 3));
- SetBkColor(0xFFFFFFFF);
- }
- LPCTSTR CEditUI::GetClass() const
- {
- return _T("EditUI");
- }
- LPVOID CEditUI::GetInterface(LPCTSTR pstrName)
- {
- if( _tcsicmp(pstrName, DUI_CTR_EDIT) == 0 ) return static_cast<CEditUI*>(this);
- return CLabelUI::GetInterface(pstrName);
- }
- UINT CEditUI::GetControlFlags() const
- {
- if( !IsEnabled() ) return CControlUI::GetControlFlags();
- return UIFLAG_SETCURSOR | UIFLAG_TABSTOP;
- }
- void CEditUI::DoEvent(TEventUI& event)
- {
- if( !IsMouseEnabled() && event.Type > UIEVENT__MOUSEBEGIN && event.Type < UIEVENT__MOUSEEND ) {
- if( m_pParent != NULL ) m_pParent->DoEvent(event);
- else CLabelUI::DoEvent(event);
- return;
- }
- if( event.Type == UIEVENT_SETCURSOR && IsEnabled() )
- {
- ::SetCursor(::LoadCursor(NULL, MAKEINTRESOURCE(IDC_IBEAM)));
- return;
- }
- if( event.Type == UIEVENT_WINDOWSIZE )
- {
- if( m_pWindow != NULL ) m_pManager->SetFocusNeeded(this);
- }
- if( event.Type == UIEVENT_SCROLLWHEEL )
- {
- if( m_pWindow != NULL ) return;
- }
- if( event.Type == UIEVENT_SETFOCUS && IsEnabled() )
- {
- if( m_pWindow ) return;
- m_pWindow = new CEditWnd();
- ASSERT(m_pWindow);
- m_pWindow->Init(this);
- Invalidate();
- }
- if( event.Type == UIEVENT_KILLFOCUS && IsEnabled() )
- {
- Invalidate();
- }
- if( event.Type == UIEVENT_BUTTONDOWN || event.Type == UIEVENT_DBLCLICK || event.Type == UIEVENT_RBUTTONDOWN)
- {
- if( IsEnabled() ) {
- GetManager()->ReleaseCapture();
- if( IsFocused() && m_pWindow == NULL )
- {
- m_pWindow = new CEditWnd();
- ASSERT(m_pWindow);
- m_pWindow->Init(this);
- if( PtInRect(&m_rcItem, event.ptMouse) )
- {
- int nSize = GetWindowTextLength(*m_pWindow);
- if( nSize == 0 ) nSize = 1;
- Edit_SetSel(*m_pWindow, 0, nSize);
- }
- }
- else if( m_pWindow != NULL )
- {
- if (!m_bAutoSelAll) {
- RECT rcTextPadding = GetTextPadding();
- POINT pt = event.ptMouse;
- pt.x -= m_rcItem.left + rcTextPadding.left;
- pt.y -= m_rcItem.top + rcTextPadding.top;
- Edit_SetSel(*m_pWindow, 0, 0);
- ::SendMessage(*m_pWindow, WM_LBUTTONDOWN, event.wParam, MAKELPARAM(pt.x, pt.y));
- }
- }
- }
- return;
- }
- if( event.Type == UIEVENT_MOUSEMOVE )
- {
- return;
- }
- if( event.Type == UIEVENT_BUTTONUP )
- {
- return;
- }
- if( event.Type == UIEVENT_CONTEXTMENU )
- {
- return;
- }
- if( event.Type == UIEVENT_MOUSEENTER )
- {
- if( ::PtInRect(&m_rcItem, event.ptMouse ) ) {
- if( IsEnabled() ) {
- if( (m_uButtonState & UISTATE_HOT) == 0 ) {
- m_uButtonState |= UISTATE_HOT;
- Invalidate();
- }
- }
- }
- }
- if( event.Type == UIEVENT_MOUSELEAVE )
- {
- if( IsEnabled() ) {
- m_uButtonState &= ~UISTATE_HOT;
- Invalidate();
- }
- return;
- }
- CLabelUI::DoEvent(event);
- }
- void CEditUI::SetEnabled(bool bEnable)
- {
- CControlUI::SetEnabled(bEnable);
- if( !IsEnabled() ) {
- m_uButtonState = 0;
- }
- }
- void CEditUI::SetText(LPCTSTR pstrText)
- {
- m_sText = pstrText;
- if( m_pWindow != NULL ) Edit_SetText(*m_pWindow, m_sText);
- Invalidate();
- }
- void CEditUI::SetMaxChar(UINT uMax)
- {
- m_uMaxChar = uMax;
- if( m_pWindow != NULL ) Edit_LimitText(*m_pWindow, m_uMaxChar);
- }
- UINT CEditUI::GetMaxChar()
- {
- return m_uMaxChar;
- }
- void CEditUI::SetReadOnly(bool bReadOnly)
- {
- if( m_bReadOnly == bReadOnly ) return;
- m_bReadOnly = bReadOnly;
- if( m_pWindow != NULL ) Edit_SetReadOnly(*m_pWindow, m_bReadOnly);
- Invalidate();
- }
- bool CEditUI::IsReadOnly() const
- {
- return m_bReadOnly;
- }
- void CEditUI::SetNumberOnly(bool bNumberOnly)
- {
- if( bNumberOnly )
- {
- m_iWindowStyls |= ES_NUMBER;
- }
- else
- {
- m_iWindowStyls &= ~ES_NUMBER;
- }
- }
- bool CEditUI::IsNumberOnly() const
- {
- return (m_iWindowStyls & ES_NUMBER) ? true:false;
- }
- int CEditUI::GetWindowStyls() const
- {
- return m_iWindowStyls;
- }
- void CEditUI::SetPasswordMode(bool bPasswordMode)
- {
- if( m_bPasswordMode == bPasswordMode ) return;
- m_bPasswordMode = bPasswordMode;
- Invalidate();
- if( m_pWindow != NULL ) {
- LONG styleValue = ::GetWindowLong(*m_pWindow, GWL_STYLE);
- bPasswordMode ? styleValue |= ES_PASSWORD : styleValue &= ~ES_PASSWORD;
- ::SetWindowLong(*m_pWindow, GWL_STYLE, styleValue);
- }
- }
- bool CEditUI::IsPasswordMode() const
- {
- return m_bPasswordMode;
- }
- void CEditUI::SetPasswordChar(TCHAR cPasswordChar)
- {
- if( m_cPasswordChar == cPasswordChar ) return;
- m_cPasswordChar = cPasswordChar;
- if( m_pWindow != NULL ) Edit_SetPasswordChar(*m_pWindow, m_cPasswordChar);
- Invalidate();
- }
- TCHAR CEditUI::GetPasswordChar() const
- {
- return m_cPasswordChar;
- }
- LPCTSTR CEditUI::GetNormalImage()
- {
- return m_sNormalImage;
- }
- void CEditUI::SetNormalImage(LPCTSTR pStrImage)
- {
- m_sNormalImage = pStrImage;
- Invalidate();
- }
- LPCTSTR CEditUI::GetHotImage()
- {
- return m_sHotImage;
- }
- void CEditUI::SetHotImage(LPCTSTR pStrImage)
- {
- m_sHotImage = pStrImage;
- Invalidate();
- }
- LPCTSTR CEditUI::GetFocusedImage()
- {
- return m_sFocusedImage;
- }
- void CEditUI::SetFocusedImage(LPCTSTR pStrImage)
- {
- m_sFocusedImage = pStrImage;
- Invalidate();
- }
- LPCTSTR CEditUI::GetDisabledImage()
- {
- return m_sDisabledImage;
- }
- void CEditUI::SetDisabledImage(LPCTSTR pStrImage)
- {
- m_sDisabledImage = pStrImage;
- Invalidate();
- }
- void CEditUI::SetNativeEditBkColor(DWORD dwBkColor)
- {
- m_dwEditbkColor = dwBkColor;
- }
- DWORD CEditUI::GetNativeEditBkColor() const
- {
- return m_dwEditbkColor;
- }
- void CEditUI::SetNativeEditTextColor( LPCTSTR pStrColor )
- {
- if( *pStrColor == _T('#')) pStrColor = ::CharNext(pStrColor);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pStrColor, &pstr, 16);
- m_dwEditTextColor = clrColor;
- }
- DWORD CEditUI::GetNativeEditTextColor() const
- {
- return m_dwEditTextColor;
- }
- bool CEditUI::IsAutoSelAll()
- {
- return m_bAutoSelAll;
- }
- void CEditUI::SetAutoSelAll(bool bAutoSelAll)
- {
- m_bAutoSelAll = bAutoSelAll;
- }
- void CEditUI::SetSel(long nStartChar, long nEndChar)
- {
- if( m_pWindow != NULL ) Edit_SetSel(*m_pWindow, nStartChar,nEndChar);
- }
- void CEditUI::SetSelAll()
- {
- SetSel(0,-1);
- }
- void CEditUI::SetReplaceSel(LPCTSTR lpszReplace)
- {
- if( m_pWindow != NULL ) Edit_ReplaceSel(*m_pWindow, lpszReplace);
- }
- void CEditUI::SetTipValue( LPCTSTR pStrTipValue )
- {
- m_sTipValue = pStrTipValue;
- }
- LPCTSTR CEditUI::GetTipValue()
- {
- if (!IsResourceText()) return m_sTipValue;
- return CResourceManager::GetInstance()->GetText(m_sTipValue);
- }
- void CEditUI::SetTipValueColor( LPCTSTR pStrColor )
- {
- if( *pStrColor == _T('#')) pStrColor = ::CharNext(pStrColor);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pStrColor, &pstr, 16);
- m_dwTipValueColor = clrColor;
- }
- DWORD CEditUI::GetTipValueColor()
- {
- return m_dwTipValueColor;
- }
- HWND CEditUI::GetHWND()
- {
- if(m_pWindow != NULL) {
- return m_pWindow->GetHWND();
- }
- return NULL;
- }
- void CEditUI::SetPos(RECT rc, bool bNeedInvalidate)
- {
- CControlUI::SetPos(rc, bNeedInvalidate);
- if( m_pWindow != NULL ) {
- RECT rcPos = m_pWindow->CalPos();
- ::SetWindowPos(m_pWindow->GetHWND(), NULL, rcPos.left, rcPos.top, rcPos.right - rcPos.left,
- rcPos.bottom - rcPos.top, SWP_NOZORDER | SWP_NOACTIVATE);
- }
- }
- void CEditUI::Move(SIZE szOffset, bool bNeedInvalidate)
- {
- CControlUI::Move(szOffset, bNeedInvalidate);
- if( m_pWindow != NULL ) {
- RECT rcPos = m_pWindow->CalPos();
- ::SetWindowPos(m_pWindow->GetHWND(), NULL, rcPos.left, rcPos.top, rcPos.right - rcPos.left,
- rcPos.bottom - rcPos.top, SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
- }
- }
- void CEditUI::SetVisible(bool bVisible)
- {
- CControlUI::SetVisible(bVisible);
- if( !IsVisible() && m_pWindow != NULL ) m_pManager->SetFocus(NULL);
- }
- void CEditUI::SetInternVisible(bool bVisible)
- {
- if( !IsVisible() && m_pWindow != NULL ) m_pManager->SetFocus(NULL);
- }
- SIZE CEditUI::EstimateSize(SIZE szAvailable)
- {
- if( m_cxyFixed.cy == 0 ) return CDuiSize(m_cxyFixed.cx, m_pManager->GetFontInfo(GetFont())->tm.tmHeight + 6);
- return CControlUI::EstimateSize(szAvailable);
- }
- void CEditUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue)
- {
- if( _tcsicmp(pstrName, _T("readonly")) == 0 ) SetReadOnly(_tcsicmp(pstrValue, _T("true")) == 0);
- else if( _tcsicmp(pstrName, _T("numberonly")) == 0 ) SetNumberOnly(_tcsicmp(pstrValue, _T("true")) == 0);
- else if( _tcscmp(pstrName, _T("autoselall")) == 0 ) SetAutoSelAll(_tcscmp(pstrValue, _T("true")) == 0);
- else if( _tcsicmp(pstrName, _T("password")) == 0 ) SetPasswordMode(_tcsicmp(pstrValue, _T("true")) == 0);
- else if( _tcsicmp(pstrName, _T("passwordchar")) == 0 ) SetPasswordChar(*pstrValue);
- else if( _tcsicmp(pstrName, _T("maxchar")) == 0 ) SetMaxChar(_ttoi(pstrValue));
- else if( _tcsicmp(pstrName, _T("normalimage")) == 0 ) SetNormalImage(pstrValue);
- else if( _tcsicmp(pstrName, _T("hotimage")) == 0 ) SetHotImage(pstrValue);
- else if( _tcsicmp(pstrName, _T("focusedimage")) == 0 ) SetFocusedImage(pstrValue);
- else if( _tcsicmp(pstrName, _T("disabledimage")) == 0 ) SetDisabledImage(pstrValue);
- else if( _tcsicmp(pstrName, _T("tipvalue")) == 0 ) SetTipValue(pstrValue);
- else if( _tcsicmp(pstrName, _T("tipvaluecolor")) == 0 ) SetTipValueColor(pstrValue);
- else if( _tcsicmp(pstrName, _T("nativetextcolor")) == 0 ) SetNativeEditTextColor(pstrValue);
- else if( _tcsicmp(pstrName, _T("nativebkcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetNativeEditBkColor(clrColor);
- }
- else CLabelUI::SetAttribute(pstrName, pstrValue);
- }
- void CEditUI::PaintStatusImage(HDC hDC)
- {
- if( IsFocused() ) m_uButtonState |= UISTATE_FOCUSED;
- else m_uButtonState &= ~ UISTATE_FOCUSED;
- if( !IsEnabled() ) m_uButtonState |= UISTATE_DISABLED;
- else m_uButtonState &= ~ UISTATE_DISABLED;
- if( (m_uButtonState & UISTATE_DISABLED) != 0 ) {
- if( !m_sDisabledImage.IsEmpty() ) {
- if( !DrawImage(hDC, (LPCTSTR)m_sDisabledImage) ) {}
- else return;
- }
- }
- else if( (m_uButtonState & UISTATE_FOCUSED) != 0 ) {
- if( !m_sFocusedImage.IsEmpty() ) {
- if( !DrawImage(hDC, (LPCTSTR)m_sFocusedImage) ) {}
- else return;
- }
- }
- else if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- if( !m_sHotImage.IsEmpty() ) {
- if( !DrawImage(hDC, (LPCTSTR)m_sHotImage) ) {}
- else return;
- }
- }
- if( !m_sNormalImage.IsEmpty() ) {
- if( !DrawImage(hDC, (LPCTSTR)m_sNormalImage) ) {}
- else return;
- }
- }
- void CEditUI::PaintText(HDC hDC)
- {
- DWORD mCurTextColor = m_dwTextColor;
- if( m_dwTextColor == 0 ) mCurTextColor = m_dwTextColor = m_pManager->GetDefaultFontColor();
- if( m_dwDisabledTextColor == 0 ) m_dwDisabledTextColor = m_pManager->GetDefaultDisabledColor();
- CDuiString sDrawText = GetText();
- CDuiString sTipValue = GetTipValue();
- if(sDrawText == sTipValue || sDrawText == _T("")) {
- mCurTextColor = m_dwTipValueColor;
- sDrawText = sTipValue;
- }
- else {
- CDuiString sTemp = sDrawText;
- if( m_bPasswordMode ) {
- sDrawText.Empty();
- LPCTSTR pStr = sTemp.GetData();
- while( *pStr != _T('\0') ) {
- sDrawText += m_cPasswordChar;
- pStr = ::CharNext(pStr);
- }
- }
- }
- RECT rcTextPadding = GetTextPadding();
- RECT rc = m_rcItem;
- rc.left += rcTextPadding.left;
- rc.right -= rcTextPadding.right;
- rc.top += rcTextPadding.top;
- rc.bottom -= rcTextPadding.bottom;
- if( IsEnabled() ) {
- CRenderEngine::DrawText(hDC, m_pManager, rc, sDrawText, mCurTextColor, \
- m_iFont, DT_SINGLELINE | m_uTextStyle);
- }
- else {
- CRenderEngine::DrawText(hDC, m_pManager, rc, sDrawText, m_dwDisabledTextColor, \
- m_iFont, DT_SINGLELINE | m_uTextStyle);
- }
- }
- }
|