00001 00002 // MathGUI = a WYSIWYG equation editor + a powerful math engine // 00003 // Copyright (C) 2003 by Francesco Montorsi // 00004 // // 00005 // This library is free software; you can redistribute it and/or // 00006 // modify it under the terms of the GNU Lesser General Public // 00007 // License as published by the Free Software Foundation; either // 00008 // version 2.1 of the License, or (at your option) any later // 00009 // version. // 00010 // // 00011 // This library is distributed in the hope that it will be useful, // 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of // 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // 00014 // GNU Lesser General Public License for more details. // 00015 // // 00016 // You should have received a copy of the GNU Lesser General Public // 00017 // License along with this program; if not, write to the Free // 00018 // Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, // 00019 // MA 02111-1307, USA. // 00020 // // 00021 // For any comment, suggestion or feature request, please contact // 00022 // the administrator of the project at frm@users.sourceforge.net // 00023 // // 00030 00031 00032 00033 00034 #ifndef DIALOGS_OPTBTNPANEL_H 00035 #define DIALOGS_OPTBTNPANEL_H 00036 00037 00038 #if defined(__GNUG__) && !defined(__APPLE__) 00039 #pragma interface "OptBtnPanel.h" 00040 #endif 00041 00042 00043 // required includes 00044 #include <wx/panel.h> 00045 00046 00068 class mgOptionsBtnPanel : public wxPanel 00069 { 00070 public: 00072 00076 mgOptionsBtnPanel( wxWindow* parent ); 00077 00079 virtual ~mgOptionsBtnPanel(); 00080 00081 private: 00082 DECLARE_CLASS( mgOptionsBtnPanel ) 00083 DECLARE_EVENT_TABLE() 00084 }; 00085 00086 #endif // not defined DIALOGS_OPTBTNPANEL_H 00087
[ Top ] |