使用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
#pragma once
#include "stdafx.h"
#include "MBAbstBaseObj.h"
 
class CMBBaseAppObj;
// m_strID
typedef map<CString, CMBBaseAppObj*> CMBBaseAppObjMap; 
typedef vector<CMBBaseAppObj *>      CMBBaseAppObjVector;
/************************************************************************/
/*  ÏµÍ³ÐÅÏ¢»ùÀà                                                        */
/************************************************************************/
class AFX_EXT_CLASS CMBBaseAppObj
    : public CMBAbstBaseObj 
{
    DECLARE_DYNAMIC(CMBBaseAppObj)
public:
    CMBBaseAppObj(void);
    ~CMBBaseAppObj(void);
public:
    enum{
        APP_UNIT = 1,        // µ¥Î»Ó¦ÓÃ
        APP_DEPART = 2,      // ²¿ÃÅÓ¦ÓÃ
        APP_PSN = 3,         // ¸öÈËÓ¦ÓÃ
        APP_NOTICE = 4,      // Í¨Öª
        APP_HOME   = 5,      // Ê×Ò³
        APP_SHARE  = 6,      // ¹²Ïí
        APP_INBOX = 7,       // ÊÕ¼þÏä
        APP_OUTBOX = 8,      // ·¢¼þÏä
        APP_VAULT  = 9,      // Êý¾Ý²Ö¿â
        APP_NONE             // none
    }; 
public: // ×Ô¶¨ÒåÊôÐÔ£¨¸¨ÖúÓã© 
    int              m_nFakeType;       // Î±ÔìÀàÐÍ£¬ÓÃÀ´Çø·Ö     APP_UNIT£¬APP_DEPART£¬APP_PSN ==
    bool             m_bUnfold;  
public:     
    CString             m_strID;          // ÏµÍ³Ó¦ÓõÄid
    CString             m_strName;        // ÏµÍ³Ó¦ÓõÄÃû³Æ 
    CString             m_strDefCode;       // ¶¨ÒåÂë
    CString             m_strBkColor;       // ±³¾°É«
    CString             m_strOrder;         // ÅÅÐò 
    CString             m_strFolder;        // ¹¦Äܵã·ÖÀà¼Ð   
    CString             m_strTxtColor;      // Îı¾É«
    CString             m_strFrameType;     // ¿ò¼ÜÀàÐÍ
    CString             m_strImgFontStyle;  // ×ÖÌåͼƬÀàÐÍ  
};