source: dev/trunk/ab5.0/abdev/abdev/ExtensionLink.h @ 681

Last change on this file since 681 was 625, checked in by dai_9181, 15 years ago

・WindowInfoクラスをリファクタリング
・MdiInfoを単純配列からvectorに変更した。

File size: 717 bytes
RevLine 
[3]1
2class COneExt{
3public:
4    BOOL m_bReg;
5    char m_szExtension[64];
6    char m_szNote[255];
7    BOOL m_bWindowsSearch;
8
9    COLORREF TabColor;
10
11    COneExt(BOOL bReg,char *lpszExtension,char *lpszNote,BOOL bWindowsSearch,COLORREF tab_color);
12    ~COneExt();
13};
14
15class CExtLink{
16public:
17    COneExt **ppobj_ExtItems;
18    int iExtItemNum;
19
20    CExtLink();
21    ~CExtLink();
22
23    void load(char *path);
24    void save(char *path);
25
26    BOOL add(BOOL bReg,char *lpszExtension,char *lpszNote,BOOL bWindowsSearch,COLORREF tab_color);
27    void del(char *lpszExtension);
28
29    void SetInitData();
30
31    void ResetListView(HWND hListView);
32
[625]33    COLORREF GetTabColorFromFilePath( const std::string &filepath );
[3]34};
35
36
37void ExtensionLink(HWND hwnd);
Note: See TracBrowser for help on using the repository browser.