/* AbiSource Application Framework * Copyright (C) 1998 AbiSource, Inc. * Copyright (C) 2001-2003 Hubert Figuiere * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #import #include "ut_assert.h" #include "xap_CocoaDlg_MessageBox.h" #include "xap_CocoaApp.h" #include "xap_CocoaFrame.h" #include "xap_CocoaDialog_Utilities.h" /*****************************************************************/ XAP_Dialog * XAP_CocoaDialog_MessageBox::static_constructor(XAP_DialogFactory * pFactory, XAP_Dialog_Id dlgid) { XAP_CocoaDialog_MessageBox * p = new XAP_CocoaDialog_MessageBox(pFactory, dlgid); return p; } XAP_CocoaDialog_MessageBox::XAP_CocoaDialog_MessageBox(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id dlgid) : XAP_Dialog_MessageBox(pDlgFactory, dlgid) { } XAP_CocoaDialog_MessageBox::~XAP_CocoaDialog_MessageBox(void) { } /*****************************************************************/ void XAP_CocoaDialog_MessageBox::runModal(XAP_Frame * pFrame) { UT_ASSERT(pFrame); XAP_App* pApp = pFrame->getApp(); NSString* title = [NSString stringWithUTF8String:pApp->getApplicationTitleForTitleBar()]; NSString* message = [NSString stringWithUTF8String:m_szMessage]; const XAP_StringSet * pSS = pApp->getStringSet(); int btn; switch (m_buttons) { case b_O: NSRunAlertPanel(title, message, LocalizedString (pSS, XAP_STRING_ID_DLG_OK), nil, nil); m_answer = a_OK; break; case b_OC: btn = NSRunAlertPanel(title, message, LocalizedString (pSS, XAP_STRING_ID_DLG_Cancel), LocalizedString (pSS, XAP_STRING_ID_DLG_OK), nil); switch (btn) { case NSAlertDefaultReturn: m_answer = a_CANCEL; break; case NSAlertAlternateReturn: m_answer = a_OK; break; default: UT_ASSERT(UT_SHOULD_NOT_HAPPEN); break; } break; case b_YN: btn = NSRunAlertPanel(title, message, LocalizedString (pSS, XAP_STRING_ID_DLG_QNXMB_No), LocalizedString (pSS, XAP_STRING_ID_DLG_QNXMB_Yes), nil); switch (btn) { case NSAlertDefaultReturn: m_answer = a_NO; break; case NSAlertAlternateReturn: m_answer = a_YES; break; default: UT_ASSERT(UT_SHOULD_NOT_HAPPEN); break; } break; case b_YNC: btn = NSRunAlertPanel(title, message, LocalizedString (pSS, XAP_STRING_ID_DLG_Cancel), LocalizedString (pSS, XAP_STRING_ID_DLG_QNXMB_No), LocalizedString (pSS, XAP_STRING_ID_DLG_QNXMB_Yes)); switch (btn) { case NSAlertDefaultReturn: m_answer = a_CANCEL; break; case NSAlertAlternateReturn: m_answer = a_NO; break; case NSAlertOtherReturn: m_answer = a_YES; break; default: UT_ASSERT(UT_SHOULD_NOT_HAPPEN); break; } break; default: UT_ASSERT(UT_SHOULD_NOT_HAPPEN); } }