mirror of
https://github.com/KDE/konsole.git
synced 2026-06-10 15:05:11 -04:00
57 lines
1001 B
C++
57 lines
1001 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2002 Waldo Bastian <bastian@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.0-only
|
|
**/
|
|
|
|
#ifndef ZMODEM_DIALOG_H
|
|
#define ZMODEM_DIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "konsoleprivate_export.h"
|
|
|
|
class KTextEdit;
|
|
class QDialogButtonBox;
|
|
namespace Konsole
|
|
{
|
|
class KONSOLEPRIVATE_EXPORT ZModemDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ZModemDialog(QWidget *parent, bool modal, const QString &caption);
|
|
|
|
/**
|
|
* Adds a line of text to the progress window
|
|
*/
|
|
void addText(const QString &);
|
|
|
|
/**
|
|
* Adds a line of text without a new line to the progress window
|
|
*/
|
|
void addProgressText(const QString &);
|
|
|
|
/**
|
|
* To indicate the process is finished.
|
|
*/
|
|
void transferDone();
|
|
|
|
Q_SIGNALS:
|
|
void zmodemCancel();
|
|
|
|
private Q_SLOTS:
|
|
void slotClose();
|
|
void slotCancel();
|
|
|
|
private:
|
|
Q_DISABLE_COPY(ZModemDialog)
|
|
|
|
void delayedDestruct();
|
|
KTextEdit *_textEdit;
|
|
QDialogButtonBox *mButtonBox;
|
|
};
|
|
}
|
|
|
|
#endif
|