summaryrefslogtreecommitdiff
path: root/ui/messagePopup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/messagePopup.cpp')
-rw-r--r--ui/messagePopup.cpp180
1 files changed, 180 insertions, 0 deletions
diff --git a/ui/messagePopup.cpp b/ui/messagePopup.cpp
new file mode 100644
index 00000000..fe051eed
--- /dev/null
+++ b/ui/messagePopup.cpp
@@ -0,0 +1,180 @@
+// **************************************************************************
+// * This file is part of the FreeFileSync project. It is distributed under *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
+// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
+// **************************************************************************
+//
+#include "messagePopup.h"
+#include "../library/resources.h"
+
+
+ErrorDlg::ErrorDlg(wxWindow* parentWindow, const int activeButtons, const wxString messageText, bool& ignoreNextErrors) :
+ ErrorDlgGenerated(parentWindow),
+ ignoreErrors(ignoreNextErrors)
+{
+ m_bitmap10->SetBitmap(GlobalResources::getInstance().getImageByName(wxT("error")));
+ m_textCtrl8->SetValue(messageText);
+ m_checkBoxIgnoreErrors->SetValue(ignoreNextErrors);
+
+ if (~activeButtons & BUTTON_IGNORE)
+ {
+ m_buttonIgnore->Hide();
+ m_checkBoxIgnoreErrors->Hide();
+ }
+
+ if (~activeButtons & BUTTON_RETRY)
+ m_buttonRetry->Hide();
+
+ if (~activeButtons & BUTTON_ABORT)
+ m_buttonAbort->Hide();
+
+ //set button focus precedence
+ if (activeButtons & BUTTON_RETRY)
+ m_buttonRetry->SetFocus();
+ else if (activeButtons & BUTTON_IGNORE)
+ m_buttonIgnore->SetFocus();
+ else if (activeButtons & BUTTON_ABORT)
+ m_buttonAbort->SetFocus();
+}
+
+
+void ErrorDlg::OnClose(wxCloseEvent& event)
+{
+ ignoreErrors = m_checkBoxIgnoreErrors->GetValue();
+ EndModal(BUTTON_ABORT);
+}
+
+
+void ErrorDlg::OnIgnore(wxCommandEvent& event)
+{
+ ignoreErrors = m_checkBoxIgnoreErrors->GetValue();
+ EndModal(BUTTON_IGNORE);
+}
+
+
+void ErrorDlg::OnRetry(wxCommandEvent& event)
+{
+ ignoreErrors = m_checkBoxIgnoreErrors->GetValue();
+ EndModal(BUTTON_RETRY);
+}
+
+
+void ErrorDlg::OnAbort(wxCommandEvent& event)
+{
+ ignoreErrors = m_checkBoxIgnoreErrors->GetValue();
+ EndModal(BUTTON_ABORT);
+}
+//########################################################################################
+
+
+WarningDlg::WarningDlg(wxWindow* parentWindow, int activeButtons, const wxString messageText, bool& dontShowDlgAgain) :
+ WarningDlgGenerated(parentWindow),
+ dontShowAgain(dontShowDlgAgain)
+{
+ m_bitmap10->SetBitmap(GlobalResources::getInstance().getImageByName(wxT("warning")));
+ m_textCtrl8->SetValue(messageText);
+ m_checkBoxDontShowAgain->SetValue(dontShowAgain);
+
+ if (~activeButtons & BUTTON_IGNORE)
+ {
+ m_buttonIgnore->Hide();
+ m_checkBoxDontShowAgain->Hide();
+ }
+
+ if (~activeButtons & BUTTON_ABORT)
+ m_buttonAbort->Hide();
+
+ //set button focus precedence
+ if (activeButtons & BUTTON_IGNORE)
+ m_buttonIgnore->SetFocus();
+ else if (activeButtons & BUTTON_ABORT)
+ m_buttonAbort->SetFocus();
+}
+
+WarningDlg::~WarningDlg() {}
+
+
+void WarningDlg::OnClose(wxCloseEvent& event)
+{
+ dontShowAgain = m_checkBoxDontShowAgain->GetValue();
+ EndModal(BUTTON_ABORT);
+}
+
+
+void WarningDlg::OnIgnore(wxCommandEvent& event)
+{
+ dontShowAgain = m_checkBoxDontShowAgain->GetValue();
+ EndModal(BUTTON_IGNORE);
+}
+
+
+void WarningDlg::OnAbort(wxCommandEvent& event)
+{
+ dontShowAgain = m_checkBoxDontShowAgain->GetValue();
+ EndModal(BUTTON_ABORT);
+}
+//########################################################################################
+
+
+QuestionDlg::QuestionDlg(wxWindow* parentWindow, int activeButtons, const wxString messageText, bool* dontShowDlgAgain) :
+ QuestionDlgGenerated(parentWindow),
+ dontShowAgain(dontShowDlgAgain)
+{
+ m_bitmap10->SetBitmap(GlobalResources::getInstance().getImageByName(wxT("question")));
+ m_textCtrl8->SetValue(messageText);
+ if (dontShowAgain)
+ m_checkBoxDontAskAgain->SetValue(*dontShowAgain);
+ else
+ m_checkBoxDontAskAgain->Hide();
+
+ if (~activeButtons & BUTTON_YES)
+ m_buttonYes->Hide();
+
+ if (~activeButtons & BUTTON_NO)
+ {
+ m_buttonNo->Hide();
+ m_checkBoxDontAskAgain->Hide();
+ }
+
+ if (~activeButtons & BUTTON_CANCEL)
+ m_buttonCancel->Hide();
+
+ //set button focus precedence
+ if (activeButtons & BUTTON_YES)
+ m_buttonYes->SetFocus();
+ else if (activeButtons & BUTTON_CANCEL)
+ m_buttonCancel->SetFocus();
+ else if (activeButtons & BUTTON_NO)
+ m_buttonNo->SetFocus();
+}
+
+
+void QuestionDlg::OnClose(wxCloseEvent& event)
+{
+ if (dontShowAgain)
+ *dontShowAgain = m_checkBoxDontAskAgain->GetValue();
+ EndModal(BUTTON_CANCEL);
+}
+
+
+void QuestionDlg::OnCancel(wxCommandEvent& event)
+{
+ if (dontShowAgain)
+ *dontShowAgain = m_checkBoxDontAskAgain->GetValue();
+ EndModal(BUTTON_CANCEL);
+}
+
+
+void QuestionDlg::OnYes(wxCommandEvent& event)
+{
+ if (dontShowAgain)
+ *dontShowAgain = m_checkBoxDontAskAgain->GetValue();
+ EndModal(BUTTON_YES);
+}
+
+void QuestionDlg::OnNo(wxCommandEvent& event)
+{
+ if (dontShowAgain)
+ *dontShowAgain = m_checkBoxDontAskAgain->GetValue();
+ EndModal(BUTTON_NO);
+}
bgstack15