Last change
on this file was
829,
checked in by イグトランス (egtra), 11 years ago
|
svn:eol-styleとsvn:mime-type(文字コード指定含む)の設定
|
-
Property svn:eol-style set to
native
-
Property svn:mime-type set to
text/plain; charset=Shift_JIS
|
File size:
710 bytes
|
Line | |
---|
1 | |
---|
2 | class COneExt{ |
---|
3 | public: |
---|
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 | |
---|
15 | class CExtLink{ |
---|
16 | public: |
---|
17 | COneExt **ppobj_ExtItems; |
---|
18 | int iExtItemNum; |
---|
19 | |
---|
20 | CExtLink(); |
---|
21 | ~CExtLink(); |
---|
22 | |
---|
23 | void load( const std::string &path ); |
---|
24 | void save( const std::string &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 | |
---|
33 | COLORREF GetTabColorFromFilePath( const std::string &filepath ); |
---|
34 | }; |
---|
35 | |
---|
36 | |
---|
37 | void ExtensionLink(HWND hwnd); |
---|
Note: See
TracBrowser
for help on using the repository browser.