=============================================== Before this implementation, specific status via former mergeOverlayIcon() was greyed out with the visibility. With this commit, the developer has two options: a) override mergeGreyableOverlayIcons, in which case the overlay will be greyed out when the item is greyed out as per former mergeOverlayIcon() b) override mergeColorfulOverlayIcons, in which case the overlay will be superimposed after the icon is greyed out as it is the case for stardard error and recompute flags.
148 lines
5.4 KiB
C++
148 lines
5.4 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2016 Stefan Tröger <stefantroeger@gmx.net> *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#include "PreCompiled.h"
|
|
|
|
#ifndef _PreComp_
|
|
# ifdef _MSC_VER
|
|
# define _USE_MATH_DEFINES
|
|
# include <cmath>
|
|
# endif //_MSC_VER
|
|
# include <QAction>
|
|
# include <QMenu>
|
|
#endif
|
|
|
|
#include "ViewProviderAttachExtension.h"
|
|
#include "TaskAttacher.h"
|
|
#include <Mod/Part/App/AttachExtension.h>
|
|
|
|
#include <Gui/ActionFunction.h>
|
|
#include <Gui/BitmapFactory.h>
|
|
#include <Gui/Control.h>
|
|
|
|
using namespace PartGui;
|
|
|
|
EXTENSION_PROPERTY_SOURCE(PartGui::ViewProviderAttachExtension, Gui::ViewProviderExtension)
|
|
|
|
|
|
ViewProviderAttachExtension::ViewProviderAttachExtension()
|
|
{
|
|
initExtensionType(ViewProviderAttachExtension::getExtensionClassTypeId());
|
|
}
|
|
|
|
QIcon ViewProviderAttachExtension::extensionMergeColorfullOverlayIcons (const QIcon & orig) const
|
|
{
|
|
QIcon mergedicon = orig;
|
|
|
|
if (getExtendedViewProvider()->getObject()->hasExtension(Part::AttachExtension::getExtensionClassTypeId())) {
|
|
|
|
auto* attach = getExtendedViewProvider()->getObject()->getExtensionByType<Part::AttachExtension>();
|
|
|
|
if (attach) {
|
|
|
|
if(!attach->isAttacherActive()) {
|
|
QPixmap px;
|
|
|
|
static const char * const feature_detached_xpm[]={
|
|
"9 10 3 1",
|
|
". c None",
|
|
"# c #cc00cc",
|
|
"a c #ffffff",
|
|
"...###...",
|
|
".##aaa##.",
|
|
"##aaaaa##",
|
|
"##aaaaa##",
|
|
"#########",
|
|
"#########",
|
|
"#########",
|
|
".##aaa##.",
|
|
".##aaa##.",
|
|
"...###..."};
|
|
|
|
px = QPixmap(feature_detached_xpm);
|
|
|
|
mergedicon = Gui::BitmapFactoryInst::mergePixmap(mergedicon, px, Gui::BitmapFactoryInst::BottomLeft);
|
|
}
|
|
}
|
|
}
|
|
|
|
return mergedicon;
|
|
}
|
|
|
|
void ViewProviderAttachExtension::extensionUpdateData(const App::Property* prop)
|
|
{
|
|
if (getExtendedViewProvider()->getObject()->hasExtension(Part::AttachExtension::getExtensionClassTypeId())) {
|
|
auto* attach = getExtendedViewProvider()->getObject()->getExtensionByType<Part::AttachExtension>();
|
|
|
|
if(attach) {
|
|
if( prop == &(attach->Support) ||
|
|
prop == &(attach->MapMode) ||
|
|
prop == &(attach->MapPathParameter) ||
|
|
prop == &(attach->MapReversed) ||
|
|
prop == &(attach->AttachmentOffset) ||
|
|
prop == &(attach->AttacherType) ) {
|
|
|
|
getExtendedViewProvider()->signalChangeIcon(); // signal icon change
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
void ViewProviderAttachExtension::extensionSetupContextMenu(QMenu* menu, QObject*, const char*)
|
|
{
|
|
// toggle command to display components
|
|
Gui::ActionFunction* func = new Gui::ActionFunction(menu);
|
|
QAction* act = menu->addAction(QObject::tr("Attachment editor"));
|
|
if (Gui::Control().activeDialog())
|
|
act->setDisabled(true);
|
|
func->trigger(act, boost::bind(&ViewProviderAttachExtension::showAttachmentEditor, this));
|
|
}
|
|
|
|
void ViewProviderAttachExtension::showAttachmentEditor()
|
|
{
|
|
// See PropertyEnumAttacherItem::openTask()
|
|
Gui::TaskView::TaskDialog* dlg = Gui::Control().activeDialog();
|
|
TaskDlgAttacher* task;
|
|
task = qobject_cast<TaskDlgAttacher*>(dlg);
|
|
|
|
if (dlg && !task) {
|
|
// there is already another task dialog which must be closed first
|
|
Gui::Control().showDialog(dlg);
|
|
return;
|
|
}
|
|
|
|
if (!task) {
|
|
task = new TaskDlgAttacher(getExtendedViewProvider());
|
|
}
|
|
|
|
Gui::Control().showDialog(task);
|
|
}
|
|
|
|
namespace Gui {
|
|
EXTENSION_PROPERTY_SOURCE_TEMPLATE(PartGui::ViewProviderAttachExtensionPython, PartGui::ViewProviderAttachExtension)
|
|
|
|
// explicit template instantiation
|
|
template class PartGuiExport ViewProviderExtensionPythonT<PartGui::ViewProviderAttachExtension>;
|
|
}
|