35 lines
710 B
C++
35 lines
710 B
C++
#ifndef REDIGERKUNDEDIALOG_H
|
|
#define REDIGERKUNDEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "datatypes.h"
|
|
|
|
namespace Ui {
|
|
class RedigerKundeDialog;
|
|
}
|
|
|
|
class RedigerKundeDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RedigerKundeDialog(QWidget *parent = nullptr);
|
|
~RedigerKundeDialog();
|
|
|
|
void settInnGamleVerdier(KundeFil gjeldendeKundeFil);
|
|
void fokuserElement(UIElementer element);
|
|
void settFeilMelding(QString feilMelding);
|
|
|
|
signals:
|
|
void oppdaterKundeFil(KundeFil redigertKundeFil);
|
|
|
|
private slots:
|
|
void on_pushAvbryt_clicked();
|
|
void on_pushButton_clicked();
|
|
|
|
private:
|
|
Ui::RedigerKundeDialog *ui;
|
|
};
|
|
|
|
#endif // REDIGERKUNDEDIALOG_H
|