diff --git a/src/Mod/TechDraw/Gui/CommandDecorate.cpp b/src/Mod/TechDraw/Gui/CommandDecorate.cpp index 6678a98971..7dabfb89c8 100644 --- a/src/Mod/TechDraw/Gui/CommandDecorate.cpp +++ b/src/Mod/TechDraw/Gui/CommandDecorate.cpp @@ -73,124 +73,6 @@ using namespace std; //internal functions bool _checkSelectionHatch(Gui::Command* cmd); -////=========================================================================== -//// TechDraw_Leader -////=========================================================================== - -//DEF_STD_CMD_A(CmdTechDrawLeaderLine) - -//CmdTechDrawLeaderLine::CmdTechDrawLeaderLine() -// : Command("TechDraw_LeaderLine") -//{ -// sAppModule = "TechDraw"; -// sGroup = QT_TR_NOOP("TechDraw"); -// sMenuText = QT_TR_NOOP("Add a line to a view"); -// sToolTipText = QT_TR_NOOP("Add a line to a view"); -// sWhatsThis = "TechDraw_LeaderLine"; -// sStatusTip = sToolTipText; -// sPixmap = "actions/techdraw-LeaderLine"; -//} - -//void CmdTechDrawLeaderLine::activated(int iMsg) -//{ -// Q_UNUSED(iMsg); - -// Gui::TaskView::TaskDialog *dlg = Gui::Control().activeDialog(); -// if (dlg != nullptr) { -// QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Task In Progress"), -// QObject::tr("Close active task dialog and try again.")); -// return; -// } - -// TechDraw::DrawPage* page = DrawGuiUtil::findPage(this); -// if (!page) { -// return; -// } - -// std::vector selection = getSelection().getSelectionEx(); -// TechDraw::DrawView* baseFeat = nullptr; -// if (!selection.empty()) { -// baseFeat = dynamic_cast(selection[0].getObject()); -// if( baseFeat == nullptr ) { -// QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Selection Error"), -// QObject::tr("Can not attach leader. No base View selected.")); -// return; -// } -// } else { -// QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Selection Error"), -// QObject::tr("You must select a base View for the line.")); -// return; -// } - -// Gui::Control().showDialog(new TechDrawGui::TaskDlgLeaderLine(baseFeat, -// page)); -//} - -//bool CmdTechDrawLeaderLine::isActive(void) -//{ -// bool havePage = DrawGuiUtil::needPage(this); -// bool haveView = DrawGuiUtil::needView(this, false); -// return (havePage && haveView); -//} - -////=========================================================================== -//// TechDraw_RichTextAnnotation -////=========================================================================== - -//DEF_STD_CMD_A(CmdTechDrawRichTextAnnotation) - -//CmdTechDrawRichTextAnnotation::CmdTechDrawRichTextAnnotation() -// : Command("TechDraw_RichTextAnnotation") -//{ -// sAppModule = "TechDraw"; -// sGroup = QT_TR_NOOP("TechDraw"); -// sMenuText = QT_TR_NOOP("Add Rich Text Annotation"); -// sToolTipText = sMenuText; -// sWhatsThis = "TechDraw_RichTextAnnotation"; -// sStatusTip = sToolTipText; -// sPixmap = "actions/techdraw-RichTextAnnotation"; -//} - -//void CmdTechDrawRichTextAnnotation::activated(int iMsg) -//{ -// Q_UNUSED(iMsg); -// Gui::TaskView::TaskDialog *dlg = Gui::Control().activeDialog(); -// if (dlg != nullptr) { -// QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Task In Progress"), -// QObject::tr("Close active task dialog and try again.")); -// return; -// } - -// TechDraw::DrawPage* page = DrawGuiUtil::findPage(this); -// if (!page) { -// return; -// } - -// std::vector selection = getSelection().getSelectionEx(); -// TechDraw::DrawView* baseFeat = nullptr; -// if (!selection.empty()) { -// baseFeat = dynamic_cast(selection[0].getObject()); -//// if( baseFeat == nullptr ) { -//// QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Selection Error"), -//// QObject::tr("Can not attach leader. No base View selected.")); -//// return; -//// } -//// } else { -//// QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Selection Error"), -//// QObject::tr("You must select a base View for the line.")); -//// return; -// } - -// Gui::Control().showDialog(new TaskDlgRichAnno(baseFeat, -// page)); -//} - -//bool CmdTechDrawRichTextAnnotation::isActive(void) -//{ -// bool havePage = DrawGuiUtil::needPage(this); -// bool haveView = DrawGuiUtil::needView(this, false); -// return (havePage && haveView); -//} //=========================================================================== // TechDraw_Hatch