1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/*************************************************************************
ConfirmCancelProxy.cpp - ask for confirm before cancelling an action
-------------------
begin : Fri Apr 26 2002
copyright : (C) 2002 by Thomas Eschenbacher
email : Thomas.Eschenbacher@gmx.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "config.h"
#include <QObject>
#include <QString>
#include <QWidget>
#include <KLocalizedString>
#include "libkwave/ConfirmCancelProxy.h"
#include "libkwave/MessageBox.h"
//***************************************************************************
Kwave::ConfirmCancelProxy::ConfirmCancelProxy(QWidget *widget,
QObject *sender, const char *signal,
QObject *receiver, const char *slot)
:QObject(), m_widget(widget)
{
Q_ASSERT(receiver);
if (!receiver) return;
if (sender) QObject::connect(sender, signal, this, SLOT(cancel()));
QObject::connect(this, SIGNAL(canceled()), receiver, slot);
}
//***************************************************************************
Kwave::ConfirmCancelProxy::~ConfirmCancelProxy()
{
}
//***************************************************************************
void Kwave::ConfirmCancelProxy::cancel()
{
if (Kwave::MessageBox::questionYesNo(m_widget,
i18n("Do you really want to abort the current action?"))
!= KMessageBox::PrimaryAction) return; // no cancel
emit canceled();
}
//***************************************************************************
//***************************************************************************
#include "moc_ConfirmCancelProxy.cpp"
|