|
Odamex
Setting the Standard in Multiplayer Doom
|
00001 // Emacs style mode select -*- C++ -*- 00002 //----------------------------------------------------------------------------- 00003 // 00004 // $Id: dlg_config.cpp 1648 2010-07-11 02:50:26Z russellrice $ 00005 // 00006 // Copyright (C) 2006-2010 by The Odamex Team. 00007 // 00008 // This program is free software; you can redistribute it and/or 00009 // modify it under the terms of the GNU General Public License 00010 // as published by the Free Software Foundation; either version 2 00011 // of the License, or (at your option) any later version. 00012 // 00013 // This program is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 // GNU General Public License for more details. 00017 // 00018 // DESCRIPTION: 00019 // About Dialog 00020 // 00021 //----------------------------------------------------------------------------- 00022 00023 #ifndef __DLG_ABOUT_H__ 00024 #define __DLG_ABOUT_H__ 00025 00026 #include <wx/dialog.h> 00027 #include <wx/textctrl.h> 00028 #include <wx/stattext.h> 00029 00030 class dlgAbout : public wxDialog 00031 { 00032 public: 00033 00034 dlgAbout(wxWindow* parent, wxWindowID id = -1); 00035 virtual ~dlgAbout() { } 00036 00037 protected: 00038 00039 void OnTxtCtrlUrlClick(wxTextUrlEvent &event); 00040 00041 wxStaticText *m_StcTxtCopyright; 00042 wxStaticText *m_StcTxtVersion; 00043 wxStaticText *m_StcTxtWxVer; 00044 wxTextCtrl *m_TxtCtrlDevelopers; 00045 00046 private: 00047 00048 DECLARE_EVENT_TABLE() 00049 }; 00050 00051 #endif // __DLG_ABOUT_H__