123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442 |
- #include "StdAfx.h"
- namespace DuiLib {
- /////////////////////////////////////////////////////////////////////////////////////
- //
- //
- CListUI::CListUI() : m_pCallback(NULL), m_bScrollSelect(false), m_iCurSel(-1), m_iExpandedItem(-1)
- {
- m_pList = new CListBodyUI(this);
- m_pHeader = new CListHeaderUI;
- Add(m_pHeader);
- CVerticalLayoutUI::Add(m_pList);
- m_ListInfo.nColumns = 0;
- m_ListInfo.nFont = -1;
- m_ListInfo.uTextStyle = DT_VCENTER; // m_uTextStyle(DT_VCENTER | DT_END_ELLIPSIS)
- m_ListInfo.dwTextColor = 0xFF000000;
- m_ListInfo.dwBkColor = 0;
- m_ListInfo.bAlternateBk = false;
- m_ListInfo.dwSelectedTextColor = 0xFF000000;
- m_ListInfo.dwSelectedBkColor = 0xFFC1E3FF;
- m_ListInfo.dwHotTextColor = 0xFF000000;
- m_ListInfo.dwHotBkColor = 0xFFE9F5FF;
- m_ListInfo.dwDisabledTextColor = 0xFFCCCCCC;
- m_ListInfo.dwDisabledBkColor = 0xFFFFFFFF;
- m_ListInfo.dwLineColor = 0;
- m_ListInfo.bShowHtml = false;
- m_ListInfo.bMultiExpandable = false;
- ::ZeroMemory(&m_ListInfo.rcTextPadding, sizeof(m_ListInfo.rcTextPadding));
- ::ZeroMemory(&m_ListInfo.rcColumn, sizeof(m_ListInfo.rcColumn));
- }
- LPCTSTR CListUI::GetClass() const
- {
- return _T("ListUI");
- }
- UINT CListUI::GetControlFlags() const
- {
- return UIFLAG_TABSTOP;
- }
- LPVOID CListUI::GetInterface(LPCTSTR pstrName)
- {
- if( _tcscmp(pstrName, DUI_CTR_LIST) == 0 ) return static_cast<CListUI*>(this);
- if( _tcscmp(pstrName, _T("IList")) == 0 ) return static_cast<IListUI*>(this);
- if( _tcscmp(pstrName, _T("IListOwner")) == 0 ) return static_cast<IListOwnerUI*>(this);
- return CVerticalLayoutUI::GetInterface(pstrName);
- }
- CControlUI* CListUI::GetItemAt(int iIndex) const
- {
- return m_pList->GetItemAt(iIndex);
- }
- int CListUI::GetItemIndex(CControlUI* pControl) const
- {
- if( pControl->GetInterface(_T("ListHeader")) != NULL ) return CVerticalLayoutUI::GetItemIndex(pControl);
- // We also need to recognize header sub-items
- if( _tcsstr(pControl->GetClass(), _T("ListHeaderItemUI")) != NULL ) return m_pHeader->GetItemIndex(pControl);
- return m_pList->GetItemIndex(pControl);
- }
- bool CListUI::SetItemIndex(CControlUI* pControl, int iIndex)
- {
- if( pControl->GetInterface(_T("ListHeader")) != NULL ) return CVerticalLayoutUI::SetItemIndex(pControl, iIndex);
- // We also need to recognize header sub-items
- if( _tcsstr(pControl->GetClass(), _T("ListHeaderItemUI")) != NULL ) return m_pHeader->SetItemIndex(pControl, iIndex);
- int iOrginIndex = m_pList->GetItemIndex(pControl);
- if( iOrginIndex == -1 ) return false;
- if( iOrginIndex == iIndex ) return true;
- IListItemUI* pSelectedListItem = NULL;
- if( m_iCurSel >= 0 ) pSelectedListItem =
- static_cast<IListItemUI*>(GetItemAt(m_iCurSel)->GetInterface(_T("ListItem")));
- if( !m_pList->SetItemIndex(pControl, iIndex) ) return false;
- int iMinIndex = min(iOrginIndex, iIndex);
- int iMaxIndex = max(iOrginIndex, iIndex);
- for(int i = iMinIndex; i < iMaxIndex + 1; ++i) {
- CControlUI* p = m_pList->GetItemAt(i);
- IListItemUI* pListItem = static_cast<IListItemUI*>(p->GetInterface(_T("ListItem")));
- if( pListItem != NULL ) {
- pListItem->SetIndex(i);
- }
- }
- if( m_iCurSel >= 0 && pSelectedListItem != NULL ) m_iCurSel = pSelectedListItem->GetIndex();
- return true;
- }
- int CListUI::GetCount() const
- {
- return m_pList->GetCount();
- }
- bool CListUI::Add(CControlUI* pControl)
- {
- // Override the Add() method so we can add items specifically to
- // the intended widgets. Headers are assumed to be
- // answer the correct interface so we can add multiple list headers.
- if( pControl->GetInterface(_T("ListHeader")) != NULL ) {
- if( m_pHeader != pControl && m_pHeader->GetCount() == 0 ) {
- CVerticalLayoutUI::Remove(m_pHeader);
- m_pHeader = static_cast<CListHeaderUI*>(pControl);
- }
- m_ListInfo.nColumns = MIN(m_pHeader->GetCount(), UILIST_MAX_COLUMNS);
- return CVerticalLayoutUI::AddAt(pControl, 0);
- }
- // We also need to recognize header sub-items
- if( _tcsstr(pControl->GetClass(), _T("ListHeaderItemUI")) != NULL ) {
- bool ret = m_pHeader->Add(pControl);
- m_ListInfo.nColumns = MIN(m_pHeader->GetCount(), UILIST_MAX_COLUMNS);
- return ret;
- }
- // The list items should know about us
- IListItemUI* pListItem = static_cast<IListItemUI*>(pControl->GetInterface(_T("ListItem")));
- if( pListItem != NULL ) {
- pListItem->SetOwner(this);
- pListItem->SetIndex(GetCount());
- }
- return m_pList->Add(pControl);
- }
- CControlUI* CListUI::Add (LPCTSTR lpXMLFile)
- {
- return CContainerUI::Add (lpXMLFile);
- }
- bool CListUI::AddAt (CControlUI* pControl, int iIndex)
- {
- // Override the AddAt() method so we can add items specifically to
- // the intended widgets. Headers and are assumed to be
- // answer the correct interface so we can add multiple list headers.
- if( pControl->GetInterface(_T("ListHeader")) != NULL ) {
- if( m_pHeader != pControl && m_pHeader->GetCount() == 0 ) {
- CVerticalLayoutUI::Remove(m_pHeader);
- m_pHeader = static_cast<CListHeaderUI*>(pControl);
- }
- m_ListInfo.nColumns = MIN(m_pHeader->GetCount(), UILIST_MAX_COLUMNS);
- return CVerticalLayoutUI::AddAt(pControl, 0);
- }
- // We also need to recognize header sub-items
- if( _tcsstr(pControl->GetClass(), _T("ListHeaderItemUI")) != NULL ) {
- bool ret = m_pHeader->AddAt(pControl, iIndex);
- m_ListInfo.nColumns = MIN(m_pHeader->GetCount(), UILIST_MAX_COLUMNS);
- return ret;
- }
- if (!m_pList->AddAt(pControl, iIndex)) return false;
- // The list items should know about us
- IListItemUI* pListItem = static_cast<IListItemUI*>(pControl->GetInterface(_T("ListItem")));
- if( pListItem != NULL ) {
- pListItem->SetOwner(this);
- pListItem->SetIndex(iIndex);
- }
- for(int i = iIndex + 1; i < m_pList->GetCount(); ++i) {
- CControlUI* p = m_pList->GetItemAt(i);
- pListItem = static_cast<IListItemUI*>(p->GetInterface(_T("ListItem")));
- if( pListItem != NULL ) {
- pListItem->SetIndex(i);
- }
- }
- if( m_iCurSel >= iIndex ) m_iCurSel += 1;
- return true;
- }
- bool CListUI::Remove(CControlUI* pControl)
- {
- if( pControl->GetInterface(_T("ListHeader")) != NULL ) return CVerticalLayoutUI::Remove(pControl);
- // We also need to recognize header sub-items
- if( _tcsstr(pControl->GetClass(), _T("ListHeaderItemUI")) != NULL ) return m_pHeader->Remove(pControl);
- int iIndex = m_pList->GetItemIndex(pControl);
- if (iIndex == -1) return false;
- if (!m_pList->RemoveAt(iIndex)) return false;
- for(int i = iIndex; i < m_pList->GetCount(); ++i) {
- CControlUI* p = m_pList->GetItemAt(i);
- IListItemUI* pListItem = static_cast<IListItemUI*>(p->GetInterface(_T("ListItem")));
- if( pListItem != NULL ) {
- pListItem->SetIndex(i);
- }
- }
- if( iIndex == m_iCurSel && m_iCurSel >= 0 ) {
- int iSel = m_iCurSel;
- m_iCurSel = -1;
- SelectItem(FindSelectable(iSel, false));
- }
- else if( iIndex < m_iCurSel ) m_iCurSel -= 1;
- return true;
- }
- bool CListUI::RemoveAt(int iIndex)
- {
- if (!m_pList->RemoveAt(iIndex)) return false;
- for(int i = iIndex; i < m_pList->GetCount(); ++i) {
- CControlUI* p = m_pList->GetItemAt(i);
- IListItemUI* pListItem = static_cast<IListItemUI*>(p->GetInterface(_T("ListItem")));
- if( pListItem != NULL ) pListItem->SetIndex(i);
- }
- if( iIndex == m_iCurSel && m_iCurSel >= 0 ) {
- int iSel = m_iCurSel;
- m_iCurSel = -1;
- SelectItem(FindSelectable(iSel, false));
- }
- else if( iIndex < m_iCurSel ) m_iCurSel -= 1;
- return true;
- }
- void CListUI::RemoveAll()
- {
- m_iCurSel = -1;
- m_iExpandedItem = -1;
- m_pList->RemoveAll();
- }
- void CListUI::SetPos(RECT rc, bool bNeedInvalidate)
- {
- if( m_pHeader != NULL ) { // 设置header各子元素x坐标,因为有些listitem的setpos需要用到(临时修复)
- int iLeft = rc.left + m_rcInset.left;
- int iRight = rc.right - m_rcInset.right;
- m_ListInfo.nColumns = MIN(m_pHeader->GetCount(), UILIST_MAX_COLUMNS);
- if( !m_pHeader->IsVisible() ) {
- for( int it = m_pHeader->GetCount() - 1; it >= 0; it-- ) {
- static_cast<CControlUI*>(m_pHeader->GetItemAt(it))->SetInternVisible(true);
- }
- }
- m_pHeader->SetPos(CDuiRect(iLeft, 0, iRight, 0), false);
- int iOffset = m_pList->GetScrollPos().cx;
- for( int i = 0; i < m_ListInfo.nColumns; i++ ) {
- CControlUI* pControl = static_cast<CControlUI*>(m_pHeader->GetItemAt(i));
- if( !pControl->IsVisible() ) continue;
- if( pControl->IsFloat() ) continue;
- RECT rcPos = pControl->GetPos();
- if( iOffset > 0 ) {
- rcPos.left -= iOffset;
- rcPos.right -= iOffset;
- pControl->SetPos(rcPos, false);
- }
- m_ListInfo.rcColumn[i] = pControl->GetPos();
- }
- if( !m_pHeader->IsVisible() ) {
- for( int it = m_pHeader->GetCount() - 1; it >= 0; it-- ) {
- static_cast<CControlUI*>(m_pHeader->GetItemAt(it))->SetInternVisible(false);
- }
- m_pHeader->SetInternVisible(false);
- }
- }
- CVerticalLayoutUI::SetPos(rc, bNeedInvalidate);
- if( m_pHeader == NULL ) return;
- rc = m_rcItem;
- rc.left += m_rcInset.left;
- rc.top += m_rcInset.top;
- rc.right -= m_rcInset.right;
- rc.bottom -= m_rcInset.bottom;
- if( m_pVerticalScrollBar && m_pVerticalScrollBar->IsVisible() ) {
- rc.top -= m_pVerticalScrollBar->GetScrollPos();
- rc.bottom -= m_pVerticalScrollBar->GetScrollPos();
- rc.bottom += m_pVerticalScrollBar->GetScrollRange();
- rc.right -= m_pVerticalScrollBar->GetFixedWidth();
- }
- if( m_pHorizontalScrollBar && m_pHorizontalScrollBar->IsVisible() ) {
- rc.left -= m_pHorizontalScrollBar->GetScrollPos();
- rc.right -= m_pHorizontalScrollBar->GetScrollPos();
- rc.right += m_pHorizontalScrollBar->GetScrollRange();
- rc.bottom -= m_pHorizontalScrollBar->GetFixedHeight();
- }
- m_ListInfo.nColumns = MIN(m_pHeader->GetCount(), UILIST_MAX_COLUMNS);
- if( !m_pHeader->IsVisible() ) {
- for( int it = m_pHeader->GetCount() - 1; it >= 0; it-- ) {
- static_cast<CControlUI*>(m_pHeader->GetItemAt(it))->SetInternVisible(true);
- }
- m_pHeader->SetPos(CDuiRect(rc.left, 0, rc.right, 0), false);
- }
- int iOffset = m_pList->GetScrollPos().cx;
- for( int i = 0; i < m_ListInfo.nColumns; i++ ) {
- CControlUI* pControl = static_cast<CControlUI*>(m_pHeader->GetItemAt(i));
- if( !pControl->IsVisible() ) continue;
- if( pControl->IsFloat() ) continue;
- RECT rcPos = pControl->GetPos();
- if( iOffset > 0 ) {
- rcPos.left -= iOffset;
- rcPos.right -= iOffset;
- pControl->SetPos(rcPos, false);
- }
- m_ListInfo.rcColumn[i] = pControl->GetPos();
- }
- if( !m_pHeader->IsVisible() ) {
- for( int it = m_pHeader->GetCount() - 1; it >= 0; it-- ) {
- static_cast<CControlUI*>(m_pHeader->GetItemAt(it))->SetInternVisible(false);
- }
- m_pHeader->SetInternVisible(false);
- }
- }
- void CListUI::Move(SIZE szOffset, bool bNeedInvalidate)
- {
- CVerticalLayoutUI::Move(szOffset, bNeedInvalidate);
- if( !m_pHeader->IsVisible() ) m_pHeader->Move(szOffset, false);
- }
- void CListUI::DoEvent(TEventUI& event)
- {
- if( !IsMouseEnabled() && event.Type > UIEVENT__MOUSEBEGIN && event.Type < UIEVENT__MOUSEEND ) {
- if( m_pParent != NULL ) m_pParent->DoEvent(event);
- else CVerticalLayoutUI::DoEvent(event);
- return;
- }
- if( event.Type == UIEVENT_SETFOCUS )
- {
- m_bFocused = true;
- return;
- }
- if( event.Type == UIEVENT_KILLFOCUS )
- {
- m_bFocused = false;
- return;
- }
- switch( event.Type ) {
- case UIEVENT_KEYDOWN:
- switch( event.chKey ) {
- case VK_UP:
- SelectItem(FindSelectable(m_iCurSel - 1, false), true);
- return;
- case VK_DOWN:
- SelectItem(FindSelectable(m_iCurSel + 1, true), true);
- return;
- case VK_PRIOR:
- PageUp();
- return;
- case VK_NEXT:
- PageDown();
- return;
- case VK_HOME:
- SelectItem(FindSelectable(0, false), true);
- return;
- case VK_END:
- SelectItem(FindSelectable(GetCount() - 1, true), true);
- return;
- case VK_RETURN:
- if( m_iCurSel != -1 ) GetItemAt(m_iCurSel)->Activate();
- return;
- }
- break;
- case UIEVENT_SCROLLWHEEL:
- {
- switch( LOWORD(event.wParam) ) {
- case SB_LINEUP:
- if( m_bScrollSelect ) SelectItem(FindSelectable(m_iCurSel - 1, false), true);
- else LineUp();
- return;
- case SB_LINEDOWN:
- if( m_bScrollSelect ) SelectItem(FindSelectable(m_iCurSel + 1, true), true);
- else LineDown();
- return;
- }
- }
- break;
- }
- CVerticalLayoutUI::DoEvent(event);
- }
- CListHeaderUI* CListUI::GetHeader() const
- {
- return m_pHeader;
- }
- CContainerUI* CListUI::GetList() const
- {
- return m_pList;
- }
- bool CListUI::GetScrollSelect()
- {
- return m_bScrollSelect;
- }
- void CListUI::SetScrollSelect(bool bScrollSelect)
- {
- m_bScrollSelect = bScrollSelect;
- }
- int CListUI::GetCurSel() const
- {
- return m_iCurSel;
- }
- bool CListUI::SelectItem(int iIndex, bool bTakeFocus, bool bTriggerEvent)
- {
- if( iIndex == m_iCurSel ) return true;
- int iOldSel = m_iCurSel;
- // We should first unselect the currently selected item
- if( m_iCurSel >= 0 ) {
- CControlUI* pControl = GetItemAt(m_iCurSel);
- if( pControl != NULL) {
- IListItemUI* pListItem = static_cast<IListItemUI*>(pControl->GetInterface(_T("ListItem")));
- if( pListItem != NULL ) pListItem->Select(false, bTriggerEvent);
- }
- m_iCurSel = -1;
- }
- if( iIndex < 0 ) return false;
- CControlUI* pControl = GetItemAt(iIndex);
- if( pControl == NULL ) return false;
- if( !pControl->IsVisible() ) return false;
- if( !pControl->IsEnabled() ) return false;
- IListItemUI* pListItem = static_cast<IListItemUI*>(pControl->GetInterface(_T("ListItem")));
- if( pListItem == NULL ) return false;
- m_iCurSel = iIndex;
- if( !pListItem->Select(true, bTriggerEvent) ) {
- m_iCurSel = -1;
- return false;
- }
- EnsureVisible(m_iCurSel);
- if( bTakeFocus ) pControl->SetFocus();
- if( m_pManager != NULL && bTriggerEvent ) {
- m_pManager->SendNotify(this, DUI_MSGTYPE_ITEMSELECT, m_iCurSel, iOldSel);
- }
- return true;
- }
- TListInfoUI* CListUI::GetListInfo()
- {
- return &m_ListInfo;
- }
- int CListUI::GetChildPadding() const
- {
- return m_pList->GetChildPadding();
- }
- void CListUI::SetChildPadding(int iPadding)
- {
- m_pList->SetChildPadding(iPadding);
- }
- void CListUI::SetItemFont(int index)
- {
- m_ListInfo.nFont = index;
- NeedUpdate();
- }
- void CListUI::SetItemTextStyle(UINT uStyle)
- {
- m_ListInfo.uTextStyle = uStyle;
- NeedUpdate();
- }
- void CListUI::SetItemTextPadding(RECT rc)
- {
- m_ListInfo.rcTextPadding = rc;
- NeedUpdate();
- }
- RECT CListUI::GetItemTextPadding() const
- {
- return m_ListInfo.rcTextPadding;
- }
- void CListUI::SetItemTextColor(DWORD dwTextColor)
- {
- m_ListInfo.dwTextColor = dwTextColor;
- Invalidate();
- }
- void CListUI::SetItemBkColor(DWORD dwBkColor)
- {
- m_ListInfo.dwBkColor = dwBkColor;
- Invalidate();
- }
- void CListUI::SetItemBkImage(LPCTSTR pStrImage)
- {
- if( m_ListInfo.diBk.sDrawString == pStrImage && m_ListInfo.diBk.pImageInfo != NULL ) return;
- m_ListInfo.diBk.Clear();
- m_ListInfo.diBk.sDrawString = pStrImage;
- Invalidate();
- }
- bool CListUI::IsAlternateBk() const
- {
- return m_ListInfo.bAlternateBk;
- }
- void CListUI::SetAlternateBk(bool bAlternateBk)
- {
- m_ListInfo.bAlternateBk = bAlternateBk;
- Invalidate();
- }
- DWORD CListUI::GetItemTextColor() const
- {
- return m_ListInfo.dwTextColor;
- }
- DWORD CListUI::GetItemBkColor() const
- {
- return m_ListInfo.dwBkColor;
- }
- LPCTSTR CListUI::GetItemBkImage() const
- {
- return m_ListInfo.diBk.sDrawString;
- }
- void CListUI::SetSelectedItemTextColor(DWORD dwTextColor)
- {
- m_ListInfo.dwSelectedTextColor = dwTextColor;
- Invalidate();
- }
- void CListUI::SetSelectedItemBkColor(DWORD dwBkColor)
- {
- m_ListInfo.dwSelectedBkColor = dwBkColor;
- Invalidate();
- }
- void CListUI::SetSelectedItemImage(LPCTSTR pStrImage)
- {
- if( m_ListInfo.diSelected.sDrawString == pStrImage && m_ListInfo.diSelected.pImageInfo != NULL ) return;
- m_ListInfo.diSelected.Clear();
- m_ListInfo.diSelected.sDrawString = pStrImage;
- Invalidate();
- }
- DWORD CListUI::GetSelectedItemTextColor() const
- {
- return m_ListInfo.dwSelectedTextColor;
- }
- DWORD CListUI::GetSelectedItemBkColor() const
- {
- return m_ListInfo.dwSelectedBkColor;
- }
- LPCTSTR CListUI::GetSelectedItemImage() const
- {
- return m_ListInfo.diSelected.sDrawString;
- }
- void CListUI::SetHotItemTextColor(DWORD dwTextColor)
- {
- m_ListInfo.dwHotTextColor = dwTextColor;
- Invalidate();
- }
- void CListUI::SetHotItemBkColor(DWORD dwBkColor)
- {
- m_ListInfo.dwHotBkColor = dwBkColor;
- Invalidate();
- }
- void CListUI::SetHotItemImage(LPCTSTR pStrImage)
- {
- if( m_ListInfo.diHot.sDrawString == pStrImage && m_ListInfo.diHot.pImageInfo != NULL ) return;
- m_ListInfo.diHot.Clear();
- m_ListInfo.diHot.sDrawString = pStrImage;
- Invalidate();
- }
- DWORD CListUI::GetHotItemTextColor() const
- {
- return m_ListInfo.dwHotTextColor;
- }
- DWORD CListUI::GetHotItemBkColor() const
- {
- return m_ListInfo.dwHotBkColor;
- }
- LPCTSTR CListUI::GetHotItemImage() const
- {
- return m_ListInfo.diHot.sDrawString;
- }
- void CListUI::SetDisabledItemTextColor(DWORD dwTextColor)
- {
- m_ListInfo.dwDisabledTextColor = dwTextColor;
- Invalidate();
- }
- void CListUI::SetDisabledItemBkColor(DWORD dwBkColor)
- {
- m_ListInfo.dwDisabledBkColor = dwBkColor;
- Invalidate();
- }
- void CListUI::SetDisabledItemImage(LPCTSTR pStrImage)
- {
- if( m_ListInfo.diDisabled.sDrawString == pStrImage && m_ListInfo.diDisabled.pImageInfo != NULL ) return;
- m_ListInfo.diDisabled.Clear();
- m_ListInfo.diDisabled.sDrawString = pStrImage;
- Invalidate();
- }
- DWORD CListUI::GetDisabledItemTextColor() const
- {
- return m_ListInfo.dwDisabledTextColor;
- }
- DWORD CListUI::GetDisabledItemBkColor() const
- {
- return m_ListInfo.dwDisabledBkColor;
- }
- LPCTSTR CListUI::GetDisabledItemImage() const
- {
- return m_ListInfo.diDisabled.sDrawString;
- }
- DWORD CListUI::GetItemLineColor() const
- {
- return m_ListInfo.dwLineColor;
- }
- void CListUI::SetItemLineColor(DWORD dwLineColor)
- {
- m_ListInfo.dwLineColor = dwLineColor;
- Invalidate();
- }
- bool CListUI::IsItemShowHtml()
- {
- return m_ListInfo.bShowHtml;
- }
- void CListUI::SetItemShowHtml(bool bShowHtml)
- {
- if( m_ListInfo.bShowHtml == bShowHtml ) return;
- m_ListInfo.bShowHtml = bShowHtml;
- NeedUpdate();
- }
- void CListUI::SetMultiExpanding(bool bMultiExpandable)
- {
- m_ListInfo.bMultiExpandable = bMultiExpandable;
- }
- bool CListUI::ExpandItem(int iIndex, bool bExpand /*= true*/)
- {
- if( m_iExpandedItem >= 0 && !m_ListInfo.bMultiExpandable) {
- CControlUI* pControl = GetItemAt(m_iExpandedItem);
- if( pControl != NULL ) {
- IListItemUI* pItem = static_cast<IListItemUI*>(pControl->GetInterface(_T("ListItem")));
- if( pItem != NULL ) pItem->Expand(false);
- }
- m_iExpandedItem = -1;
- }
- if( bExpand ) {
- CControlUI* pControl = GetItemAt(iIndex);
- if( pControl == NULL ) return false;
- if( !pControl->IsVisible() ) return false;
- IListItemUI* pItem = static_cast<IListItemUI*>(pControl->GetInterface(_T("ListItem")));
- if( pItem == NULL ) return false;
- m_iExpandedItem = iIndex;
- if( !pItem->Expand(true) ) {
- m_iExpandedItem = -1;
- return false;
- }
- }
- NeedUpdate();
- return true;
- }
- int CListUI::GetExpandedItem() const
- {
- return m_iExpandedItem;
- }
- void CListUI::EnsureVisible(int iIndex)
- {
- if( m_iCurSel < 0 ) return;
- RECT rcItem = m_pList->GetItemAt(iIndex)->GetPos();
- RECT rcList = m_pList->GetPos();
- RECT rcListInset = m_pList->GetInset();
- rcList.left += rcListInset.left;
- rcList.top += rcListInset.top;
- rcList.right -= rcListInset.right;
- rcList.bottom -= rcListInset.bottom;
- CScrollBarUI* pHorizontalScrollBar = m_pList->GetHorizontalScrollBar();
- if( pHorizontalScrollBar && pHorizontalScrollBar->IsVisible() ) rcList.bottom -= pHorizontalScrollBar->GetFixedHeight();
- int iPos = m_pList->GetScrollPos().cy;
- if( rcItem.top >= rcList.top && rcItem.bottom < rcList.bottom ) return;
- int dx = 0;
- if( rcItem.top < rcList.top ) dx = rcItem.top - rcList.top;
- if( rcItem.bottom > rcList.bottom ) dx = rcItem.bottom - rcList.bottom;
- Scroll(0, dx);
- }
- void CListUI::Scroll(int dx, int dy)
- {
- if( dx == 0 && dy == 0 ) return;
- SIZE sz = m_pList->GetScrollPos();
- m_pList->SetScrollPos(CDuiSize(sz.cx + dx, sz.cy + dy));
- }
- void CListUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue)
- {
- if( _tcscmp(pstrName, _T("header")) == 0 ) GetHeader()->SetVisible(_tcscmp(pstrValue, _T("hidden")) != 0);
- else if( _tcscmp(pstrName, _T("headerbkimage")) == 0 ) GetHeader()->SetBkImage(pstrValue);
- else if( _tcscmp(pstrName, _T("scrollselect")) == 0 ) SetScrollSelect(_tcscmp(pstrValue, _T("true")) == 0);
- else if( _tcscmp(pstrName, _T("multiexpanding")) == 0 ) SetMultiExpanding(_tcscmp(pstrValue, _T("true")) == 0);
- else if( _tcscmp(pstrName, _T("itemfont")) == 0 ) m_ListInfo.nFont = _ttoi(pstrValue);
- else if( _tcscmp(pstrName, _T("itemalign")) == 0 ) {
- if( _tcsstr(pstrValue, _T("left")) != NULL ) {
- m_ListInfo.uTextStyle &= ~(DT_CENTER | DT_RIGHT);
- m_ListInfo.uTextStyle |= DT_LEFT;
- }
- if( _tcsstr(pstrValue, _T("center")) != NULL ) {
- m_ListInfo.uTextStyle &= ~(DT_LEFT | DT_RIGHT);
- m_ListInfo.uTextStyle |= DT_CENTER;
- }
- if( _tcsstr(pstrValue, _T("right")) != NULL ) {
- m_ListInfo.uTextStyle &= ~(DT_LEFT | DT_CENTER);
- m_ListInfo.uTextStyle |= DT_RIGHT;
- }
- }
- else if( _tcscmp(pstrName, _T("itemendellipsis")) == 0 ) {
- if( _tcscmp(pstrValue, _T("true")) == 0 ) m_ListInfo.uTextStyle |= DT_END_ELLIPSIS;
- else m_ListInfo.uTextStyle &= ~DT_END_ELLIPSIS;
- }
- if( _tcscmp(pstrName, _T("itemtextpadding")) == 0 ) {
- RECT rcTextPadding = { 0 };
- LPTSTR pstr = NULL;
- rcTextPadding.left = _tcstol(pstrValue, &pstr, 10); ASSERT(pstr);
- rcTextPadding.top = _tcstol(pstr + 1, &pstr, 10); ASSERT(pstr);
- rcTextPadding.right = _tcstol(pstr + 1, &pstr, 10); ASSERT(pstr);
- rcTextPadding.bottom = _tcstol(pstr + 1, &pstr, 10); ASSERT(pstr);
- SetItemTextPadding(rcTextPadding);
- }
- else if( _tcscmp(pstrName, _T("itemtextcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetItemTextColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("itembkcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetItemBkColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("itembkimage")) == 0 ) SetItemBkImage(pstrValue);
- else if( _tcscmp(pstrName, _T("itemaltbk")) == 0 ) SetAlternateBk(_tcscmp(pstrValue, _T("true")) == 0);
- else if( _tcscmp(pstrName, _T("itemselectedtextcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetSelectedItemTextColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("itemselectedbkcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetSelectedItemBkColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("itemselectedimage")) == 0 ) SetSelectedItemImage(pstrValue);
- else if( _tcscmp(pstrName, _T("itemhottextcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetHotItemTextColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("itemhotbkcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetHotItemBkColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("itemhotimage")) == 0 ) SetHotItemImage(pstrValue);
- else if( _tcscmp(pstrName, _T("itemdisabledtextcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetDisabledItemTextColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("itemdisabledbkcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetDisabledItemBkColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("itemdisabledimage")) == 0 ) SetDisabledItemImage(pstrValue);
- else if( _tcscmp(pstrName, _T("itemlinecolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetItemLineColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("itemshowhtml")) == 0 ) SetItemShowHtml(_tcscmp(pstrValue, _T("true")) == 0);
- else CVerticalLayoutUI::SetAttribute(pstrName, pstrValue);
- }
- IListCallbackUI* CListUI::GetTextCallback() const
- {
- return m_pCallback;
- }
- void CListUI::SetTextCallback(IListCallbackUI* pCallback)
- {
- m_pCallback = pCallback;
- }
- SIZE CListUI::GetScrollPos() const
- {
- return m_pList->GetScrollPos();
- }
- SIZE CListUI::GetScrollRange() const
- {
- return m_pList->GetScrollRange();
- }
- void CListUI::SetScrollPos(SIZE szPos)
- {
- m_pList->SetScrollPos(szPos);
- }
- void CListUI::LineUp()
- {
- m_pList->LineUp();
- }
- void CListUI::LineDown()
- {
- m_pList->LineDown();
- }
- void CListUI::PageUp()
- {
- m_pList->PageUp();
- }
- void CListUI::PageDown()
- {
- m_pList->PageDown();
- }
- void CListUI::HomeUp()
- {
- m_pList->HomeUp();
- }
- void CListUI::EndDown()
- {
- m_pList->EndDown();
- }
- void CListUI::LineLeft()
- {
- m_pList->LineLeft();
- }
- void CListUI::LineRight()
- {
- m_pList->LineRight();
- }
- void CListUI::PageLeft()
- {
- m_pList->PageLeft();
- }
- void CListUI::PageRight()
- {
- m_pList->PageRight();
- }
- void CListUI::HomeLeft()
- {
- m_pList->HomeLeft();
- }
- void CListUI::EndRight()
- {
- m_pList->EndRight();
- }
- void CListUI::EnableScrollBar(bool bEnableVertical, bool bEnableHorizontal)
- {
- m_pList->EnableScrollBar(bEnableVertical, bEnableHorizontal);
- }
- CScrollBarUI* CListUI::GetVerticalScrollBar() const
- {
- return m_pList->GetVerticalScrollBar();
- }
- CScrollBarUI* CListUI::GetHorizontalScrollBar() const
- {
- return m_pList->GetHorizontalScrollBar();
- }
- BOOL CListUI::SortItems(PULVCompareFunc pfnCompare, UINT_PTR dwData)
- {
- if (!m_pList)
- return FALSE;
- int iCurSel = m_iCurSel;
- BOOL bResult = m_pList->SortItems(pfnCompare, dwData, iCurSel);
- if (bResult) {
- m_iCurSel = iCurSel;
- EnsureVisible(m_iCurSel);
- NeedUpdate();
- }
- return bResult;
- }
- /////////////////////////////////////////////////////////////////////////////////////
- //
- //
- CListBodyUI::CListBodyUI(CListUI* pOwner) : m_pOwner(pOwner)
- {
- ASSERT(m_pOwner);
- }
- BOOL CListBodyUI::SortItems(PULVCompareFunc pfnCompare, UINT_PTR dwData, int& iCurSel)
- {
- if (!pfnCompare)
- return FALSE;
- m_pCompareFunc = pfnCompare;
- CControlUI *pCurSelControl = GetItemAt(iCurSel);
- CControlUI **pData = (CControlUI **)m_items.GetData();
- qsort_s(m_items.GetData(), m_items.GetSize(), sizeof(CControlUI*), CListBodyUI::ItemComareFunc, this);
- if (pCurSelControl) iCurSel = GetItemIndex(pCurSelControl);
- IListItemUI *pItem = NULL;
- for (int i = 0; i < m_items.GetSize(); ++i)
- {
- pItem = (IListItemUI*)(static_cast<CControlUI*>(m_items[i])->GetInterface(TEXT("ListItem")));
- if (pItem)
- {
- pItem->SetIndex(i);
- }
- }
- return TRUE;
- }
- int __cdecl CListBodyUI::ItemComareFunc(void *pvlocale, const void *item1, const void *item2)
- {
- CListBodyUI *pThis = (CListBodyUI*)pvlocale;
- if (!pThis || !item1 || !item2)
- return 0;
- return pThis->ItemComareFunc(item1, item2);
- }
- int __cdecl CListBodyUI::ItemComareFunc(const void *item1, const void *item2)
- {
- CControlUI *pControl1 = *(CControlUI**)item1;
- CControlUI *pControl2 = *(CControlUI**)item2;
- return m_pCompareFunc((UINT_PTR)pControl1, (UINT_PTR)pControl2, m_compareData);
- }
- void CListBodyUI::SetScrollPos(SIZE szPos)
- {
- int cx = 0;
- int cy = 0;
- if( m_pVerticalScrollBar && m_pVerticalScrollBar->IsVisible() ) {
- int iLastScrollPos = m_pVerticalScrollBar->GetScrollPos();
- m_pVerticalScrollBar->SetScrollPos(szPos.cy);
- cy = m_pVerticalScrollBar->GetScrollPos() - iLastScrollPos;
- }
- if( m_pHorizontalScrollBar && m_pHorizontalScrollBar->IsVisible() ) {
- int iLastScrollPos = m_pHorizontalScrollBar->GetScrollPos();
- m_pHorizontalScrollBar->SetScrollPos(szPos.cx);
- cx = m_pHorizontalScrollBar->GetScrollPos() - iLastScrollPos;
- }
- if( cx == 0 && cy == 0 ) return;
- for( int it2 = 0; it2 < m_items.GetSize(); it2++ ) {
- CControlUI* pControl = static_cast<CControlUI*>(m_items[it2]);
- if( !pControl->IsVisible() ) continue;
- if( pControl->IsFloat() ) continue;
- pControl->Move(CDuiSize(-cx, -cy), false);
- }
- Invalidate();
- if( cx != 0 && m_pOwner ) {
- CListHeaderUI* pHeader = m_pOwner->GetHeader();
- if( pHeader == NULL ) return;
- TListInfoUI* pInfo = m_pOwner->GetListInfo();
- pInfo->nColumns = MIN(pHeader->GetCount(), UILIST_MAX_COLUMNS);
- for( int i = 0; i < pInfo->nColumns; i++ ) {
- CControlUI* pControl = static_cast<CControlUI*>(pHeader->GetItemAt(i));
- if( !pControl->IsVisible() ) continue;
- if( pControl->IsFloat() ) continue;
- pControl->Move(CDuiSize(-cx, -cy), false);
- pInfo->rcColumn[i] = pControl->GetPos();
- }
- pHeader->Invalidate();
- }
- }
- void CListBodyUI::SetPos(RECT rc, bool bNeedInvalidate)
- {
- CControlUI::SetPos(rc, bNeedInvalidate);
- rc = m_rcItem;
- // Adjust for inset
- rc.left += m_rcInset.left;
- rc.top += m_rcInset.top;
- rc.right -= m_rcInset.right;
- rc.bottom -= m_rcInset.bottom;
- if( m_pVerticalScrollBar && m_pVerticalScrollBar->IsVisible() ) rc.right -= m_pVerticalScrollBar->GetFixedWidth();
- if( m_pHorizontalScrollBar && m_pHorizontalScrollBar->IsVisible() ) rc.bottom -= m_pHorizontalScrollBar->GetFixedHeight();
- // Determine the minimum size
- SIZE szAvailable = { rc.right - rc.left, rc.bottom - rc.top };
- if( m_pHorizontalScrollBar && m_pHorizontalScrollBar->IsVisible() )
- szAvailable.cx += m_pHorizontalScrollBar->GetScrollRange();
- int cxNeeded = 0;
- int nAdjustables = 0;
- int cyFixed = 0;
- int nEstimateNum = 0;
- for( int it1 = 0; it1 < m_items.GetSize(); it1++ ) {
- CControlUI* pControl = static_cast<CControlUI*>(m_items[it1]);
- if( !pControl->IsVisible() ) continue;
- if( pControl->IsFloat() ) continue;
- SIZE sz = pControl->EstimateSize(szAvailable);
- if( sz.cy == 0 ) {
- nAdjustables++;
- }
- else {
- if( sz.cy < pControl->GetMinHeight() ) sz.cy = pControl->GetMinHeight();
- if( sz.cy > pControl->GetMaxHeight() ) sz.cy = pControl->GetMaxHeight();
- }
- cyFixed += sz.cy + pControl->GetPadding().top + pControl->GetPadding().bottom;
- RECT rcPadding = pControl->GetPadding();
- sz.cx = MAX(sz.cx, 0);
- if( sz.cx < pControl->GetMinWidth() ) sz.cx = pControl->GetMinWidth();
- if( sz.cx > pControl->GetMaxWidth() ) sz.cx = pControl->GetMaxWidth();
- cxNeeded = MAX(cxNeeded, sz.cx);
- nEstimateNum++;
- }
- cyFixed += (nEstimateNum - 1) * m_iChildPadding;
- if( m_pOwner ) {
- CListHeaderUI* pHeader = m_pOwner->GetHeader();
- if( pHeader != NULL && pHeader->GetCount() > 0 ) {
- cxNeeded = MAX(0, pHeader->EstimateSize(CDuiSize(rc.right - rc.left, rc.bottom - rc.top)).cx);
- }
- }
- // Place elements
- int cyNeeded = 0;
- int cyExpand = 0;
- if( nAdjustables > 0 ) cyExpand = MAX(0, (szAvailable.cy - cyFixed) / nAdjustables);
- // Position the elements
- SIZE szRemaining = szAvailable;
- int iPosY = rc.top;
- if( m_pVerticalScrollBar && m_pVerticalScrollBar->IsVisible() ) {
- iPosY -= m_pVerticalScrollBar->GetScrollPos();
- }
- int iPosX = rc.left;
- if( m_pHorizontalScrollBar && m_pHorizontalScrollBar->IsVisible() ) {
- iPosX -= m_pHorizontalScrollBar->GetScrollPos();
- }
- int iAdjustable = 0;
- int cyFixedRemaining = cyFixed;
- for( int it2 = 0; it2 < m_items.GetSize(); it2++ ) {
- CControlUI* pControl = static_cast<CControlUI*>(m_items[it2]);
- if( !pControl->IsVisible() ) continue;
- if( pControl->IsFloat() ) {
- SetFloatPos(it2);
- continue;
- }
- RECT rcPadding = pControl->GetPadding();
- szRemaining.cy -= rcPadding.top;
- SIZE sz = pControl->EstimateSize(szRemaining);
- if( sz.cy == 0 ) {
- iAdjustable++;
- sz.cy = cyExpand;
- // Distribute remaining to last element (usually round-off left-overs)
- if( iAdjustable == nAdjustables ) {
- sz.cy = MAX(0, szRemaining.cy - rcPadding.bottom - cyFixedRemaining);
- }
- if( sz.cy < pControl->GetMinHeight() ) sz.cy = pControl->GetMinHeight();
- if( sz.cy > pControl->GetMaxHeight() ) sz.cy = pControl->GetMaxHeight();
- }
- else {
- if( sz.cy < pControl->GetMinHeight() ) sz.cy = pControl->GetMinHeight();
- if( sz.cy > pControl->GetMaxHeight() ) sz.cy = pControl->GetMaxHeight();
- cyFixedRemaining -= sz.cy;
- }
- sz.cx = MAX(cxNeeded, szAvailable.cx - rcPadding.left - rcPadding.right);
- if( sz.cx < pControl->GetMinWidth() ) sz.cx = pControl->GetMinWidth();
- if( sz.cx > pControl->GetMaxWidth() ) sz.cx = pControl->GetMaxWidth();
- RECT rcCtrl = { iPosX + rcPadding.left, iPosY + rcPadding.top, iPosX + rcPadding.left + sz.cx, iPosY + sz.cy + rcPadding.top + rcPadding.bottom };
- pControl->SetPos(rcCtrl, false);
- iPosY += sz.cy + m_iChildPadding + rcPadding.top + rcPadding.bottom;
- cyNeeded += sz.cy + rcPadding.top + rcPadding.bottom;
- szRemaining.cy -= sz.cy + m_iChildPadding + rcPadding.bottom;
- }
- cyNeeded += (nEstimateNum - 1) * m_iChildPadding;
- if( m_pHorizontalScrollBar != NULL ) {
- if( cxNeeded > rc.right - rc.left ) {
- if( m_pHorizontalScrollBar->IsVisible() ) {
- m_pHorizontalScrollBar->SetScrollRange(cxNeeded - (rc.right - rc.left));
- }
- else {
- m_pHorizontalScrollBar->SetVisible(true);
- m_pHorizontalScrollBar->SetScrollRange(cxNeeded - (rc.right - rc.left));
- m_pHorizontalScrollBar->SetScrollPos(0);
- rc.bottom -= m_pHorizontalScrollBar->GetFixedHeight();
- }
- }
- else {
- if( m_pHorizontalScrollBar->IsVisible() ) {
- m_pHorizontalScrollBar->SetVisible(false);
- m_pHorizontalScrollBar->SetScrollRange(0);
- m_pHorizontalScrollBar->SetScrollPos(0);
- rc.bottom += m_pHorizontalScrollBar->GetFixedHeight();
- }
- }
- }
- // Process the scrollbar
- ProcessScrollBar(rc, cxNeeded, cyNeeded);
- }
- void CListBodyUI::DoEvent(TEventUI& event)
- {
- if( !IsMouseEnabled() && event.Type > UIEVENT__MOUSEBEGIN && event.Type < UIEVENT__MOUSEEND ) {
- if( m_pOwner != NULL ) m_pOwner->DoEvent(event);
- else CControlUI::DoEvent(event);
- return;
- }
- if( m_pOwner != NULL ) m_pOwner->DoEvent(event); else CControlUI::DoEvent(event);
- }
- /////////////////////////////////////////////////////////////////////////////////////
- //
- //
- CListHeaderUI::CListHeaderUI()
- {
- }
- LPCTSTR CListHeaderUI::GetClass() const
- {
- return _T("ListHeaderUI");
- }
- LPVOID CListHeaderUI::GetInterface(LPCTSTR pstrName)
- {
- if( _tcscmp(pstrName, DUI_CTR_LISTHEADER) == 0 ) return this;
- return CHorizontalLayoutUI::GetInterface(pstrName);
- }
- SIZE CListHeaderUI::EstimateSize(SIZE szAvailable)
- {
- SIZE cXY = {0, m_cxyFixed.cy};
- if( cXY.cy == 0 && m_pManager != NULL ) {
- for( int it = 0; it < m_items.GetSize(); it++ ) {
- cXY.cy = MAX(cXY.cy,static_cast<CControlUI*>(m_items[it])->EstimateSize(szAvailable).cy);
- }
- int nMin = m_pManager->GetDefaultFontInfo()->tm.tmHeight + 6;
- cXY.cy = MAX(cXY.cy,nMin);
- }
- for( int it = 0; it < m_items.GetSize(); it++ ) {
- cXY.cx += static_cast<CControlUI*>(m_items[it])->EstimateSize(szAvailable).cx;
- }
- return cXY;
- }
- /////////////////////////////////////////////////////////////////////////////////////
- //
- //
- CListHeaderItemUI::CListHeaderItemUI() : m_bDragable(true), m_uButtonState(0), m_iSepWidth(4),
- m_uTextStyle(DT_VCENTER | DT_CENTER | DT_SINGLELINE), m_dwTextColor(0), m_iFont(-1), m_bShowHtml(false)
- {
- SetTextPadding(CDuiRect(2, 0, 2, 0));
- ptLastMouse.x = ptLastMouse.y = 0;
- SetMinWidth(16);
- }
- LPCTSTR CListHeaderItemUI::GetClass() const
- {
- return _T("ListHeaderItemUI");
- }
- LPVOID CListHeaderItemUI::GetInterface(LPCTSTR pstrName)
- {
- if( _tcscmp(pstrName, DUI_CTR_LISTHEADERITEM) == 0 ) return this;
- return CControlUI::GetInterface(pstrName);
- }
- UINT CListHeaderItemUI::GetControlFlags() const
- {
- if( IsEnabled() && m_iSepWidth != 0 ) return UIFLAG_SETCURSOR;
- else return 0;
- }
- void CListHeaderItemUI::SetEnabled(bool bEnable)
- {
- CControlUI::SetEnabled(bEnable);
- if( !IsEnabled() ) {
- m_uButtonState = 0;
- }
- }
- bool CListHeaderItemUI::IsDragable() const
- {
- return m_bDragable;
- }
- void CListHeaderItemUI::SetDragable(bool bDragable)
- {
- m_bDragable = bDragable;
- if ( !m_bDragable ) m_uButtonState &= ~UISTATE_CAPTURED;
- }
- DWORD CListHeaderItemUI::GetSepWidth() const
- {
- return m_iSepWidth;
- }
- void CListHeaderItemUI::SetSepWidth(int iWidth)
- {
- m_iSepWidth = iWidth;
- }
- DWORD CListHeaderItemUI::GetTextStyle() const
- {
- return m_uTextStyle;
- }
- void CListHeaderItemUI::SetTextStyle(UINT uStyle)
- {
- m_uTextStyle = uStyle;
- Invalidate();
- }
- DWORD CListHeaderItemUI::GetTextColor() const
- {
- return m_dwTextColor;
- }
- void CListHeaderItemUI::SetTextColor(DWORD dwTextColor)
- {
- m_dwTextColor = dwTextColor;
- }
- RECT CListHeaderItemUI::GetTextPadding() const
- {
- return m_rcTextPadding;
- }
- void CListHeaderItemUI::SetTextPadding(RECT rc)
- {
- m_rcTextPadding = rc;
- Invalidate();
- }
- void CListHeaderItemUI::SetFont(int index)
- {
- m_iFont = index;
- }
- bool CListHeaderItemUI::IsShowHtml()
- {
- return m_bShowHtml;
- }
- void CListHeaderItemUI::SetShowHtml(bool bShowHtml)
- {
- if( m_bShowHtml == bShowHtml ) return;
- m_bShowHtml = bShowHtml;
- Invalidate();
- }
- LPCTSTR CListHeaderItemUI::GetNormalImage() const
- {
- return m_diNormal.sDrawString;
- }
- void CListHeaderItemUI::SetNormalImage(LPCTSTR pStrImage)
- {
- if( m_diNormal.sDrawString == pStrImage && m_diNormal.pImageInfo != NULL ) return;
- m_diNormal.Clear();
- m_diNormal.sDrawString = pStrImage;
- Invalidate();
- }
- LPCTSTR CListHeaderItemUI::GetHotImage() const
- {
- return m_diHot.sDrawString;
- }
- void CListHeaderItemUI::SetHotImage(LPCTSTR pStrImage)
- {
- if( m_diHot.sDrawString == pStrImage && m_diHot.pImageInfo != NULL ) return;
- m_diHot.Clear();
- m_diHot.sDrawString = pStrImage;
- Invalidate();
- }
- LPCTSTR CListHeaderItemUI::GetPushedImage() const
- {
- return m_diPushed.sDrawString;
- }
- void CListHeaderItemUI::SetPushedImage(LPCTSTR pStrImage)
- {
- if( m_diPushed.sDrawString == pStrImage && m_diPushed.pImageInfo != NULL ) return;
- m_diPushed.Clear();
- m_diPushed.sDrawString = pStrImage;
- Invalidate();
- }
- LPCTSTR CListHeaderItemUI::GetFocusedImage() const
- {
- return m_diFocused.sDrawString;
- }
- void CListHeaderItemUI::SetFocusedImage(LPCTSTR pStrImage)
- {
- if( m_diFocused.sDrawString == pStrImage && m_diFocused.pImageInfo != NULL ) return;
- m_diFocused.Clear();
- m_diFocused.sDrawString = pStrImage;
- Invalidate();
- }
- LPCTSTR CListHeaderItemUI::GetSepImage() const
- {
- return m_diSep.sDrawString;
- }
- void CListHeaderItemUI::SetSepImage(LPCTSTR pStrImage)
- {
- if( m_diSep.sDrawString == pStrImage && m_diSep.pImageInfo != NULL ) return;
- m_diSep.Clear();
- m_diSep.sDrawString = pStrImage;
- Invalidate();
- }
- void CListHeaderItemUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue)
- {
- if( _tcscmp(pstrName, _T("dragable")) == 0 ) SetDragable(_tcscmp(pstrValue, _T("true")) == 0);
- else if( _tcscmp(pstrName, _T("sepwidth")) == 0 ) SetSepWidth(_ttoi(pstrValue));
- else if( _tcscmp(pstrName, _T("align")) == 0 ) {
- if( _tcsstr(pstrValue, _T("left")) != NULL ) {
- m_uTextStyle &= ~(DT_CENTER | DT_RIGHT);
- m_uTextStyle |= DT_LEFT;
- }
- if( _tcsstr(pstrValue, _T("center")) != NULL ) {
- m_uTextStyle &= ~(DT_LEFT | DT_RIGHT);
- m_uTextStyle |= DT_CENTER;
- }
- if( _tcsstr(pstrValue, _T("right")) != NULL ) {
- m_uTextStyle &= ~(DT_LEFT | DT_CENTER);
- m_uTextStyle |= DT_RIGHT;
- }
- }
- else if( _tcscmp(pstrName, _T("endellipsis")) == 0 ) {
- if( _tcscmp(pstrValue, _T("true")) == 0 ) m_uTextStyle |= DT_END_ELLIPSIS;
- else m_uTextStyle &= ~DT_END_ELLIPSIS;
- }
- else if( _tcscmp(pstrName, _T("font")) == 0 ) SetFont(_ttoi(pstrValue));
- else if( _tcscmp(pstrName, _T("textcolor")) == 0 ) {
- if( *pstrValue == _T('#')) pstrValue = ::CharNext(pstrValue);
- LPTSTR pstr = NULL;
- DWORD clrColor = _tcstoul(pstrValue, &pstr, 16);
- SetTextColor(clrColor);
- }
- else if( _tcscmp(pstrName, _T("textpadding")) == 0 ) {
- RECT rcTextPadding = { 0 };
- LPTSTR pstr = NULL;
- rcTextPadding.left = _tcstol(pstrValue, &pstr, 10); ASSERT(pstr);
- rcTextPadding.top = _tcstol(pstr + 1, &pstr, 10); ASSERT(pstr);
- rcTextPadding.right = _tcstol(pstr + 1, &pstr, 10); ASSERT(pstr);
- rcTextPadding.bottom = _tcstol(pstr + 1, &pstr, 10); ASSERT(pstr);
- SetTextPadding(rcTextPadding);
- }
- else if( _tcscmp(pstrName, _T("showhtml")) == 0 ) SetShowHtml(_tcscmp(pstrValue, _T("true")) == 0);
- else if( _tcscmp(pstrName, _T("normalimage")) == 0 ) SetNormalImage(pstrValue);
- else if( _tcscmp(pstrName, _T("hotimage")) == 0 ) SetHotImage(pstrValue);
- else if( _tcscmp(pstrName, _T("pushedimage")) == 0 ) SetPushedImage(pstrValue);
- else if( _tcscmp(pstrName, _T("focusedimage")) == 0 ) SetFocusedImage(pstrValue);
- else if( _tcscmp(pstrName, _T("sepimage")) == 0 ) SetSepImage(pstrValue);
- else CControlUI::SetAttribute(pstrName, pstrValue);
- }
- void CListHeaderItemUI::DoEvent(TEventUI& event)
- {
- if( !IsMouseEnabled() && event.Type > UIEVENT__MOUSEBEGIN && event.Type < UIEVENT__MOUSEEND ) {
- if( m_pParent != NULL ) m_pParent->DoEvent(event);
- else CControlUI::DoEvent(event);
- return;
- }
- if( event.Type == UIEVENT_SETFOCUS )
- {
- Invalidate();
- }
- if( event.Type == UIEVENT_KILLFOCUS )
- {
- Invalidate();
- }
- if( event.Type == UIEVENT_BUTTONDOWN || event.Type == UIEVENT_DBLCLICK )
- {
- if( !IsEnabled() ) return;
- RECT rcSeparator = GetThumbRect();
- if (m_iSepWidth>=0)//111024 by cddjr, 增加分隔符区域,方便用户拖动
- rcSeparator.left-=4;
- else
- rcSeparator.right+=4;
- if( ::PtInRect(&rcSeparator, event.ptMouse) ) {
- if( m_bDragable ) {
- m_uButtonState |= UISTATE_CAPTURED;
- ptLastMouse = event.ptMouse;
- }
- }
- else {
- m_uButtonState |= UISTATE_PUSHED;
- m_pManager->SendNotify(this, DUI_MSGTYPE_HEADERCLICK);
- Invalidate();
- }
- return;
- }
- if( event.Type == UIEVENT_BUTTONUP )
- {
- if( (m_uButtonState & UISTATE_CAPTURED) != 0 ) {
- m_uButtonState &= ~UISTATE_CAPTURED;
- if( GetParent() )
- GetParent()->NeedParentUpdate();
- }
- else if( (m_uButtonState & UISTATE_PUSHED) != 0 ) {
- m_uButtonState &= ~UISTATE_PUSHED;
- Invalidate();
- }
- return;
- }
- if( event.Type == UIEVENT_MOUSEMOVE )
- {
- if( (m_uButtonState & UISTATE_CAPTURED) != 0 ) {
- RECT rc = m_rcItem;
- if( m_iSepWidth >= 0 ) {
- rc.right -= ptLastMouse.x - event.ptMouse.x;
- }
- else {
- rc.left -= ptLastMouse.x - event.ptMouse.x;
- }
-
- if( rc.right - rc.left > GetMinWidth() ) {
- m_cxyFixed.cx = rc.right - rc.left;
- ptLastMouse = event.ptMouse;
- if( GetParent() )
- GetParent()->NeedParentUpdate();
- }
- }
- return;
- }
- if( event.Type == UIEVENT_SETCURSOR )
- {
- RECT rcSeparator = GetThumbRect();
- if (m_iSepWidth>=0)//111024 by cddjr, 增加分隔符区域,方便用户拖动
- rcSeparator.left-=4;
- else
- rcSeparator.right+=4;
- if( IsEnabled() && m_bDragable && ::PtInRect(&rcSeparator, event.ptMouse) ) {
- ::SetCursor(::LoadCursor(NULL, MAKEINTRESOURCE(IDC_SIZEWE)));
- return;
- }
- }
- if( event.Type == UIEVENT_MOUSEENTER )
- {
- if( IsEnabled() ) {
- m_uButtonState |= UISTATE_HOT;
- Invalidate();
- }
- return;
- }
- if( event.Type == UIEVENT_MOUSELEAVE )
- {
- if( IsEnabled() ) {
- m_uButtonState &= ~UISTATE_HOT;
- Invalidate();
- }
- return;
- }
- CControlUI::DoEvent(event);
- }
- SIZE CListHeaderItemUI::EstimateSize(SIZE szAvailable)
- {
- if( m_cxyFixed.cy == 0 ) return CDuiSize(m_cxyFixed.cx, m_pManager->GetDefaultFontInfo()->tm.tmHeight + 14);
- return CControlUI::EstimateSize(szAvailable);
- }
- RECT CListHeaderItemUI::GetThumbRect() const
- {
- if( m_iSepWidth >= 0 ) return CDuiRect(m_rcItem.right - m_iSepWidth, m_rcItem.top, m_rcItem.right, m_rcItem.bottom);
- else return CDuiRect(m_rcItem.left, m_rcItem.top, m_rcItem.left - m_iSepWidth, m_rcItem.bottom);
- }
- void CListHeaderItemUI::PaintStatusImage(HDC hDC)
- {
- if( IsFocused() ) m_uButtonState |= UISTATE_FOCUSED;
- else m_uButtonState &= ~ UISTATE_FOCUSED;
- if( (m_uButtonState & UISTATE_PUSHED) != 0 ) {
- if( !DrawImage(hDC, m_diPushed) ) DrawImage(hDC, m_diNormal);
- }
- else if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- if( !DrawImage(hDC, m_diHot) ) DrawImage(hDC, m_diNormal);
- }
- else if( (m_uButtonState & UISTATE_FOCUSED) != 0 ) {
- if( !DrawImage(hDC, m_diFocused) ) DrawImage(hDC, m_diNormal);
- }
- else {
- DrawImage(hDC, m_diNormal);
- }
- RECT rcThumb = GetThumbRect();
- rcThumb.left -= m_rcItem.left;
- rcThumb.top -= m_rcItem.top;
- rcThumb.right -= m_rcItem.left;
- rcThumb.bottom -= m_rcItem.top;
- m_diSep.rcDestOffset = rcThumb;
- DrawImage(hDC, m_diSep);
- }
- void CListHeaderItemUI::PaintText(HDC hDC)
- {
- if( m_dwTextColor == 0 ) m_dwTextColor = m_pManager->GetDefaultFontColor();
- RECT rcText = m_rcItem;
- rcText.left += m_rcTextPadding.left;
- rcText.top += m_rcTextPadding.top;
- rcText.right -= m_rcTextPadding.right;
- rcText.bottom -= m_rcTextPadding.bottom;
- if( m_sText.IsEmpty() ) return;
- int nLinks = 0;
- if( m_bShowHtml )
- CRenderEngine::DrawHtmlText(hDC, m_pManager, rcText, m_sText, m_dwTextColor, \
- NULL, NULL, nLinks, DT_SINGLELINE | m_uTextStyle);
- else
- CRenderEngine::DrawText(hDC, m_pManager, rcText, m_sText, m_dwTextColor, \
- m_iFont, DT_SINGLELINE | m_uTextStyle);
- }
- /////////////////////////////////////////////////////////////////////////////////////
- //
- //
- CListElementUI::CListElementUI() :
- m_iIndex(-1),
- m_pOwner(NULL),
- m_bSelected(false),
- m_uButtonState(0)
- {
- }
- LPCTSTR CListElementUI::GetClass() const
- {
- return _T("ListElementUI");
- }
- UINT CListElementUI::GetControlFlags() const
- {
- return UIFLAG_WANTRETURN;
- }
- LPVOID CListElementUI::GetInterface(LPCTSTR pstrName)
- {
- if( _tcscmp(pstrName, DUI_CTR_LISTITEM) == 0 ) return static_cast<IListItemUI*>(this);
- if( _tcscmp(pstrName, DUI_CTR_LISTELEMENT) == 0 ) return static_cast<CListElementUI*>(this);
- return CControlUI::GetInterface(pstrName);
- }
- IListOwnerUI* CListElementUI::GetOwner()
- {
- return m_pOwner;
- }
- void CListElementUI::SetOwner(CControlUI* pOwner)
- {
- m_pOwner = static_cast<IListOwnerUI*>(pOwner->GetInterface(_T("IListOwner")));
- }
- void CListElementUI::SetVisible(bool bVisible)
- {
- CControlUI::SetVisible(bVisible);
- if( !IsVisible() && m_bSelected)
- {
- m_bSelected = false;
- if( m_pOwner != NULL ) m_pOwner->SelectItem(-1);
- }
- }
- void CListElementUI::SetEnabled(bool bEnable)
- {
- CControlUI::SetEnabled(bEnable);
- if( !IsEnabled() ) {
- m_uButtonState = 0;
- }
- }
- int CListElementUI::GetIndex() const
- {
- return m_iIndex;
- }
- void CListElementUI::SetIndex(int iIndex)
- {
- m_iIndex = iIndex;
- }
- void CListElementUI::Invalidate()
- {
- if( !IsVisible() ) return;
- if( GetParent() ) {
- CContainerUI* pParentContainer = static_cast<CContainerUI*>(GetParent()->GetInterface(_T("Container")));
- if( pParentContainer ) {
- RECT rc = pParentContainer->GetPos();
- RECT rcInset = pParentContainer->GetInset();
- rc.left += rcInset.left;
- rc.top += rcInset.top;
- rc.right -= rcInset.right;
- rc.bottom -= rcInset.bottom;
- CScrollBarUI* pVerticalScrollBar = pParentContainer->GetVerticalScrollBar();
- if( pVerticalScrollBar && pVerticalScrollBar->IsVisible() ) rc.right -= pVerticalScrollBar->GetFixedWidth();
- CScrollBarUI* pHorizontalScrollBar = pParentContainer->GetHorizontalScrollBar();
- if( pHorizontalScrollBar && pHorizontalScrollBar->IsVisible() ) rc.bottom -= pHorizontalScrollBar->GetFixedHeight();
- RECT invalidateRc = m_rcItem;
- if( !::IntersectRect(&invalidateRc, &m_rcItem, &rc) )
- {
- return;
- }
- CControlUI* pParent = GetParent();
- RECT rcTemp;
- RECT rcParent;
- while( pParent = pParent->GetParent() )
- {
- rcTemp = invalidateRc;
- rcParent = pParent->GetPos();
- if( !::IntersectRect(&invalidateRc, &rcTemp, &rcParent) )
- {
- return;
- }
- }
- if( m_pManager != NULL ) m_pManager->Invalidate(invalidateRc);
- }
- else {
- CControlUI::Invalidate();
- }
- }
- else {
- CControlUI::Invalidate();
- }
- }
- bool CListElementUI::Activate()
- {
- if( !CControlUI::Activate() ) return false;
- if( m_pManager != NULL ) m_pManager->SendNotify(this, DUI_MSGTYPE_ITEMACTIVATE);
- return true;
- }
- bool CListElementUI::IsSelected() const
- {
- return m_bSelected;
- }
- bool CListElementUI::Select(bool bSelect, bool bTriggerEvent)
- {
- if( !IsEnabled() ) return false;
- if( bSelect == m_bSelected ) return true;
- m_bSelected = bSelect;
- if( bSelect && m_pOwner != NULL ) m_pOwner->SelectItem(m_iIndex, bTriggerEvent);
- Invalidate();
- return true;
- }
- bool CListElementUI::IsExpanded() const
- {
- return false;
- }
- bool CListElementUI::Expand(bool /*bExpand = true*/)
- {
- return false;
- }
- void CListElementUI::DoEvent(TEventUI& event)
- {
- if( !IsMouseEnabled() && event.Type > UIEVENT__MOUSEBEGIN && event.Type < UIEVENT__MOUSEEND ) {
- if( m_pOwner != NULL ) m_pOwner->DoEvent(event);
- else CControlUI::DoEvent(event);
- return;
- }
- if( event.Type == UIEVENT_DBLCLICK )
- {
- if( IsEnabled() ) {
- Activate();
- Invalidate();
- }
- return;
- }
- if( event.Type == UIEVENT_KEYDOWN && IsEnabled() )
- {
- if( event.chKey == VK_RETURN ) {
- Activate();
- Invalidate();
- return;
- }
- }
- // An important twist: The list-item will send the event not to its immediate
- // parent but to the "attached" list. A list may actually embed several components
- // in its path to the item, but key-presses etc. needs to go to the actual list.
- if( m_pOwner != NULL ) m_pOwner->DoEvent(event); else CControlUI::DoEvent(event);
- }
- void CListElementUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue)
- {
- if( _tcscmp(pstrName, _T("selected")) == 0 ) Select();
- else CControlUI::SetAttribute(pstrName, pstrValue);
- }
- void CListElementUI::DrawItemBk (HDC hDC, const RECT& rcItem)
- {
- ASSERT(m_pOwner);
- if( m_pOwner == NULL ) return;
- TListInfoUI* pInfo = m_pOwner->GetListInfo();
- if( pInfo == NULL ) return;
- DWORD iBackColor = 0;
- if(!pInfo->bAlternateBk || m_iIndex % 2 == 0) iBackColor = pInfo->dwBkColor;
- if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- iBackColor = pInfo->dwHotBkColor;
- }
- if( IsSelected() ) {
- iBackColor = pInfo->dwSelectedBkColor;
- }
- if( !IsEnabled() ) {
- iBackColor = pInfo->dwDisabledBkColor;
- }
- //addby Hong
- if(m_dwBackColor != 0)
- {
- iBackColor = m_dwBackColor;
- }
- if ( iBackColor != 0 ) {
- CRenderEngine::DrawColor(hDC, rcItem, GetAdjustColor(iBackColor));
- }
- if( !IsEnabled() ) {
- if( DrawImage(hDC, pInfo->diDisabled) ) return;
- }
- if( IsSelected() ) {
- if( DrawImage(hDC, pInfo->diSelected) ) return;
- }
- if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- if( DrawImage(hDC, pInfo->diHot) ) return;
- }
- if( !DrawImage(hDC, m_diBk) ) {
- if( !pInfo->bAlternateBk || m_iIndex % 2 == 0 ) {
- if( DrawImage(hDC, pInfo->diBk) ) return;
- }
- }
- if ( pInfo->dwLineColor != 0 ) {
- RECT rcLine = { rcItem.left, rcItem.bottom - 1, rcItem.right, rcItem.bottom - 1 };
- CRenderEngine::DrawLine(hDC, rcLine, 1, GetAdjustColor(pInfo->dwLineColor));
- }
- }
- /////////////////////////////////////////////////////////////////////////////////////
- //
- //
- CListLabelElementUI::CListLabelElementUI()
- {
- }
- LPCTSTR CListLabelElementUI::GetClass() const
- {
- return _T("ListLabelElementUI");
- }
- LPVOID CListLabelElementUI::GetInterface(LPCTSTR pstrName)
- {
- if( _tcscmp(pstrName, DUI_CTR_LISTLABELELEMENT) == 0 ) return static_cast<CListLabelElementUI*>(this);
- return CListElementUI::GetInterface(pstrName);
- }
- void CListLabelElementUI::DoEvent(TEventUI& event)
- {
- if( !IsMouseEnabled() && event.Type > UIEVENT__MOUSEBEGIN && event.Type < UIEVENT__MOUSEEND ) {
- if( m_pOwner != NULL ) m_pOwner->DoEvent(event);
- else CListElementUI::DoEvent(event);
- return;
- }
- if( event.Type == UIEVENT_BUTTONDOWN || event.Type == UIEVENT_RBUTTONDOWN )
- {
- if( IsEnabled() ) {
- m_pManager->SendNotify(this, DUI_MSGTYPE_ITEMCLICK);
- Select();
- Invalidate();
- }
- return;
- }
- if( event.Type == UIEVENT_MOUSEMOVE )
- {
- return;
- }
- if( event.Type == UIEVENT_BUTTONUP )
- {
- return;
- }
- if( event.Type == UIEVENT_MOUSEENTER )
- {
- if( IsEnabled() ) {
- m_uButtonState |= UISTATE_HOT;
- Invalidate();
- }
- return;
- }
- if( event.Type == UIEVENT_MOUSELEAVE )
- {
- if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- m_uButtonState &= ~UISTATE_HOT;
- Invalidate();
- }
- return;
- }
- CListElementUI::DoEvent(event);
- }
- SIZE CListLabelElementUI::EstimateSize(SIZE szAvailable)
- {
- if( m_pOwner == NULL ) return CDuiSize(0, 0);
- TListInfoUI* pInfo = m_pOwner->GetListInfo();
- SIZE cXY = m_cxyFixed;
- if( cXY.cy == 0 && m_pManager != NULL ) {
- cXY.cy = m_pManager->GetFontInfo(pInfo->nFont)->tm.tmHeight + 8;
- cXY.cy += pInfo->rcTextPadding.top + pInfo->rcTextPadding.bottom;
- }
- if( cXY.cx == 0 && m_pManager != NULL ) {
- RECT rcText = { 0, 0, 9999, cXY.cy };
- if( pInfo->bShowHtml ) {
- int nLinks = 0;
- CRenderEngine::DrawHtmlText(m_pManager->GetPaintDC(), m_pManager, rcText, m_sText, 0, NULL, NULL, nLinks, DT_SINGLELINE | DT_CALCRECT | pInfo->uTextStyle & ~DT_RIGHT & ~DT_CENTER);
- }
- else {
- CRenderEngine::DrawText(m_pManager->GetPaintDC(), m_pManager, rcText, m_sText, 0, pInfo->nFont, DT_SINGLELINE | DT_CALCRECT | pInfo->uTextStyle & ~DT_RIGHT & ~DT_CENTER);
- }
- cXY.cx = rcText.right - rcText.left + pInfo->rcTextPadding.left + pInfo->rcTextPadding.right;
- }
- return cXY;
- }
- void CListLabelElementUI::DoPaint(HDC hDC, const RECT& rcPaint)
- {
- if( !::IntersectRect(&m_rcPaint, &rcPaint, &m_rcItem) ) return;
- DrawItemBk(hDC, m_rcItem);
- DrawItemText(hDC, m_rcItem);
- }
- void CListLabelElementUI::SetItemTextColor (DWORD dwTextcolor)
- {
- m_iTextColor = dwTextcolor;
- }
- DWORD CListLabelElementUI::GetItemTextColor () const
- {
- return m_iTextColor;
- }
- void CListLabelElementUI::DrawItemText (HDC hDC, const RECT& rcItem)
- {
- if( m_sText.IsEmpty() ) return;
- if( m_pOwner == NULL ) return;
- TListInfoUI* pInfo = m_pOwner->GetListInfo();
- DWORD iTextColor = pInfo->dwTextColor;
- if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- iTextColor = pInfo->dwHotTextColor;
- }
- if( IsSelected() ) {
- iTextColor = pInfo->dwSelectedTextColor;
- }
- if( !IsEnabled() ) {
- iTextColor = pInfo->dwDisabledTextColor;
- }
- if (m_iTextColor!=0)
- {
- iTextColor = m_iTextColor;
- }
- int nLinks = 0;
- RECT rcText = rcItem;
- rcText.left += pInfo->rcTextPadding.left;
- rcText.right -= pInfo->rcTextPadding.right;
- rcText.top += pInfo->rcTextPadding.top;
- rcText.bottom -= pInfo->rcTextPadding.bottom;
- if( pInfo->bShowHtml )
- CRenderEngine::DrawHtmlText(hDC, m_pManager, rcText, m_sText, iTextColor, \
- NULL, NULL, nLinks, DT_SINGLELINE | pInfo->uTextStyle);
- else
- CRenderEngine::DrawText(hDC, m_pManager, rcText, m_sText, iTextColor, \
- pInfo->nFont, DT_SINGLELINE | pInfo->uTextStyle);
- }
- /////////////////////////////////////////////////////////////////////////////////////
- //
- //
- CListTextElementUI::CListTextElementUI() : m_nLinks(0), m_nHoverLink(-1), m_pOwner(NULL)
- {
- ::ZeroMemory(&m_rcLinks, sizeof(m_rcLinks));
- }
- CListTextElementUI::~CListTextElementUI()
- {
- CDuiString* pText;
- for( int it = 0; it < m_aTexts.GetSize(); it++ ) {
- pText = static_cast<CDuiString*>(m_aTexts[it]);
- if( pText ) delete pText;
- }
- m_aTexts.Empty();
- }
- LPCTSTR CListTextElementUI::GetClass() const
- {
- return _T("ListTextElementUI");
- }
- LPVOID CListTextElementUI::GetInterface(LPCTSTR pstrName)
- {
- if( _tcscmp(pstrName, DUI_CTR_LISTTEXTELEMENT) == 0 ) return static_cast<CListTextElementUI*>(this);
- return CListLabelElementUI::GetInterface(pstrName);
- }
- UINT CListTextElementUI::GetControlFlags() const
- {
- return UIFLAG_WANTRETURN | ( (IsEnabled() && m_nLinks > 0) ? UIFLAG_SETCURSOR : 0);
- }
- LPCTSTR CListTextElementUI::GetText(int iIndex) const
- {
- CDuiString* pText = static_cast<CDuiString*>(m_aTexts.GetAt(iIndex));
- if( pText ) return pText->GetData();
- return NULL;
- }
- void CListTextElementUI::SetText(int iIndex, LPCTSTR pstrText)
- {
- if( m_pOwner == NULL ) return;
- TListInfoUI* pInfo = m_pOwner->GetListInfo();
- if( iIndex < 0 || iIndex >= pInfo->nColumns ) return;
- while( m_aTexts.GetSize() < pInfo->nColumns ) { m_aTexts.Add(NULL); }
- CDuiString* pText = static_cast<CDuiString*>(m_aTexts[iIndex]);
- if( (pText == NULL && pstrText == NULL) || (pText && *pText == pstrText) ) return;
- if ( pText ) //by cddjr 2011/10/20
- pText->Assign(pstrText);
- else
- m_aTexts.SetAt(iIndex, new CDuiString(pstrText));
- Invalidate();
- }
- void CListTextElementUI::SetText(int iIndex, LPSTR pstrText)
- {
- CA2W txt(pstrText);
- SetText(iIndex,txt);
- }
- void CListTextElementUI::SetText(int iIndex, LPCSTR pstrText)
- {
- CA2W txt(pstrText);
- SetText(iIndex,txt);
- }
- void CListTextElementUI::SetOwner(CControlUI* pOwner)
- {
- CListElementUI::SetOwner(pOwner);
- m_pOwner = static_cast<IListUI*>(pOwner->GetInterface(_T("IList")));
- }
- CDuiString* CListTextElementUI::GetLinkContent(int iIndex)
- {
- if( iIndex >= 0 && iIndex < m_nLinks ) return &m_sLinks[iIndex];
- return NULL;
- }
- void CListTextElementUI::DoEvent(TEventUI& event)
- {
- if( !IsMouseEnabled() && event.Type > UIEVENT__MOUSEBEGIN && event.Type < UIEVENT__MOUSEEND ) {
- if( m_pOwner != NULL ) m_pOwner->DoEvent(event);
- else CListLabelElementUI::DoEvent(event);
- return;
- }
- // When you hover over a link
- if( event.Type == UIEVENT_SETCURSOR ) {
- for( int i = 0; i < m_nLinks; i++ ) {
- if( ::PtInRect(&m_rcLinks[i], event.ptMouse) ) {
- ::SetCursor(::LoadCursor(NULL, MAKEINTRESOURCE(IDC_HAND)));
- return;
- }
- }
- }
- if( event.Type == UIEVENT_BUTTONUP && IsEnabled() ) {
- for( int i = 0; i < m_nLinks; i++ ) {
- if( ::PtInRect(&m_rcLinks[i], event.ptMouse) ) {
- m_pManager->SendNotify(this, DUI_MSGTYPE_LINK, i);
- return;
- }
- }
- }
- if( m_nLinks > 0 && event.Type == UIEVENT_MOUSEMOVE ) {
- int nHoverLink = -1;
- for( int i = 0; i < m_nLinks; i++ ) {
- if( ::PtInRect(&m_rcLinks[i], event.ptMouse) ) {
- nHoverLink = i;
- break;
- }
- }
- if(m_nHoverLink != nHoverLink) {
- Invalidate();
- m_nHoverLink = nHoverLink;
- }
- }
- if( m_nLinks > 0 && event.Type == UIEVENT_MOUSELEAVE ) {
- if(m_nHoverLink != -1) {
- Invalidate();
- m_nHoverLink = -1;
- }
- }
- CListLabelElementUI::DoEvent(event);
- }
- SIZE CListTextElementUI::EstimateSize(SIZE szAvailable)
- {
- TListInfoUI* pInfo = NULL;
- if( m_pOwner ) pInfo = m_pOwner->GetListInfo();
- SIZE cXY = m_cxyFixed;
- if( cXY.cy == 0 && m_pManager != NULL ) {
- cXY.cy = m_pManager->GetFontInfo(pInfo->nFont)->tm.tmHeight + 8;
- if( pInfo ) cXY.cy += pInfo->rcTextPadding.top + pInfo->rcTextPadding.bottom;
- }
- return cXY;
- }
- void CListTextElementUI::DrawItemText(HDC hDC, const RECT& rcItem)
- {
- if( m_pOwner == NULL ) return;
- TListInfoUI* pInfo = m_pOwner->GetListInfo();
- DWORD iTextColor = pInfo->dwTextColor;
- if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- iTextColor = pInfo->dwHotTextColor;
- }
- if( IsSelected() ) {
- iTextColor = pInfo->dwSelectedTextColor;
- }
- if( !IsEnabled() ) {
- iTextColor = pInfo->dwDisabledTextColor;
- }
- auto iUserTextColor = GetItemTextColor ();
- if(iUserTextColor!=0)
- {
- iTextColor = iUserTextColor;
- }
- IListCallbackUI* pCallback = m_pOwner->GetTextCallback();
- //ASSERT(pCallback);
- //if( pCallback == NULL ) return;
- m_nLinks = 0;
- int nLinks = lengthof(m_rcLinks);
- for( int i = 0; i < pInfo->nColumns; i++ )
- {
- RECT rcItem = { pInfo->rcColumn[i].left, m_rcItem.top, pInfo->rcColumn[i].right, m_rcItem.bottom };
- rcItem.left += pInfo->rcTextPadding.left;
- rcItem.right -= pInfo->rcTextPadding.right;
- rcItem.top += pInfo->rcTextPadding.top;
- rcItem.bottom -= pInfo->rcTextPadding.bottom;
- CDuiString strText;//不使用LPCTSTR,否则限制太多 by cddjr 2011/10/20
- if( pCallback ) strText = pCallback->GetItemText(this, m_iIndex, i);
- else strText.Assign(GetText(i));
- if( pInfo->bShowHtml )
- CRenderEngine::DrawHtmlText(hDC, m_pManager, rcItem, strText.GetData(), iTextColor, \
- &m_rcLinks[m_nLinks], &m_sLinks[m_nLinks], nLinks, DT_SINGLELINE | pInfo->uTextStyle);
- else
- CRenderEngine::DrawText(hDC, m_pManager, rcItem, strText.GetData(), iTextColor, \
- pInfo->nFont, DT_SINGLELINE | pInfo->uTextStyle);
- m_nLinks += nLinks;
- nLinks = lengthof(m_rcLinks) - m_nLinks;
- }
- for( int i = m_nLinks; i < lengthof(m_rcLinks); i++ ) {
- ::ZeroMemory(m_rcLinks + i, sizeof(RECT));
- ((CDuiString*)(m_sLinks + i))->Empty();
- }
- }
- /////////////////////////////////////////////////////////////////////////////////////
- //
- //
- CListContainerElementUI::CListContainerElementUI() :
- m_iIndex(-1),
- m_pOwner(NULL),
- m_bSelected(false),
- m_uButtonState(0)
- {
- }
- LPCTSTR CListContainerElementUI::GetClass() const
- {
- return _T("ListContainerElementUI");
- }
- UINT CListContainerElementUI::GetControlFlags() const
- {
- return UIFLAG_WANTRETURN;
- }
- LPVOID CListContainerElementUI::GetInterface(LPCTSTR pstrName)
- {
- if( _tcscmp(pstrName, DUI_CTR_LISTITEM) == 0 ) return static_cast<IListItemUI*>(this);
- if( _tcscmp(pstrName, DUI_CTR_LISTCONTAINERELEMENT) == 0 ) return static_cast<CListContainerElementUI*>(this);
- return CContainerUI::GetInterface(pstrName);
- }
- IListOwnerUI* CListContainerElementUI::GetOwner()
- {
- return m_pOwner;
- }
- void CListContainerElementUI::SetOwner(CControlUI* pOwner)
- {
- m_pOwner = static_cast<IListOwnerUI*>(pOwner->GetInterface(_T("IListOwner")));
- }
- void CListContainerElementUI::SetVisible(bool bVisible)
- {
- CContainerUI::SetVisible(bVisible);
- if( !IsVisible() && m_bSelected)
- {
- m_bSelected = false;
- if( m_pOwner != NULL ) m_pOwner->SelectItem(-1);
- }
- }
- void CListContainerElementUI::SetEnabled(bool bEnable)
- {
- CControlUI::SetEnabled(bEnable);
- if( !IsEnabled() ) {
- m_uButtonState = 0;
- }
- }
- int CListContainerElementUI::GetIndex() const
- {
- return m_iIndex;
- }
- void CListContainerElementUI::SetIndex(int iIndex)
- {
- m_iIndex = iIndex;
- }
- void CListContainerElementUI::Invalidate()
- {
- if( !IsVisible() ) return;
- if( GetParent() ) {
- CContainerUI* pParentContainer = static_cast<CContainerUI*>(GetParent()->GetInterface(_T("Container")));
- if( pParentContainer ) {
- RECT rc = pParentContainer->GetPos();
- RECT rcInset = pParentContainer->GetInset();
- rc.left += rcInset.left;
- rc.top += rcInset.top;
- rc.right -= rcInset.right;
- rc.bottom -= rcInset.bottom;
- CScrollBarUI* pVerticalScrollBar = pParentContainer->GetVerticalScrollBar();
- if( pVerticalScrollBar && pVerticalScrollBar->IsVisible() ) rc.right -= pVerticalScrollBar->GetFixedWidth();
- CScrollBarUI* pHorizontalScrollBar = pParentContainer->GetHorizontalScrollBar();
- if( pHorizontalScrollBar && pHorizontalScrollBar->IsVisible() ) rc.bottom -= pHorizontalScrollBar->GetFixedHeight();
- RECT invalidateRc = m_rcItem;
- if( !::IntersectRect(&invalidateRc, &m_rcItem, &rc) )
- {
- return;
- }
- CControlUI* pParent = GetParent();
- RECT rcTemp;
- RECT rcParent;
- while( pParent = pParent->GetParent() )
- {
- rcTemp = invalidateRc;
- rcParent = pParent->GetPos();
- if( !::IntersectRect(&invalidateRc, &rcTemp, &rcParent) )
- {
- return;
- }
- }
- if( m_pManager != NULL ) m_pManager->Invalidate(invalidateRc);
- }
- else {
- CContainerUI::Invalidate();
- }
- }
- else {
- CContainerUI::Invalidate();
- }
- }
- bool CListContainerElementUI::Activate()
- {
- if( !CContainerUI::Activate() ) return false;
- if( m_pManager != NULL ) m_pManager->SendNotify(this, DUI_MSGTYPE_ITEMACTIVATE);
- return true;
- }
- bool CListContainerElementUI::IsSelected() const
- {
- return m_bSelected;
- }
- bool CListContainerElementUI::Select(bool bSelect, bool bTriggerEvent)
- {
- if( !IsEnabled() ) return false;
- if( bSelect == m_bSelected ) return true;
- m_bSelected = bSelect;
- if( bSelect && m_pOwner != NULL ) m_pOwner->SelectItem(m_iIndex, bTriggerEvent);
- Invalidate();
- return true;
- }
- bool CListContainerElementUI::IsExpanded() const
- {
- return false;
- }
- bool CListContainerElementUI::Expand(bool /*bExpand = true*/)
- {
- return false;
- }
- void CListContainerElementUI::DoEvent(TEventUI& event)
- {
- if( !IsMouseEnabled() && event.Type > UIEVENT__MOUSEBEGIN && event.Type < UIEVENT__MOUSEEND ) {
- if( m_pOwner != NULL ) m_pOwner->DoEvent(event);
- else CContainerUI::DoEvent(event);
- return;
- }
- if( event.Type == UIEVENT_DBLCLICK )
- {
- if( IsEnabled() ) {
- Activate();
- Invalidate();
- }
- return;
- }
- if( event.Type == UIEVENT_KEYDOWN && IsEnabled() )
- {
- if( event.chKey == VK_RETURN ) {
- Activate();
- Invalidate();
- return;
- }
- }
- if( event.Type == UIEVENT_BUTTONDOWN || event.Type == UIEVENT_RBUTTONDOWN )
- {
- if( IsEnabled() ){
- m_pManager->SendNotify(this, DUI_MSGTYPE_ITEMCLICK);
- Select();
- Invalidate();
- }
- return;
- }
- if( event.Type == UIEVENT_BUTTONUP )
- {
- return;
- }
- if( event.Type == UIEVENT_MOUSEMOVE )
- {
- return;
- }
- if( event.Type == UIEVENT_MOUSEENTER )
- {
- if( IsEnabled() ) {
- m_uButtonState |= UISTATE_HOT;
- Invalidate();
- }
- return;
- }
- if( event.Type == UIEVENT_MOUSELEAVE )
- {
- if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- m_uButtonState &= ~UISTATE_HOT;
- Invalidate();
- }
- return;
- }
- // An important twist: The list-item will send the event not to its immediate
- // parent but to the "attached" list. A list may actually embed several components
- // in its path to the item, but key-presses etc. needs to go to the actual list.
- if( m_pOwner != NULL ) m_pOwner->DoEvent(event); else CControlUI::DoEvent(event);
- }
- void CListContainerElementUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue)
- {
- if( _tcscmp(pstrName, _T("selected")) == 0 ) Select();
- else CContainerUI::SetAttribute(pstrName, pstrValue);
- }
- void CListContainerElementUI::DoPaint(HDC hDC, const RECT& rcPaint)
- {
- if( !::IntersectRect(&m_rcPaint, &rcPaint, &m_rcItem) ) return;
- DrawItemBk(hDC, m_rcItem);
- CContainerUI::DoPaint(hDC, rcPaint);
- }
- void CListContainerElementUI::DrawItemText(HDC hDC, const RECT& rcItem)
- {
- return;
- }
- void CListContainerElementUI::DrawItemBk(HDC hDC, const RECT& rcItem)
- {
- ASSERT(m_pOwner);
- if( m_pOwner == NULL ) return;
- TListInfoUI* pInfo = m_pOwner->GetListInfo();
- if( pInfo == NULL ) return;
- DWORD iBackColor = 0;
- if( !pInfo->bAlternateBk || m_iIndex % 2 == 0 ) iBackColor = pInfo->dwBkColor;
- if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- iBackColor = pInfo->dwHotBkColor;
- }
- if( IsSelected() ) {
- iBackColor = pInfo->dwSelectedBkColor;
- }
- if( !IsEnabled() ) {
- iBackColor = pInfo->dwDisabledBkColor;
- }
- if ( iBackColor != 0 ) {
- CRenderEngine::DrawColor(hDC, m_rcItem, GetAdjustColor(iBackColor));
- }
- if( !IsEnabled() ) {
- if( DrawImage(hDC, pInfo->diDisabled) ) return;
- }
- if( IsSelected() ) {
- if( DrawImage(hDC, pInfo->diSelected) ) return;
- }
- if( (m_uButtonState & UISTATE_HOT) != 0 ) {
- if( DrawImage(hDC, pInfo->diHot) ) return;
- }
- if( !DrawImage(hDC, m_diBk) ) {
- if( !pInfo->bAlternateBk || m_iIndex % 2 == 0 ) {
- if( DrawImage(hDC, pInfo->diBk) ) return;
- }
- }
- if ( pInfo->dwLineColor != 0 ) {
- RECT rcLine = { m_rcItem.left, m_rcItem.bottom - 1, m_rcItem.right, m_rcItem.bottom - 1 };
- CRenderEngine::DrawLine(hDC, rcLine, 1, GetAdjustColor(pInfo->dwLineColor));
- }
- }
- } // namespace DuiLib
|