root / trunk / win / Htmldlg.h

Revision 401, 1.4 kB (checked in by leo, 4 years ago)

Correctly enable/disable options when the dialog appears.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1#if !defined(AFX_HTMLDLG_H__6E9D4B64_61DB_11D2_8202_9B4C5CA8F71F__INCLUDED_)
2#define AFX_HTMLDLG_H__6E9D4B64_61DB_11D2_8202_9B4C5CA8F71F__INCLUDED_
3
4#if _MSC_VER >= 1000
5#pragma once
6#endif // _MSC_VER >= 1000
7// HTMLDlg.h : header file
8//
9
10/////////////////////////////////////////////////////////////////////////////
11// CHTMLDlg dialog
12
13class CHTMLDlg : public CDialog
14{
15// Construction
16public:
17    CHTMLDlg(void* param, CWnd* pParent = NULL);   // standard constructor
18
19// Dialog Data
20    //{{AFX_DATA(CHTMLDlg)
21    enum { IDD = IDD_HTML };
22    int     m_nLayout;
23    BOOL    m_bIndex;
24    CString m_strFolder;
25    BOOL    m_bImages;
26    BOOL    m_bListEnd;
27    BOOL    m_bListStep;
28    BOOL    m_bHighlight;
29    BOOL    m_bHtmlExt;
30    //}}AFX_DATA
31
32
33// Overrides
34    // ClassWizard generated virtual function overrides
35    //{{AFX_VIRTUAL(CHTMLDlg)
36    protected:
37    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
38    //}}AFX_VIRTUAL
39
40// Implementation
41protected:
42    void* imopts;
43
44    // Generated message map functions
45    //{{AFX_MSG(CHTMLDlg)
46    afx_msg void OnImageOptions();
47    afx_msg void OnListClick();
48    afx_msg void OnLayoutClick();
49    afx_msg void OnHtmdlgBrowsefolder();
50    virtual BOOL OnInitDialog();
51    //}}AFX_MSG
52    DECLARE_MESSAGE_MAP()
53};
54
55//{{AFX_INSERT_LOCATION}}
56// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
57
58#endif // !defined(AFX_HTMLDLG_H__6E9D4B64_61DB_11D2_8202_9B4C5CA8F71F__INCLUDED_)
Note: See TracBrowser for help on using the browser.