Developer Documentation
ObjectSelectionFunctions.cc
1/*===========================================================================*\
2* *
3* OpenFlipper *
4 * Copyright (c) 2001-2015, RWTH-Aachen University *
5 * Department of Computer Graphics and Multimedia *
6 * All rights reserved. *
7 * www.openflipper.org *
8 * *
9 *---------------------------------------------------------------------------*
10 * This file is part of OpenFlipper. *
11 *---------------------------------------------------------------------------*
12 * *
13 * Redistribution and use in source and binary forms, with or without *
14 * modification, are permitted provided that the following conditions *
15 * are met: *
16 * *
17 * 1. Redistributions of source code must retain the above copyright notice, *
18 * this list of conditions and the following disclaimer. *
19 * *
20 * 2. Redistributions in binary form must reproduce the above copyright *
21 * notice, this list of conditions and the following disclaimer in the *
22 * documentation and/or other materials provided with the distribution. *
23 * *
24 * 3. Neither the name of the copyright holder nor the names of its *
25 * contributors may be used to endorse or promote products derived from *
26 * this software without specific prior written permission. *
27 * *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
30 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
31 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
32 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
33 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
34 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
35 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
36 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
37 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
38 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
39* *
40\*===========================================================================*/
41
42
43#include "ObjectSelectionPlugin.hh"
44
46
47#include <QMessageBox>
48
51
53 o_it != PluginFunctions::objectsEnd(); ++o_it) {
54
55 o_it->target(true);
56 }
57
58 emit scriptInfo("selectAllObjects()");
59}
60
63
64 for(IdList::iterator it = _list.begin(); it != _list.end(); ++it) {
65 BaseObjectData* object = 0;
66 PluginFunctions::getObject(*it, object);
67 if(object) {
68 object->target(true);
69 }
70 }
71
72 emit scriptInfo("selectObjects(IdList)");
73}
74
77
79 o_it != PluginFunctions::objectsEnd(); ++o_it) {
80
81 o_it->target(false);
82 }
83
84 emit scriptInfo("deselectAllObjects()");
85}
86
89
91 o_it != PluginFunctions::objectsEnd(); ++o_it) {
92
93 o_it->target(!o_it->target());
94 }
95
96 emit scriptInfo("invertObjectSelection()");
97}
98
101
102 if(!OpenFlipper::Options::nogui()) {
103 int ret = QMessageBox::warning(0, tr("Open Flipper"),
104 tr("Do you really want to delete the selected objects?"),
105 QMessageBox::Yes | QMessageBox::Cancel,
106 QMessageBox::Cancel);
107
108 if(ret == QMessageBox::Cancel) return;
109 }
110
111 std::vector<int> deleteIds;
112
114 o_it != PluginFunctions::objectsEnd(); ++o_it) {
115
116 deleteIds.push_back(o_it->id());
117 }
118
119 for(std::vector<int>::iterator it = deleteIds.begin(); it != deleteIds.end(); ++it) {
120 emit deleteObject(*it);
121 }
122
123 emit scriptInfo("invertObjectSelection()");
124}
125
128
129 IdList list;
131 o_it != PluginFunctions::objectsEnd(); ++o_it) {
132
133 list.push_back(o_it->id());
134 }
135 return list;
136}
const DataType DATA_ALL(UINT_MAX)
Identifier for all available objects.
std::vector< int > IdList
Standard Type for id Lists used for scripting.
Definition: DataTypes.hh:181
Predefined datatypes.
Definition: DataTypes.hh:83
void selectObjects(IdList _list)
Select specified objects.
void selectAllObjects()
Select all objects.
void deselectAllObjects()
Deselect all objects.
void invertObjectSelection()
Invert object selection.
IdList getObjectSelection()
Get selected objects.
void deleteSelectedObjects()
Delete selected objects.
DLLEXPORT ObjectIterator objectsEnd()
Return Iterator to Object End.
bool getObject(const int _identifier, BaseObject *&_object)
Get the object which has the given identifier.
const QStringList TARGET_OBJECTS("target")
Iterable object range.
const QStringList ALL_OBJECTS
Iterable object range.