root / trunk / win / Imagedlg.h

Revision 2, 1.4 kB (checked in by docwhat, 9 years ago)

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1#if !defined(AFX_IMAGEDLG_H__E3BE6801_99E6_11D2_8203_EE720446BF07__INCLUDED_)
2#define AFX_IMAGEDLG_H__E3BE6801_99E6_11D2_8203_EE720446BF07__INCLUDED_
3
4#if _MSC_VER >= 1000
5#pragma once
6#endif // _MSC_VER >= 1000
7// ImageDlg.h : header file
8//
9
10#include "typedefs.h"
11
12/////////////////////////////////////////////////////////////////////////////
13// CImageDlg dialog
14
15class CImageDlg : public CDialog
16{
17// Construction
18public:
19    CImageDlg(BOOL bHTML, void* param, CWnd* pParent = NULL);   // standard constructor
20    LC_IMAGEDLG_OPTS* opts;
21    BOOL m_bHTML;
22
23// Dialog Data
24    //{{AFX_DATA(CImageDlg)
25    enum { IDD = IDD_IMAGE };
26    int     m_nFormat;
27    BOOL    m_bTransparent;
28    BOOL    m_bProgressive;
29    UINT    m_nHeight;
30    BOOL    m_bHighcolor;
31    int     m_nQuality;
32    UINT    m_nWidth;
33    UINT    m_nFrom;
34    float   m_fPause;
35    int     m_nSingle;
36    UINT    m_nTo;
37    //}}AFX_DATA
38
39
40// Overrides
41    // ClassWizard generated virtual function overrides
42    //{{AFX_VIRTUAL(CImageDlg)
43    protected:
44    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
45    //}}AFX_VIRTUAL
46
47// Implementation
48protected:
49
50    // Generated message map functions
51    //{{AFX_MSG(CImageDlg)
52    virtual BOOL OnInitDialog();
53    virtual void OnOK();
54    //}}AFX_MSG
55    DECLARE_MESSAGE_MAP()
56};
57
58//{{AFX_INSERT_LOCATION}}
59// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
60
61#endif // !defined(AFX_IMAGEDLG_H__E3BE6801_99E6_11D2_8203_EE720446BF07__INCLUDED_)
Note: See TracBrowser for help on using the browser.