1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
5 | *
|
---|
6 | *
|
---|
7 | * This file is part of MoleCuilder.
|
---|
8 | *
|
---|
9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
10 | * it under the terms of the GNU General Public License as published by
|
---|
11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
12 | * (at your option) any later version.
|
---|
13 | *
|
---|
14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | * GNU General Public License for more details.
|
---|
18 | *
|
---|
19 | * You should have received a copy of the GNU General Public License
|
---|
20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
21 | */
|
---|
22 |
|
---|
23 | /*
|
---|
24 | * QtShapeController.cpp
|
---|
25 | *
|
---|
26 | * Created on: Oct 25, 2012
|
---|
27 | * Author: ankele
|
---|
28 | */
|
---|
29 |
|
---|
30 |
|
---|
31 |
|
---|
32 | // include config.h
|
---|
33 | #ifdef HAVE_CONFIG_H
|
---|
34 | #include <config.h>
|
---|
35 | #endif
|
---|
36 |
|
---|
37 | #include "Views/Qt4/QtShapeController.hpp"
|
---|
38 | #include "Views/Qt4/QtShapeList.hpp"
|
---|
39 | #include "Menu/Qt4/QtMenuPipe.hpp"
|
---|
40 |
|
---|
41 | #include <iostream>
|
---|
42 |
|
---|
43 | #include<Qt/qlayout.h>
|
---|
44 | #include<Qt/qpushbutton.h>
|
---|
45 | #include<Qt/qlabel.h>
|
---|
46 | #include <Qt/qaction.h>
|
---|
47 | #include <Qt/qmenu.h>
|
---|
48 |
|
---|
49 | #include "CodePatterns/MemDebug.hpp"
|
---|
50 |
|
---|
51 | using namespace std;
|
---|
52 |
|
---|
53 | QtShapeController::QtShapeController(QWidget * _parent) :
|
---|
54 | QWidget (_parent)
|
---|
55 | {
|
---|
56 | // Create the widgets.
|
---|
57 | QLabel *label = new QLabel("Shapes");
|
---|
58 | QtShapeList *shapeList = new QtShapeList;
|
---|
59 | QPushButton *createButton = new QPushButton(QIcon(QIcon::fromTheme("edit-add")), "create");
|
---|
60 | QPushButton *editButton = new QPushButton(QIcon(QIcon::fromTheme("edit")), "edit");
|
---|
61 | QPushButton *deleteButton = new QPushButton(QIcon(QIcon::fromTheme("edit-delete")), "delete");
|
---|
62 |
|
---|
63 | // Create layout.
|
---|
64 | QVBoxLayout *shapeBox = new QVBoxLayout;
|
---|
65 | shapeBox->setMargin(0);
|
---|
66 | QHBoxLayout *buttonBox = new QHBoxLayout;
|
---|
67 | buttonBox->addWidget(createButton);
|
---|
68 | buttonBox->addWidget(editButton);
|
---|
69 | buttonBox->addWidget(deleteButton);
|
---|
70 | setLayout(shapeBox);
|
---|
71 | shapeBox->addWidget(label);
|
---|
72 | shapeBox->addWidget(shapeList);
|
---|
73 | shapeBox->addLayout(buttonBox);
|
---|
74 |
|
---|
75 |
|
---|
76 | // Create/connect the actions.
|
---|
77 | QAction *action = new QAction(QString("create shape"), createButton);
|
---|
78 | QtMenuPipe *pipe = new QtMenuPipe("create-shape", action);
|
---|
79 | QObject::connect(action, SIGNAL(triggered()),pipe,SLOT(called()));
|
---|
80 | plumbing.push_back(pipe);
|
---|
81 | QObject::connect(createButton, SIGNAL(clicked()),action,SIGNAL(triggered()));
|
---|
82 |
|
---|
83 | QMenu *editMenu = new QMenu();
|
---|
84 | pipe = new QtMenuPipe("combine-shapes", action);
|
---|
85 | action = new QAction(QIcon::fromTheme("zoom-best-fit"), tr("combine"), this);
|
---|
86 | connect(action, SIGNAL(triggered()), pipe, SLOT(called()));
|
---|
87 | editMenu->addAction(action);
|
---|
88 | pipe = new QtMenuPipe("translate-shapes", action);
|
---|
89 | action = new QAction(QIcon::fromTheme("zoom-best-fit"), tr("translate"), this);
|
---|
90 | connect(action, SIGNAL(triggered()), pipe, SLOT(called()));
|
---|
91 | editMenu->addAction(action);
|
---|
92 | pipe = new QtMenuPipe("rotate-shapes", action);
|
---|
93 | action = new QAction(QIcon::fromTheme("zoom-best-fit"), tr("rotate"), this);
|
---|
94 | connect(action, SIGNAL(triggered()), pipe, SLOT(called()));
|
---|
95 | editMenu->addAction(action);
|
---|
96 | editButton->setMenu(editMenu);
|
---|
97 |
|
---|
98 | action = new QAction(QString("remove shapes"), deleteButton);
|
---|
99 | pipe = new QtMenuPipe("remove-shape", action);
|
---|
100 | QObject::connect(action, SIGNAL(triggered()),pipe,SLOT(called()));
|
---|
101 | plumbing.push_back(pipe);
|
---|
102 | QObject::connect(deleteButton, SIGNAL(clicked()),action,SIGNAL(triggered()));
|
---|
103 | }
|
---|
104 |
|
---|
105 | QtShapeController::~QtShapeController()
|
---|
106 | {
|
---|
107 | for(std::list<QtMenuPipe*>::iterator it=plumbing.begin(); it != plumbing.end(); it++)
|
---|
108 | delete (*it);
|
---|
109 | }
|
---|