File indexing completed on 2024-04-21 04:50:09

0001 /*
0002     SPDX-FileCopyrightText: 1998-2007 Sebastian Trueg <trueg@k3b.org>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef _K3B_DEBUGGING_OUTPUT_DIALOG_H_
0007 #define _K3B_DEBUGGING_OUTPUT_DIALOG_H_
0008 
0009 #include <QMap>
0010 #include <QDialog>
0011 
0012 class QTextEdit;
0013 
0014 namespace K3b {
0015 class DebuggingOutputDialog : public QDialog
0016 {
0017   Q_OBJECT
0018 
0019  public:
0020   explicit DebuggingOutputDialog( QWidget* parent );
0021 
0022  public Q_SLOTS:
0023   void setOutput( const QString& );
0024 
0025   void slotSaveAsClicked();
0026   void slotCopyClicked();
0027 private:
0028 
0029   QTextEdit* debugView;
0030 };
0031 }
0032 
0033 
0034 
0035 #endif