Click here to Skip to main content
15,885,944 members
Articles / Desktop Programming / MFC

Porcupine

Rate me:
Please Sign up or sign in to vote.
4.78/5 (25 votes)
15 Sep 2009CPOL4 min read 570.3K   15.4K   118  
A library for visible and invisible image watermarking
#if !defined(AFX_TEXT_H__23462EA1_7594_42D7_A1E7_0778E2B34AD0__INCLUDED_)
#define AFX_TEXT_H__23462EA1_7594_42D7_A1E7_0778E2B34AD0__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// text.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// text dialog

class text : public CDialog
{
// Construction
public:
	int position;
	text(CWnd* pParent = NULL);   // standard constructor
// Dialog Data
	//{{AFX_DATA(text)
	enum { IDD = IDD_TEXT };
	CString	m_text;
	BYTE	m_red;
	BYTE	m_green;
	BYTE	m_blue;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(text)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(text)
	virtual BOOL OnInitDialog();
	afx_msg void OnRadio1();
	afx_msg void OnRadio2();
	afx_msg void OnRadio3();
	afx_msg void OnRadio4();
	afx_msg void OnRadio5();
	afx_msg void Oncolortable();
	afx_msg void OnButton2();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_TEXT_H__23462EA1_7594_42D7_A1E7_0778E2B34AD0__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Greece Greece
Physicist/SW Engineer

Comments and Discussions