mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-15 17:14:39 +00:00
moved editor from filter menu to tools one
This commit is contained in:
parent
281245c3d9
commit
eaf35fb96f
@ -111,7 +111,6 @@ private slots:
|
||||
void applyLastFilter();
|
||||
void runFilterScript();
|
||||
void showFilterScript();
|
||||
void showScriptEditor();
|
||||
void showXMLPluginEditorGui();
|
||||
void showTooltip(QAction*);
|
||||
/////////// Slot Menu Render /////////////////////
|
||||
@ -362,7 +361,6 @@ private:
|
||||
QAction *lastFilterAct;
|
||||
QAction *runFilterScriptAct;
|
||||
QAction *showFilterScriptAct;
|
||||
QAction* showScriptEditAct;
|
||||
QAction* showFilterEditAct;
|
||||
/////////// Actions Menu Edit /////////////////////
|
||||
QAction *suspendEditModeAct;
|
||||
|
||||
@ -369,10 +369,6 @@ void MainWindow::createActions()
|
||||
showFilterScriptAct->setEnabled(false);
|
||||
connect(showFilterScriptAct, SIGNAL(triggered()), this, SLOT(showFilterScript()));
|
||||
|
||||
/*showFilterEditAct = new QAction(tr("XML Plugin Editor GUI"),this);
|
||||
showFilterEditAct->setEnabled(true);
|
||||
connect(showFilterEditAct, SIGNAL(triggered()), this, SLOT(showXMLPluginEditorGui()));*/
|
||||
|
||||
//////////////Action Menu Preferences /////////////////////////////////////////////////////////////////////
|
||||
setCustomizeAct = new QAction(tr("&Options..."),this);
|
||||
connect(setCustomizeAct, SIGNAL(triggered()), this, SLOT(setCustomize()));
|
||||
@ -413,6 +409,11 @@ void MainWindow::createActions()
|
||||
connect(splitGroupAct, SIGNAL(triggered(QAction *)), this, SLOT(splitFromHandle(QAction *)));
|
||||
|
||||
connect(unsplitGroupAct, SIGNAL(triggered(QAction *)), this, SLOT(unsplitFromHandle(QAction *)));
|
||||
|
||||
//TOOL MENU
|
||||
showFilterEditAct = new QAction(tr("XML Plugin Editor GUI"),this);
|
||||
showFilterEditAct->setEnabled(true);
|
||||
connect(showFilterEditAct, SIGNAL(triggered()), this, SLOT(showXMLPluginEditorGui()));
|
||||
}
|
||||
|
||||
void MainWindow::createToolBars()
|
||||
@ -572,7 +573,10 @@ void MainWindow::createMenus()
|
||||
|
||||
//////////////////// Menu Preferences /////////////////////////////////////////////////////////////////////
|
||||
preferencesMenu=menuBar()->addMenu(tr("&Tools"));
|
||||
//preferencesMenu->addAction(showFilterEditAct);
|
||||
//preferencesMenu->addSeparator();
|
||||
preferencesMenu->addAction(setCustomizeAct);
|
||||
|
||||
|
||||
//////////////////// Menu Help ////////////////////////////////////////////////////////////////
|
||||
helpMenu = menuBar()->addMenu(tr("&Help"));
|
||||
@ -599,7 +603,6 @@ void MainWindow::fillFilterMenu()
|
||||
filterMenu->clear();
|
||||
filterMenu->addAction(lastFilterAct);
|
||||
filterMenu->addAction(showFilterScriptAct);
|
||||
//filterMenu->addAction(showFilterEditAct);
|
||||
filterMenu->addSeparator();
|
||||
// Connects the events of the actions within colorize to the method which shows their tooltip
|
||||
filterMenuSelect = filterMenu->addMenu(tr("Selection"));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user