From 47d455dd55be855e4cc691c32f687f723d9247ee Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpovmodeler/pmerrordialog.h | 73 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 kpovmodeler/pmerrordialog.h (limited to 'kpovmodeler/pmerrordialog.h') diff --git a/kpovmodeler/pmerrordialog.h b/kpovmodeler/pmerrordialog.h new file mode 100644 index 00000000..972d55ab --- /dev/null +++ b/kpovmodeler/pmerrordialog.h @@ -0,0 +1,73 @@ +//-*-C++-*- +/* +************************************************************************** + description + -------------------- + copyright : (C) 2000-2003 by Andreas Zehender + email : zehender@kde.org +************************************************************************** + +************************************************************************** +* * +* 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. * +* * +**************************************************************************/ + + +#ifndef PMERRORDIALOG_H +#define PMERRORDIALOG_H + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include + +class KConfig; +class QTextEdit; +class PMObject; + +#include "pmmessage.h" + +/** + * Dialog that is shown if some errors or warnings occurred during + * parsing or execution of commands. + */ +class PMErrorDialog : public KDialogBase +{ + Q_OBJECT +public: + /** + * Creates a modal PMErrorDialog with parent and name. + * + * messages is the message list. If the list contains a message of type + * FatalError, the 'Proceed" button will not be shown. + * + * PMErrorDialog::exec( ) returns QDialog::Accepted if the command + * should be continued. + */ + PMErrorDialog( const PMMessageList& messages, int errorFlags, + QWidget* parent = 0, const char* name = 0 ); + + static void saveConfig( KConfig* cfg ); + static void restoreConfig( KConfig* cfg ); + +protected: + virtual void resizeEvent( QResizeEvent* ev ); + +private: + void displayMessages( ); + + static QSize s_size; + QTextEdit* m_pTextView; + QPtrDict< QPtrList > m_messageDict; + QPtrList m_messages; +}; + +#endif -- cgit v1.2.1