Skip to content
Snippets Groups Projects
Commit 1254d4ac authored by Mike Kremer's avatar Mike Kremer
Browse files

Adapted MoveSelection to new selection plugin architecture.

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@11568 383ad7c9-94d9-4d36-a494-682f7c89f535
parent 2cfe7158
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,6 @@ MovePlugin::MovePlugin() :
manip_size_modifier_ = 1.0;
selectionType_ = VERTEX;
selectionConnected_ = false;
axisA_ = 0;
axisB_ = 1;
......@@ -486,13 +485,19 @@ void MovePlugin::moveObject(ACG::Matrix4x4d mat, int _id) {
*/
void MovePlugin::moveSelection(ACG::Matrix4x4d mat, int _id, QEvent::Type _type) {
// Get currently active primitive type
updateSelectionType();
if ( !mat.is_identity() ){
if (selectionType_ == VERTEX)
if (selectionType_ == VERTEX) {
transformVertexSelection( _id , mat );
else if (selectionType_ == FACE)
}
else if (selectionType_ == FACE) {
transformFaceSelection( _id , mat );
else if (selectionType_ == EDGE)
}
else if (selectionType_ == EDGE) {
transformEdgeSelection( _id , mat );
}
emit updatedObject(_id, UPDATE_GEOMETRY);
}
......@@ -1591,8 +1596,6 @@ void MovePlugin::slotSetMoveMode(QAction* _action) {
if (_action == moveSelectionAction_){
connectSelectionActions();
PluginFunctions::actionMode(Viewer::PickingMode);
PluginFunctions::pickMode("MoveSelection");
......@@ -1850,65 +1853,33 @@ void MovePlugin::unifyBBDiag( MeshT& _mesh, ACG::Vec3d& _bb_min, ACG::Vec3d& _bb
/** \brief Connect to SelectionPlugin
*
*/
void MovePlugin::connectSelectionActions(){
if (!selectionConnected_){
void MovePlugin::updateSelectionType(){
selectionConnected_ = true;
bool connected = false;
QToolBar* selToolBar = 0;
emit getToolBar( "Selection", selToolBar );
if (selToolBar != 0){
QActionGroup* actionGroup = 0;
selectionType_ = VERTEX;
for (int i=0; i < selToolBar->actions().count(); i++){
if( selToolBar->actions().at(i)->text() == tr("Enable Vertex Selection") ){
bool functionExistsMeshV;
emit functionExists("meshobjectselection", "vertexTypeActive()", functionExistsMeshV);
bool functionExistsMeshE;
emit functionExists("meshobjectselection", "edgeTypeActive()", functionExistsMeshE);
bool functionExistsMeshF;
emit functionExists("meshobjectselection", "faceTypeActive()", functionExistsMeshF);
actionGroup = selToolBar->actions().at(i)->actionGroup();
if(functionExistsMeshV && functionExistsMeshE && functionExistsMeshF) {
if ( selToolBar->actions().at(i)->isChecked() )
// Make RPC call
if(RPC::callFunctionValue<bool>("meshobjectselection", "vertexTypeActive")) {
selectionType_ = VERTEX;
} else if ( (selToolBar->actions().at(i)->text() == tr("Enable Edge Selection") )
&& (selToolBar->actions().at(i)->isChecked()) )
} else if(RPC::callFunctionValue<bool>("meshobjectselection", "edgeTypeActive")) {
selectionType_ = EDGE;
else if ( (selToolBar->actions().at(i)->text() == tr("Enable Face Selection") )
&& (selToolBar->actions().at(i)->isChecked()) )
} else if(RPC::callFunctionValue<bool>("meshobjectselection", "faceTypeActive")) {
selectionType_ = FACE;
}
if (actionGroup != 0){
connect( actionGroup, SIGNAL( triggered(QAction*) ), this, SLOT(slotSelectionModeChanged(QAction*)) );
connected = true;
}
}
if (!connected)
} else {
emit log(LOGWARN, tr("Unable to connect to Selection-Plugin. MoveSelection will work on vertices only."));
}
}
//------------------------------------------------------------------------------
/** \brief The SelectionMode in SelectionPlugin Changed
*
* @param _action the action on the Selection-Toolbar that was hit
*/
void MovePlugin::slotSelectionModeChanged(QAction* _action){
if (_action->text() == tr("Enable Vertex Selection"))
selectionType_ = VERTEX;
if (_action->text() == tr("Enable Edge Selection"))
selectionType_ = EDGE;
if (_action->text() == tr("Enable Face Selection"))
selectionType_ = FACE;
}
//------------------------------------------------------------------------------
/** \brief Sets whether all targets should be affected or not
......
......@@ -71,8 +71,6 @@
#include "MoveProps.hh"
#include "MoveObjectMarker.hh"
enum SelectionType {VERTEX, EDGE, FACE };
/** Plugin for moving objects and selections
*/
class MovePlugin : public QObject, BaseInterface, MouseInterface, KeyInterface, PickingInterface, ToolboxInterface, BackupInterface, LoggingInterface, ScriptInterface,ToolbarInterface, ContextMenuInterface, LoadSaveInterface, RPCInterface
......@@ -91,6 +89,9 @@ class MovePlugin : public QObject, BaseInterface, MouseInterface, KeyInterface,
Q_INTERFACES(LoadSaveInterface)
Q_INTERFACES(RPCInterface)
public:
enum SelectionType {VERTEX, EDGE, FACE};
signals:
// BaseInterface
void updateView();
......@@ -389,20 +390,14 @@ class MovePlugin : public QObject, BaseInterface, MouseInterface, KeyInterface,
* @{ */
//===========================================================================
/// have we already tried to connect to Selection Plugin?
bool selectionConnected_;
/// Current SelectionType of SelectionPlugin
SelectionType selectionType_;
/// Connect to SelectionPlugin
void connectSelectionActions();
/// Get current primitive selection
void updateSelectionType();
private slots:
/// The SelectionMode changed in SelectionPlugin
void slotSelectionModeChanged(QAction* _action);
/// Sets whether all targets should be affected or not
void setAllTargets(bool _state);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment