00001 /* 00002 * Copyright (C) 2003-2005 Gabest 00003 * http://www.gabest.org 00004 * 00005 * This Program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation; either version 2, or (at your option) 00008 * any later version. 00009 * 00010 * This Program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with GNU Make; see the file COPYING. If not, write to 00017 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 00018 * http://www.gnu.org/copyleft/gpl.html 00019 * 00020 */ 00021 00022 #pragma once 00023 #include "FloatEdit.h" 00024 00025 // CPnSPresetsDlg dialog 00026 00027 class CPnSPresetsDlg : public CCmdUIDialog 00028 { 00029 DECLARE_DYNAMIC(CPnSPresetsDlg) 00030 00031 private: 00032 void StringToParams(CString str, CString& label, double& PosX, double& PosY, double& ZoomX, double& ZoomY); 00033 CString ParamsToString(CString label, double PosX, double PosY, double ZoomX, double ZoomY); 00034 00035 public: 00036 CPnSPresetsDlg(CWnd* pParent = NULL); // standard constructor 00037 virtual ~CPnSPresetsDlg(); 00038 00039 CStringArray m_pnspresets; 00040 00041 // Dialog Data 00042 enum { IDD = IDD_PNSPRESETDIALOG }; 00043 CFloatEdit m_PosX; 00044 CFloatEdit m_PosY; 00045 CFloatEdit m_ZoomX; 00046 CFloatEdit m_ZoomY; 00047 CString m_label; 00048 CListBox m_list; 00049 00050 protected: 00051 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support 00052 virtual BOOL OnInitDialog(); 00053 virtual void OnOK(); 00054 00055 DECLARE_MESSAGE_MAP() 00056 public: 00057 afx_msg void OnLbnSelchangeList1(); 00058 afx_msg void OnBnClickedButton2(); 00059 afx_msg void OnUpdateButton2(CCmdUI* pCmdUI); 00060 afx_msg void OnBnClickedButton6(); 00061 afx_msg void OnUpdateButton6(CCmdUI* pCmdUI); 00062 afx_msg void OnBnClickedButton9(); 00063 afx_msg void OnUpdateButton9(CCmdUI* pCmdUI); 00064 afx_msg void OnBnClickedButton10(); 00065 afx_msg void OnUpdateButton10(CCmdUI* pCmdUI); 00066 afx_msg void OnBnClickedButton1(); 00067 afx_msg void OnUpdateButton1(CCmdUI* pCmdUI); 00068 };