[301bc2] | 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>
|
---|
[ec53b5] | 45 | #include<Qt/qlabel.h>
|
---|
[301bc2] | 46 | #include <Qt/qaction.h>
|
---|
[216dad] | 47 | #include <Qt/qmenu.h>
|
---|
[301bc2] | 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.
|
---|
[ec53b5] | 57 | QLabel *label = new QLabel("Shapes");
|
---|
[301bc2] | 58 | QtShapeList *shapeList = new QtShapeList;
|
---|
[ec53b5] | 59 | QPushButton *createButton = new QPushButton(QIcon(QIcon::fromTheme("edit-add")), "create");
|
---|
[216dad] | 60 | QPushButton *editButton = new QPushButton(QIcon(QIcon::fromTheme("edit")), "edit");
|
---|
[ec53b5] | 61 | QPushButton *deleteButton = new QPushButton(QIcon(QIcon::fromTheme("edit-delete")), "delete");
|
---|
[301bc2] | 62 |
|
---|
| 63 | // Create layout.
|
---|
| 64 | QVBoxLayout *shapeBox = new QVBoxLayout;
|
---|
| 65 | shapeBox->setMargin(0);
|
---|
| 66 | QHBoxLayout *buttonBox = new QHBoxLayout;
|
---|
| 67 | buttonBox->addWidget(createButton);
|
---|
[216dad] | 68 | buttonBox->addWidget(editButton);
|
---|
[301bc2] | 69 | buttonBox->addWidget(deleteButton);
|
---|
| 70 | setLayout(shapeBox);
|
---|
[ec53b5] | 71 | shapeBox->addWidget(label);
|
---|
[301bc2] | 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 |
|
---|
[216dad] | 83 | QMenu *editMenu = new QMenu();
|
---|
[301bc2] | 84 | pipe = new QtMenuPipe("combine-shapes", action);
|
---|
[216dad] | 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);
|
---|
[301bc2] | 97 |
|
---|
| 98 | action = new QAction(QString("remove shapes"), deleteButton);
|
---|
[70e9eb] | 99 | pipe = new QtMenuPipe("remove-shape", action);
|
---|
[301bc2] | 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 | {
|
---|
[ec53b5] | 107 | for(std::list<QtMenuPipe*>::iterator it=plumbing.begin(); it != plumbing.end(); it++)
|
---|
| 108 | delete (*it);
|
---|
[301bc2] | 109 | }
|
---|