mirror of
https://github.com/marketideas/qasm.git
synced 2024-12-28 21:30:37 +00:00
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Dialog allowing the user to enter registration data.
|
|
*/
|
|
#ifndef APP_ENTERREGDIALOG_H
|
|
#define APP_ENTERREGDIALOG_H
|
|
|
|
#include "../util/UtilLib.h"
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Straightforward dialog. We validate the registration key in the DDX
|
|
* function, so an IDOK is a guarantee that they have entered valid data. It
|
|
* is up to the caller to store the values in the registry.
|
|
*
|
|
* [ This was only used in the shareware product. ]
|
|
*/
|
|
class EnterRegDialog : public CDialog {
|
|
public:
|
|
EnterRegDialog(CWnd* pParent = NULL) : CDialog(IDD_REGISTRATION, pParent)
|
|
{ fDepth = 0; }
|
|
virtual ~EnterRegDialog(void) {}
|
|
|
|
CString fUserName;
|
|
CString fCompanyName;
|
|
CString fRegKey;
|
|
|
|
/*
|
|
* Get registration info from the user. This is a static utility function
|
|
* that can be called from elsewhere in the app.
|
|
*
|
|
* Returns 0 on successful registration, nonzero on failure or if the user
|
|
* cancels out of the dialog.
|
|
*/
|
|
static int GetRegInfo(CWnd* pWnd);
|
|
|
|
private:
|
|
virtual BOOL OnInitDialog(void) override;
|
|
virtual void DoDataExchange(CDataExchange* pDX) override;
|
|
|
|
afx_msg void OnUserChange(void);
|
|
afx_msg void OnCompanyChange(void);
|
|
afx_msg void OnRegChange(void);
|
|
afx_msg void OnHelp(void);
|
|
|
|
/*
|
|
* Call this when the text in an edit field has changed.
|
|
*
|
|
* If there's nothing in the "user name" or "reg key" fields, dim the OK
|
|
* button.
|
|
*/
|
|
void HandleEditChange(int editID, int crcID);
|
|
|
|
MyEdit fMyEdit;
|
|
int fDepth;
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*APP_ENTERREGDIALOG_H*/
|