2009-07-13 06:20:18 +00:00
|
|
|
#ifndef __dialog_load_error_h_
|
|
|
|
#define __dialog_load_error_h_
|
|
|
|
|
|
|
|
/**
|
|
|
|
@file
|
|
|
|
Subclass of DIALOG_DISPLAY_HTML_TEXT_BASE, which is generated by wxFormBuilder.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dialog_display_info_HTML_base.h"
|
|
|
|
|
|
|
|
/** Implementing DIALOG_LOAD_ERROR */
|
|
|
|
class DIALOG_LOAD_ERROR : public DIALOG_DISPLAY_HTML_TEXT_BASE
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
// Handlers for DIALOG_LOAD_ERROR_BASE events.
|
|
|
|
void OnCloseButtonClick( wxCommandEvent& event );
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Constructor */
|
|
|
|
DIALOG_LOAD_ERROR( wxWindow* parent );
|
|
|
|
/** Function ListSet
|
|
|
|
* Add a list of items.
|
2009-07-13 07:01:57 +00:00
|
|
|
* @param list = a string containing items. Items are separated by '\n'
|
2009-07-13 06:20:18 +00:00
|
|
|
*/
|
2009-07-13 07:01:57 +00:00
|
|
|
void ListSet(const wxString &list);
|
2009-07-13 06:20:18 +00:00
|
|
|
void ListClear();
|
|
|
|
/** Function MessageSet
|
|
|
|
* Add a message (in bold) to message list.
|
2009-07-13 07:01:57 +00:00
|
|
|
* @param message = the message
|
2009-07-13 06:20:18 +00:00
|
|
|
*/
|
2009-07-13 07:01:57 +00:00
|
|
|
void MessageSet(const wxString &message);
|
2009-07-13 06:20:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __dialog_load_error_h_
|