51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
![]() |
/******************************************************************************
|
||
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
||
|
* This file may be used under the terms of the QSkinny License, Version 1.0
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#ifndef QSK_DIALOG_SUB_WINDOW_H
|
||
|
#define QSK_DIALOG_SUB_WINDOW_H 1
|
||
|
|
||
|
#include "QskGlobal.h"
|
||
|
#include "QskSubWindow.h"
|
||
|
#include "QskDialog.h"
|
||
|
|
||
|
class QSK_EXPORT QskDialogSubWindow : public QskSubWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
using Inherited = QskSubWindow;
|
||
|
|
||
|
public:
|
||
|
QskDialogSubWindow( QQuickItem* parent = nullptr );
|
||
|
virtual ~QskDialogSubWindow();
|
||
|
|
||
|
void setDeleteOnDone( bool on );
|
||
|
bool deleteOnDone() const;
|
||
|
|
||
|
Q_INVOKABLE QskDialog::DialogCode result() const;
|
||
|
Q_INVOKABLE QskDialog::DialogCode exec();
|
||
|
|
||
|
Q_SIGNALS:
|
||
|
void finished( QskDialog::DialogCode );
|
||
|
void accepted();
|
||
|
void rejected();
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
void done( QskDialog::DialogCode );
|
||
|
void accept();
|
||
|
void reject();
|
||
|
|
||
|
protected:
|
||
|
void setResult( QskDialog::DialogCode r );
|
||
|
virtual void keyPressEvent( QKeyEvent* ) override;
|
||
|
|
||
|
virtual void updateLayout() override;
|
||
|
|
||
|
private:
|
||
|
QskDialog::DialogCode m_result;
|
||
|
bool m_deleteOnDone : 1;
|
||
|
};
|
||
|
|
||
|
#endif
|