File: integrationmovetemplateshandler.h

package info (click to toggle)
qelectrotech 1%3A0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 91,680 kB
  • sloc: cpp: 62,335; xml: 750; sh: 264; perl: 258; makefile: 6
file content (73 lines) | stat: -rw-r--r-- 3,096 bytes parent folder | download
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
	Copyright 2006-2019 The QElectroTech Team
	This file is part of QElectroTech.
	
	QElectroTech is free software: you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation, either version 2 of the License, or
	(at your option) any later version.
	
	QElectroTech is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.
	
	You should have received a copy of the GNU General Public License
	along with QElectroTech.  If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TITLEBLOCK_SLASH_INTEGRATION_MOVE_TEMPLATES_HANDLER_H
#define TITLEBLOCK_SLASH_INTEGRATION_MOVE_TEMPLATES_HANDLER_H
#include "movetemplateshandler.h"
#include <QtWidgets>
/**
	This class implements the interface defined by
	MoveTitleBlockTemplatesHandler to ease the integration of title block
	templates from files-based collections into projects.
*/
class IntegrationMoveTitleBlockTemplatesHandler : public MoveTitleBlockTemplatesHandler {
	Q_OBJECT
	
	// constructors, destructor
	public:
	IntegrationMoveTitleBlockTemplatesHandler(QWidget * = nullptr);
	~IntegrationMoveTitleBlockTemplatesHandler() override;
	private:
	IntegrationMoveTitleBlockTemplatesHandler(const IntegrationMoveTitleBlockTemplatesHandler &);
	
	// methods
	public:
	QET::Action templateAlreadyExists(const TitleBlockTemplateLocation &src, const TitleBlockTemplateLocation &dst) override;
	QET::Action errorWithATemplate(const TitleBlockTemplateLocation &, const QString &) override;
	QString nameForRenamingOperation() override;
	
	private:
	QString dateString() const;
	QString newNameForTemplate(const TitleBlockTemplateLocation &);
	QET::Action askUser(const TitleBlockTemplateLocation &, const TitleBlockTemplateLocation &);
	void initDialog();
	void radioButtonleftMargin(QRadioButton *);
	
	private slots:
	void correctRadioButtons();
	
	// attributes
	private:
	QWidget *parent_widget_;              ///< Widget used as parent to display dialogs
	QString rename_;                      ///< Name to be used when renaming a title block template
	QDialog *integ_dialog_;               ///< Dialog in case of conflict when integrating a title block template
	QLabel *dialog_label_;
	QVBoxLayout *dialog_vlayout_;
	QGridLayout *dialog_glayout;
	QDialogButtonBox *buttons_;
	QRadioButton *use_existing_template_;    ///< Radio button the user may click to use the existing template and stop the integration
	QRadioButton *integrate_new_template_;   ///< Radio button the user may click to integrate the template
	QRadioButton *erase_template_;           ///< Radio button the user may click for the integrated template to erase the existing one
	/*
		Radio button the user may click for the integrated template to be
		automatically renamed in order to be stored along with the existing one.
	*/
	QRadioButton *integrate_both_;
	QButtonGroup *button_group1_;
	QButtonGroup *button_group2_;
};
#endif