00001 // -*- c-basic-offset: 4 -*- 00010 /* This is free software; you can redistribute it and/or 00011 * modify it under the terms of the GNU General Public 00012 * License as published by the Free Software Foundation; either 00013 * version 2 of the License, or (at your option) any later version. 00014 * 00015 * This software is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 * Lesser General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU General Public 00021 * License along with this software; if not, write to the Free Software 00022 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00023 * 00024 */ 00025 00026 #ifndef _FAILEDPROJECTSDIALOG_H 00027 #define _FAILEDPROJECTSDIALOG_H 00028 00029 #include "panoinc_WX.h" 00030 #include "panoinc.h" 00031 #include "BatchFrame.h" 00032 00041 class FailedProjectsDialog : public wxDialog 00042 { 00043 public: 00045 FailedProjectsDialog(wxWindow* parent,Batch* batch,wxString xrcPrefix); 00047 ~FailedProjectsDialog(); 00048 00049 protected: 00051 void OnSelectProject(wxCommandEvent& e); 00052 private: 00053 Batch* m_batch; 00054 wxListBox* m_list; 00055 wxTextCtrl* m_log; 00056 00057 DECLARE_EVENT_TABLE() 00058 }; 00059 00060 00061 #endif //_FAILEDPROJECTSDIALOG_H
1.3.9.1