使用soui开发的mbc,只支持windows版本
w1146869587
2022-01-24 0408576e9da10015ffa9da0079b8c985113ce4b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
 
#pragma once
 
#include <helper/SAdapterBase.h>
#include "IFontAdapterCallback.h"
 
class CFontAdapter : public SAdapterBase
{
public:
 
private:
    SArray<SStringT> m_arrFont;
    IFontAdapterCallback* m_pCB;
    int        m_nFontType;
    BOOL    m_bFontSort;
public:
    CFontAdapter(IFontAdapterCallback* pCB){
        m_pCB = pCB;
        m_nFontType = 0;
        m_bFontSort = FALSE;
    }
    ~CFontAdapter(){}
 
    virtual int getCount()
    {
        return m_arrFont.GetCount();
    }
 
    virtual void getView(int position, SWindow * pItem, pugi::xml_node xmlTemplate)
    {
        if (pItem->GetChildrenCount() == 0)
            pItem->InitFromXml(xmlTemplate);
 
        SWindow* pFont = pItem->FindChildByID(1);
        SStringT strSelSize = m_arrFont.GetAt(position);
        pFont->SetWindowText(strSelSize);
 
        pItem->SetUserData(position);
        pItem->GetEventSet()->subscribeEvent(EventItemPanelClick::EventID, Subscriber(&CFontAdapter::OnItemClick, this));
    }
 
    SStringT getItemDesc(int position)
    {
        return m_arrFont.GetAt(position);
    }
 
    bool OnItemClick(EventArgs *pEvt)
    {
        EventItemPanelClick* pEvt_ItemPanel = sobj_cast<EventItemPanelClick>(pEvt);
        SASSERT(pEvt_ItemPanel);
        SWindow* pPanel = sobj_cast<SWindow>(pEvt_ItemPanel->sender);
        SOUI::CPoint pt(GET_X_LPARAM(pEvt_ItemPanel->lParam), GET_Y_LPARAM(pEvt_ItemPanel->lParam));
        SWND swnd = pPanel->SwndFromPoint(pt, FALSE);
        SWindow *pClicked = NULL;
        if (swnd)
        {
            pClicked = SWindowMgr::GetWindow(swnd);
        }
 
        int nIndex = pPanel->GetUserData();
        CString strText = GetFontText(nIndex);
        m_pCB->OnClickFontItem(nIndex,m_nFontType,strText);
 
        return true;
    }
 
    SStringT getItem(int position)
    {
        SASSERT(position >= 0 && position < (int)m_arrFont.GetCount());
        return m_arrFont[position];
    }
 
    void AddFontText(const SStringT strFont)
    {
        if (L"" != strFont)
        {
            if(m_bFontSort)
            {
                CString strTempFace = strFont;
                TCHAR            fChar1;
                TCHAR            fChar2;
                CString strText ;
                int nIndex = -1;
                fChar1 = strTempFace.GetAt( 0 );
                if ( fChar1 >= 0x7e ) //??ĿǰÅжÏ×Ö·ûÊDz»ÊÇË«×Ö½Ú×Ö·ûµÄ
                {
                    for(int i =0; i < m_arrFont.GetCount(); i++)
                    {
                        strText = m_arrFont.GetAt(i);
                        strText.Trim();
                        fChar2 = strText.GetAt( 0 );
                        if ( fChar2 >= 0x7e ) //??ĿǰÅжÏ×Ö·ûÊDz»ÊÇË«×Ö½Ú×Ö·ûµÄ
                        {
                            if(strText.CompareNoCase(strFont) ==0)
                            {
                                nIndex = i;
                                break;
                            }
                            if(strFont.CompareNoCase(strText) < 0)
                            {
                                m_arrFont.InsertAt(i,strFont);
                                nIndex = i;
                                break;
                            }
                        }
                        else
                        {
                            m_arrFont.InsertAt(i,strFont);
                            nIndex = i;
                            break;
                        }
                        
                    }
                }
                else
                {
                    for(int i =0; i < m_arrFont.GetCount(); i++)
                    {
                        strText = m_arrFont.GetAt(i);
                        strText.Trim();
                        fChar2 = strText.GetAt( 0 );
                        if ( fChar2 >= 0x7e ) //??ĿǰÅжÏ×Ö·ûÊDz»ÊÇË«×Ö½Ú×Ö·ûµÄ
                        {
                            continue;
                        }
                        else
                        {
                            if(strText.CompareNoCase(strFont) ==0)
                            {
                                nIndex = i;
                                break;
                            }
                            if(strFont.CompareNoCase(strText) < 0)
                            {
                                m_arrFont.InsertAt(i,strFont);
                                nIndex = i;
                                break;
                            }
                        }
                        
                    }
                }
                if(nIndex< 0 )
                    m_arrFont.Add(strFont);
                this->notifyDataSetChanged();
                /*for(int i =0; i < m_arrFont.GetCount(); i++)
                {
                    strText = m_arrFont.GetAt(i);
                    strText.Trim();
                    TCHAR *ptr2=strText.GetBuffer(0);
                    
                    if(strText.CompareNoCase(strFont) ==0)
                    {
                        nIndex = i;
                        break;
                    }
                    if(strFont.CompareNoCase(strText) > 0)
                    {
                        m_arrFont.InsertAt(i,strFont);
                        nIndex = i;
                        break;
                    }
 
                }
                if(nIndex< 0 )
                    m_arrFont.Add(strFont);
                this->notifyDataSetChanged();*/
            }
            else
            {
                if(GetFontIndex((CString)strFont) < 0)
                {
                    m_arrFont.Add(strFont);
                    this->notifyDataSetChanged();
                }
            }
            
        }
    }
    void SetFontType(int nFontType)
    {
        m_nFontType = nFontType;
    }
    void SetSortFont(BOOL bFontSort)
    {
        m_bFontSort = bFontSort;
    }
    int GetFontIndex(CString strFont)
    {
        CString strText ;
        strFont.Trim();
        int nIndex = -1;
        for(int i =0; i < m_arrFont.GetCount(); i++)
        {
            strText = m_arrFont.GetAt(i);
            strText.Trim();
            if(strText == strFont)
            {
                nIndex = i;
                break;
            }
        }
        return nIndex;
    }
    SStringT GetFontText(int position)
    {
        SASSERT(position >= 0 && position < (int)m_arrFont.GetCount());
        return m_arrFont[position];
    }
};