File: StatusWindow.h

package info (click to toggle)
dyssol 1.5.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,204 kB
  • sloc: cpp: 53,870; sh: 85; python: 59; makefile: 11
file content (45 lines) | stat: -rw-r--r-- 1,201 bytes parent folder | download | duplicates (3)
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
/* Copyright (c) 2020, Dyssol Development Team. All rights reserved. This file is part of Dyssol. See LICENSE file for license information. */

#pragma once

#include "ui_StatusWindow.h"

class CStatusWindow : public QDialog
{
	Q_OBJECT

private:
	bool m_bStopEnabled;
	QString m_sWindowTitle;
	QString m_sText;
	QString m_sFileName;
	QString m_sQuestion;

public:
	CStatusWindow( QWidget *parent = 0 );
	CStatusWindow( const QString &_sWindowTitle, const QString &_sText, const QString &_sQuestion, bool _bStopEnabled, QWidget *parent = 0 );
	~CStatusWindow();

	void SetWindowTitle( const QString &_sTitle );
	void SetText( const QString &_sText );
	void SetFileName( const QString &_sFileName );
	void SetConfirmQuestion( const QString &_sQuestion );
	void SetStopEnable( bool _bEnable );

private:
	Ui::CStatusWindow ui;

	void InitClass( const QString &_sWindowTitle, const QString &_sText, const QString &_sFileName, const QString &_sQuestion, bool _bStopEnabled, QWidget *parent = 0 );
	void InitializeConnections();
	bool GetConfirmation();
	void SetMessage();

public slots:
	void closeEvent(QCloseEvent *event);

private slots:
	void StopButtonPressed();

signals:
	void StopRequested();
};