90 lines
2.3 KiB
C++
90 lines
2.3 KiB
C++
/*
|
|
* @file confirm.cpp
|
|
* utilities to display some error, warning and info short messges
|
|
*/
|
|
|
|
#include <fctsys.h>
|
|
#include <common.h>
|
|
#include <wx/wx.h>
|
|
#include <wx/html/htmlwin.h>
|
|
#include <html_messagebox.h>
|
|
#include <dialog_exit_base.h>
|
|
#include <bitmaps.h>
|
|
|
|
class DIALOG_EXIT: public DIALOG_EXIT_BASE
|
|
{
|
|
public:
|
|
DIALOG_EXIT( wxWindow * parent, const wxString& aMessage ) :
|
|
DIALOG_EXIT_BASE( parent )
|
|
{
|
|
m_bitmap->SetBitmap( KiBitmap( dialog_warning_xpm ) );
|
|
if( ! aMessage.IsEmpty() )
|
|
m_TextInfo->SetLabel( aMessage );
|
|
GetSizer()->Fit( this );
|
|
GetSizer()->SetSizeHints( this );
|
|
};
|
|
|
|
private:
|
|
void OnSaveAndExit( wxCommandEvent& event ) { EndModal( wxID_OK ); }
|
|
void OnCancel( wxCommandEvent& event ) { EndModal( wxID_CANCEL ); }
|
|
void OnExitNoSave( wxCommandEvent& event ) { EndModal( wxID_NO ); }
|
|
};
|
|
|
|
int DisplayExitDialog( wxWindow* parent, const wxString& aMessage )
|
|
{
|
|
DIALOG_EXIT dlg( parent, aMessage );
|
|
|
|
int ret = dlg.ShowModal();
|
|
return ret;
|
|
}
|
|
|
|
void DisplayError( wxWindow* parent, const wxString& text, int displaytime )
|
|
{
|
|
wxMessageDialog* dialog;
|
|
|
|
if( displaytime > 0 )
|
|
dialog = new wxMessageDialog( parent, text, _( "Warning" ),
|
|
wxOK | wxCENTRE | wxICON_INFORMATION );
|
|
else
|
|
dialog = new wxMessageDialog( parent, text, _( "Error" ),
|
|
wxOK | wxCENTRE | wxICON_ERROR );
|
|
|
|
dialog->ShowModal();
|
|
dialog->Destroy();
|
|
}
|
|
|
|
|
|
void DisplayInfoMessage( wxWindow* parent, const wxString& text, int displaytime )
|
|
{
|
|
wxMessageDialog* dialog;
|
|
|
|
dialog = new wxMessageDialog( parent, text, _( "Info:" ),
|
|
wxOK | wxCENTRE | wxICON_INFORMATION );
|
|
|
|
dialog->ShowModal();
|
|
dialog->Destroy();
|
|
}
|
|
|
|
|
|
void DisplayHtmlInfoMessage( wxWindow* parent, const wxString& title,
|
|
const wxString& text, const wxSize& size )
|
|
{
|
|
HTML_MESSAGE_BOX *dlg = new HTML_MESSAGE_BOX(parent,title, wxDefaultPosition, size );
|
|
dlg->AddHTML_Text( text );
|
|
dlg->ShowModal();
|
|
dlg->Destroy();
|
|
}
|
|
|
|
|
|
bool IsOK( wxWindow* parent, const wxString& text )
|
|
{
|
|
int ii;
|
|
|
|
ii = wxMessageBox( text, _( "Confirmation" ), wxYES_NO | wxCENTRE | wxICON_HAND, parent );
|
|
|
|
if( ii == wxYES )
|
|
return true;
|
|
|
|
return false;
|
|
}
|