00001 /* 00002 pGina ldapAuth code - based upon skeleton code for pGina plugin development 00003 Copyright (C) 2002 Micah Cooper 00004 00005 This program is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU General Public License 00007 as published by the Free Software Foundation; either version 2 00008 of the License, or (at your option) 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 this program; if not, write to the Free Software 00017 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00018 00019 Email: coopermj@muohio.edu 00020 Snail Mail: 00021 Micah Cooper 00022 212A Kreger Hall 00023 Miami University 00024 Oxford OH 45056 00025 */ 00026 #pragma once 00027 00028 #include "resource.h" 00029 #include "ldapauth_TabCtrl.h" 00030 00031 // CConfigureDialog dialog 00032 00033 class CConfigureDialog : public CDialog 00034 { 00035 DECLARE_DYNAMIC(CConfigureDialog) 00036 00037 public: 00038 CConfigureDialog(CWnd* pParent = NULL); // standard constructor 00039 virtual ~CConfigureDialog(); 00040 00041 // Dialog Data 00042 enum { IDD = CONFIGURE_DIALOG }; 00043 ldapAuthTabCtrl m_tabMyTabCtrl; 00044 00045 protected: 00046 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support 00047 00048 protected: 00049 virtual BOOL OnInitDialog(); 00050 afx_msg void OnSysCommand(UINT nID, LPARAM lParam); 00051 afx_msg void OnPaint(); 00052 00053 DECLARE_MESSAGE_MAP() 00054 public: 00055 afx_msg void OnSave(); 00056 };