OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
RenameProjectDialog.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
9#include "OTWidgets/Dialog.h"
10
11namespace ot { class LineEdit; };
12
14
16 Q_OBJECT
19public:
20 RenameProjectDialog(const QString& _projectToRename, ProjectManagement &projectManager);
21 virtual ~RenameProjectDialog();
22
23 QString getProjectName(void) const;
24
25private Q_SLOTS:
26 void slotConfirm(void);
27
28private:
29 QString m_projectToRename;
30 ot::LineEdit* m_edit;
31 ProjectManagement* m_projectManager;
32
33};
#define OT_DECL_NODEFAULT(___class)
Removes the default copy constructor and assignment operator.
Definition OTClassHelper.h:22
#define OT_DECL_NOCOPY(___class)
Removes the default copy constructor and assignment operator.
Definition OTClassHelper.h:14
Definition ProjectManagement.h:26
Definition RenameProjectDialog.h:15
virtual ~RenameProjectDialog()
Definition RenameProjectDialog.cpp:57
RenameProjectDialog(const QString &_projectToRename, ProjectManagement &projectManager)
Definition RenameProjectDialog.cpp:20
QString getProjectName(void) const
Definition RenameProjectDialog.cpp:61
Definition Dialog.h:19
Definition LineEdit.h:17
Definition Connector.h:8