newdialog.h

来自「函数逼近」· C头文件 代码 · 共 59 行

H
59
字号
/*
 * 
 *	 Copyright 2004-2006 Ghassan OREIBY
 *   
 * 	 This file is part of Neurality.
 *
 *   Neurality is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   Neurality is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *   along with Neurality; if not, write to the Free Software
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * 
 */

#pragma once
#include "afxcmn.h"
#include "afxwin.h"


// CNewDialog dialog

class CNewDialog : public CDialog
{
	DECLARE_DYNAMIC(CNewDialog)

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

// Dialog Data
	enum { IDD = IDD_DIALOGNEW };

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

	DECLARE_MESSAGE_MAP()
	CSpinButtonCtrl m_SpinInput, m_SpinOutput, m_SpinLayer, m_SpinHidden;
	CListBox m_HiddenList;
	int m_nNoOfHiddenLayers, m_nHiddenNo;
public:
	virtual BOOL OnInitDialog();
	float m_fInputMin, m_fInputMax, m_fOutputMin, m_fOutputMax;
	int *m_nHiddenArray, m_nTotalHidden, m_nInputNo, m_nOuputNo;
	afx_msg void OnBnClickedAccept();
	afx_msg void OnBnClickedApply();
	afx_msg void OnLbnDblclkListhidden();
	afx_msg void OnBnClickedReset();
	afx_msg void OnBnClickedOk();
};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?