mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-23 11:33:58 +00:00
759f0d820f
This updates the various dialogs to use the new functions. The help system should be fully functional now.
41 lines
856 B
C++
41 lines
856 B
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* A simple dialog to display the results of an EOL scan.
|
|
*/
|
|
#ifndef APP_EOLSCANDIALOG_H
|
|
#define APP_EOLSCANDIALOG_H
|
|
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Entire class is here.
|
|
*/
|
|
class EOLScanDialog : public CDialog {
|
|
public:
|
|
EOLScanDialog(CWnd* pParentWnd = NULL) :
|
|
CDialog(IDD_EOLSCAN, pParentWnd)
|
|
{}
|
|
virtual ~EOLScanDialog(void) {}
|
|
|
|
long fCountChars;
|
|
long fCountCR;
|
|
long fCountLF;
|
|
long fCountCRLF;
|
|
long fCountHighASCII;
|
|
|
|
private:
|
|
BOOL OnInitDialog(void) override;
|
|
|
|
afx_msg void OnHelp(void) {
|
|
MyApp::HandleHelp(this, HELP_TOPIC_EOL_SCAN);
|
|
}
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*APP_EOLSCANDIALOG_H*/
|