mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
39 lines
680 B
C
39 lines
680 B
C
|
#ifndef SPEICHERN_FRAGE_H
|
||
|
#define SPEICHERN_FRAGE_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "ui_Speichern_frage.h"
|
||
|
|
||
|
class Speichern_frage : public QDialog, private Ui::Speichern_frage
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Speichern_frage(QWidget *parent = 0);
|
||
|
virtual ~Speichern_frage();
|
||
|
|
||
|
bool soll_merken() const;
|
||
|
bool soll_speichern() const;
|
||
|
|
||
|
public slots:
|
||
|
void setze_merken(bool);
|
||
|
void setze_speichern(bool);
|
||
|
void verbindung_merken(bool);
|
||
|
|
||
|
private slots:
|
||
|
void speichern();
|
||
|
void nicht_speichern();
|
||
|
void abbruch();
|
||
|
void releay_verbindung_merk_status(bool);
|
||
|
|
||
|
signals:
|
||
|
void verbindung_merk_status(bool);
|
||
|
void wird_gespeichert(bool);
|
||
|
void wird_nicht_gespeichert(bool);
|
||
|
|
||
|
private:
|
||
|
bool speichern_wert;
|
||
|
};
|
||
|
|
||
|
#endif
|