Click here to Skip to main content
15,881,938 members
Articles / Desktop Programming / MFC

RC Localization Tool (LocalizeRC)

Rate me:
Please Sign up or sign in to vote.
4.89/5 (53 votes)
14 Jan 2004BSD9 min read 486.7K   9.5K   159  
A tool for localizing/translating Resource Scripts
#pragma once
#include "afxwin.h"


// CCreateWorkspace dialog

class CCreateWorkspace : public CDialog
{
	DECLARE_DYNAMIC(CCreateWorkspace)

public:
	CCreateWorkspace(CWnd* pParent = NULL);   // standard constructor
	virtual ~CCreateWorkspace();

// Dialog Data
	enum { IDD = IDD_CREATEWORKSPACE };

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support

	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnBnClickedChngInputrc();
	afx_msg void OnBnClickedChngLangini();
	afx_msg void OnBnClickedChngOutputrc();

	virtual BOOL OnInitDialog();
	BOOL OpenSaveDialog(bool bOpen, UINT nExtID, UINT nExtDescriptionID, CString& strEdit);
	
	CString m_strInputRC;
	CString m_strLangINI;
	CString m_strOutputRC;
	CString strWorkspace;
	afx_msg void OnDestroy();
};

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 BSD License


Written By
Web Developer
Germany Germany
Author of the shareware WinCD.

Comments and Discussions