Finish up
This commit is contained in:
parent
5efbdcbd6a
commit
0c466644ce
23 changed files with 958 additions and 154 deletions
|
|
@ -12,13 +12,20 @@ class EditProfileDialog;
|
|||
class EditProfileDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
Profile* profile_;
|
||||
Profile profile_;
|
||||
Cameras* cameras_;
|
||||
|
||||
void setConfigured();
|
||||
void invalidateCameras();
|
||||
|
||||
private slots:
|
||||
|
||||
void setMask();
|
||||
void configureCamera();
|
||||
|
||||
public:
|
||||
explicit EditProfileDialog(Cameras* cameras, Profile* profile, QWidget *parent = nullptr);
|
||||
Profile* getProfile(){return profile_;}
|
||||
explicit EditProfileDialog(Cameras* cameras, const Profile profile = Profile(), QWidget *parent = nullptr);
|
||||
Profile getProfile(){return profile_;}
|
||||
~EditProfileDialog();
|
||||
|
||||
private:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue