View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0031362 | Open CASCADE | OCCT:Inspectors | public | 2020-02-09 10:21 | 2021-09-09 16:03 |
Reporter | nds | Assigned To | bugmaster | ||
Priority | normal | Severity | feature | ||
Status | closed | Resolution | fixed | ||
Target Version | 7.6.0 | Fixed in Version | 7.6.0 | ||
Summary | 0031362: Inspectors - MessageView plugin for message alerts | ||||
Description | Implement plugin in Inspector to visualize content of Message_Report. | ||||
Tags | No tags attached. | ||||
Test case number | Not required | ||||
|
Branch CR31362_1 has been created by nds. SHA-1: d733e9f919ed3dd145640f222d80a4013a6d42ba Detailed log of new commits: Author: nds Date: Tue Apr 20 13:03:15 2021 +0300 dfbrowser: dumpjson possibility by state Author: nds Date: Tue Oct 27 19:24:59 2020 +0300 0031362: Inspectors - MessageView plugin for message alerts - OSD_Timer in message alert, - DumpJson correction, - Selection owner should be dumped in selector. Sensitive entities might be used in the same owner, that leads to lots of the same dump in the result stream. - Inspector tools improvements - 0031959: Inspectors - Statistics by name, - 0032068: Inspectors - Last command don't have the time value (cherry picked from commit 0728c3d864a4a8c22d2c4f11238c21b0f3c27580) (cherry picked from commit 4aeded6f5b770ea3c2e5c673e9127220624bde03) |
|
Branch CR31362_1 has been deleted by nds. SHA-1: d733e9f919ed3dd145640f222d80a4013a6d42ba |
|
Branch CR31362_2 has been created by nds. SHA-1: f1a9967fc1f27e52a08f2c5cc02d210a013b2952 Detailed log of new commits: Author: nds Date: Mon Apr 26 18:01:38 2021 +0300 0031362: Inspectors - MessageView plugin for message alerts - append new MessageView plugin to display content of Message_Report; - correct DumpJson of TDataStd array attributes to print Lower/Upper values; - correct remove level of Message_Report to store stop time during removing all levels; - append DumpJson for TFunction, TPrsStd attributes; - correct DumpJson of XCAFDoc tools due to simplify performance of it; - move AttributeInfo into public method to call it outside; - remove obsolete pane classes in DFBrowser plugin, now we may use DumpJSon panel to visualize this content of attributes; - add new property panel in DFBrowser (synchronized with the same in other plugins); - add button to switch ON DumpJson in DFBrowser(OFF by default, for better performance), also there is a context menu item in tree view; - rename in DFBrowser "Property Panel" into "Property Panel (custom)"; - implement ViewControl_ColorSeletor and setting color in TreeModel_ItemProperties. Use only for light in VInspector now; - implement setting false for all created AIS_Shape presentation to don't modify source TopoDS_Shape; - remove not use VInspector_CallBack. It's possible using Message_Report/MessageView to track commands way; - remove History panel in VInspector as not used, MessageView will be better solution for this; - implement item and actions in VInspector for setting Lights in the view. |
|
Dear Kirill, could you please, review. Best regards, Natalia |
|
Branch CR31362_2 has been updated forcibly by nds. SHA-1: 3be1ba6131d3dbf8630ecb0ee6ca62df0e449b19 |
|
+ di << anInfo.ToCString(); ... + anInfo += TCollection_AsciiString (" ==> ") + ref.ToCString(); ... + anInfo += TCollection_AsciiString ( myCentroid.X() ).ToCString(); Redundant .ToCString() in several places within this function. + anInfo += TCollection_AsciiString ( "," ); These TCollection_AsciiString() looks redundant too, but I guess they are used for consistency. + Standard_EXPORT static TCollection_AsciiString AttributeInfo (Handle(TDF_Attribute) att); const Handle(TDF_Attribute)& theAtt + Standard_EXPORT static void CreatePresentation (const Handle(Geom_Line)& theLine, + NCollection_List<Handle(Standard_Transient)>& thePresentations); Is it intended design, or maybe replacing NCollection_List<Handle(Standard_Transient)> with NCollection_List<Handle(AIS_InteractiveObject)>? + //! \param thePresentations container to collect new presentation/s Misprint in "presentation/s". --- /dev/null +++ b/tools/VInspector/VInspector_PresentationLight.hxx If this tool is really necessary (e.g. AIS_LightSource is not suitable for some reason), could you please move this feature to a dedicated patch? And it would be helpful to document the difference from AIS class in VInspector_PresentationLight description to avoid confusion. --- a/tools/TKDFBrowser/EXTERNLIB +++ b/tools/TKDFBrowser/EXTERNLIB @@ -24,4 +24,5 @@ TKV3d TKTInspectorAPI TKTreeModel TKShapeView +TKXDEDRAW This might be fine, but introducing DFBrowser dependency from Draw Harness might imply undesired side effects (like crashes somewhere in tcl.dll on application exit reported by some users) in applications not initializing Tcl interpretor, but depending on TKDraw/tcl libraries with their global variables. It might be reasonable moving XDEDRAW::AttributeInfo() to some location not in Draw Harness. |
|
Branch CR31362_2 has been updated by nds. SHA-1: 371330aa97a4f6a787216f9033c76b24580da176 Detailed log of new commits: Author: nds Date: Wed May 12 21:20:33 2021 +0300 fix for warnings on Debian Author: nds Date: Wed May 12 21:15:16 2021 +0300 moving AttributeInfo from XDEDRAW to XCAFDoc. Author: nds Date: Wed May 12 19:57:20 2021 +0300 fix for remarks |
|
Branch CR31362_2 has been updated forcibly by nds. SHA-1: a37e2cb670c551ad17d541b8162f42e10cb2bd84 |
|
Branch CR31362_3 has been created by nds. SHA-1: d5a5516c4e528cdceedebebae8835386de9f1dea Detailed log of new commits: Author: nds Date: Mon Apr 26 18:01:38 2021 +0300 0031362: Inspectors - MessageView plugin for message alerts - append new MessageView plugin to display content of Message_Report; - correct DumpJson of TDataStd array attributes to print Lower/Upper values; - correct remove level of Message_Report to store stop time during removing all levels; - append DumpJson for TFunction, TPrsStd attributes; - correct DumpJson of XCAFDoc tools due to simplify performance of it; - move AttributeInfo functionality from XDEDRAW into a static public method of XCAFDoc to call it outside; - remove obsolete pane classes in DFBrowser plugin, now we may use DumpJSon panel to visualize this content of attributes; - add new property panel in DFBrowser (synchronized with the same in other plugins); - add button to switch ON DumpJson in DFBrowser(OFF by default, for better performance), also there is a context menu item in tree view; - rename in DFBrowser "Property Panel" into "Property Panel (custom)"; - implement ViewControl_ColorSeletor and setting color in TreeModel_ItemProperties. Use only for light in VInspector now; - implement setting false for all created AIS_Shape presentation to don't modify source TopoDS_Shape; - remove not use VInspector_CallBack. It's possible using Message_Report/MessageView to track commands way; - remove History panel in VInspector as not used, MessageView will be better solution for this; - implement item and actions in VInspector for setting Lights in the view. |
|
Branch CR31362_3 has been updated forcibly by nds. SHA-1: 9cdd1c996abda61a3515406b7ed8a7ee1aa3357f |
|
Dear Kirill, remarks are corrected. Additional information: - implementation of 'AttributeInfo' is moved into XCAFDoc (so, we needn't link in TKDFBrowser to TKDraw; - 'Is it intended design... using Standard_Transient, not AIS_InteractiveObject'? Yes, firstly, it allows to avoid depending on uplevel V3d library (in TreeModel), secondly, any other Handle might be placed in Standard_Transient and later covered by e.g. AIS_InteractiveObject. It might be for example Convert_TransientShape, that covers TopoDS_Shape. - modifications related to VInspector_PresentationLight is removed. AIS_LightSource also is not used now in Inspector. Please, review it once again, Jenkins job is: http://jenkins-test-occt.nnov.opencascade.com/view/CR31362-master-nds/view/ALL/ Thank you for help, Natalia |
|
Assigning to NDS. Get results of compilation |
|
Errors of compilation http://jenkins-test-11.nnov.opencascade.com/view/WEEK-20_WEEK-20/view/OCCT%20compile/ |
|
Branch CR31362_4 has been created by nds. SHA-1: 30a13e512eff8fd2c041c253fbcb629b831c7073 Detailed log of new commits: Author: nds Date: Mon May 17 16:57:57 2021 +0300 0031362: correction compilation for qt 4.8.4. |
|
Dear Igor, please cherry pick the last integration from CR31362_4 and restart build procedure. Thank you in advance, Natalia |
|
Combination - OCCT branch : IR-2021-05-21 master SHA - 2aa0a6991da6f767c2a6a4c1d6d720fee35867ce a87b7ddc8cb44606b91e3f37113847c3f5f50fdc Products branch : IR-2021-05-21 SHA - e89cefb48fe77db69215a5124b453f69d9db404b was compiled on Linux, MacOS and Windows platforms and tested in optimize mode. Number of compiler warnings: No new/fixed warnings Regressions/Differences/Improvements: No regressions/differences CPU differences: Debian80-64: OCCT Total CPU difference: 17862.650000000373 / 17879.470000000332 [-0.09%] Products Total CPU difference: 11535.410000000107 / 11557.880000000083 [-0.19%] Windows-64-VC14: OCCT Total CPU difference: 19361.25 / 19400.171875 [-0.20%] Products Total CPU difference: 12920.28125 / 12880.234375 [+0.31%] Image differences : No differences that require special attention Memory differences : No differences that require special attention |
|
Branch CR31362_2 has been deleted by mnt. SHA-1: a37e2cb670c551ad17d541b8162f42e10cb2bd84 |
|
Branch CR31362_3 has been deleted by mnt. SHA-1: 9cdd1c996abda61a3515406b7ed8a7ee1aa3357f |
|
Branch CR31362_4 has been deleted by mnt. SHA-1: 30a13e512eff8fd2c041c253fbcb629b831c7073 |
occt: master d16ecfe2 2021-04-26 15:01:38 Committer: bugmaster Details Diff |
0031362: Inspectors - MessageView plugin for message alerts - append new MessageView plugin to display content of Message_Report; - correct DumpJson of TDataStd array attributes to print Lower/Upper values; - correct remove level of Message_Report to store stop time during removing all levels; - append DumpJson for TFunction, TPrsStd attributes; - correct DumpJson of XCAFDoc tools due to simplify performance of it; - move AttributeInfo functionality from XDEDRAW into a static public method of XCAFDoc to call it outside; - remove obsolete pane classes in DFBrowser plugin, now we may use DumpJSon panel to visualize this content of attributes; - add new property panel in DFBrowser (synchronized with the same in other plugins); - add button to switch ON DumpJson in DFBrowser(OFF by default, for better performance), also there is a context menu item in tree view; - rename in DFBrowser "Property Panel" into "Property Panel (custom)"; - implement ViewControl_ColorSeletor and setting color in TreeModel_ItemProperties. Use only for light in VInspector now; - implement setting false for all created AIS_Shape presentation to don't modify source TopoDS_Shape; - remove not use VInspector_CallBack. It's possible using Message_Report/MessageView to track commands way; - remove History panel in VInspector as not used, MessageView will be better solution for this; - implement item and actions in VInspector for setting Lights in the view. |
Affected Issues 0031362 |
|
mod - adm/TOOLS | Diff File | ||
mod - src/Message/Message_PrinterToReport.cxx | Diff File | ||
mod - src/Message/Message_Report.cxx | Diff File | ||
mod - src/TDataStd/TDataStd_BooleanArray.cxx | Diff File | ||
mod - src/TDataStd/TDataStd_ByteArray.cxx | Diff File | ||
mod - src/TDataStd/TDataStd_ExtStringArray.cxx | Diff File | ||
mod - src/TDataStd/TDataStd_IntegerArray.cxx | Diff File | ||
mod - src/TDataStd/TDataStd_RealArray.cxx | Diff File | ||
mod - src/TDataStd/TDataStd_ReferenceArray.cxx | Diff File | ||
mod - src/TDataStd/TDataStd_UAttribute.cxx | Diff File | ||
mod - src/TDF/TDF_Attribute.cxx | Diff File | ||
mod - src/TFunction/TFunction_Function.cxx | Diff File | ||
mod - src/TFunction/TFunction_Function.hxx | Diff File | ||
mod - src/TNaming/TNaming_NamedShape.cxx | Diff File | ||
mod - src/TPrsStd/TPrsStd_AISPresentation.cxx | Diff File | ||
mod - src/TPrsStd/TPrsStd_AISPresentation.hxx | Diff File | ||
mod - src/TPrsStd/TPrsStd_AISViewer.cxx | Diff File | ||
mod - src/TPrsStd/TPrsStd_AISViewer.hxx | Diff File | ||
mod - src/XCAFDoc/XCAFDoc.cxx | Diff File | ||
mod - src/XCAFDoc/XCAFDoc.hxx | Diff File | ||
mod - src/XCAFDoc/XCAFDoc_ShapeMapTool.cxx | Diff File | ||
mod - src/XCAFDoc/XCAFDoc_ShapeTool.cxx | Diff File | ||
mod - src/XDEDRAW/XDEDRAW.cxx | Diff File | ||
mod - tools/Convert/Convert_Tools.cxx | Diff File | ||
mod - tools/Convert/Convert_Tools.hxx | Diff File | ||
mod - tools/DFBrowser/DFBrowser_Item.cxx | Diff File | ||
mod - tools/DFBrowser/DFBrowser_Module.cxx | Diff File | ||
mod - tools/DFBrowser/DFBrowser_TreeLevelViewModel.cxx | Diff File | ||
mod - tools/DFBrowser/DFBrowser_TreeModel.cxx | Diff File | ||
mod - tools/DFBrowser/DFBrowser_Window.cxx | Diff File | ||
mod - tools/DFBrowser/DFBrowser_Window.hxx | Diff File | ||
mod - tools/DFBrowserPane/DFBrowserPane_AttributePaneCreator.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdAsciiString.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdAsciiString.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdBooleanArray.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdBooleanArray.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdBooleanList.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdBooleanList.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdByteArray.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdByteArray.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdComment.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdComment.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdCurrent.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdCurrent.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdDirectory.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdDirectory.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdExpression.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdExpression.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdExtStringArray.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdExtStringArray.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdExtStringList.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdExtStringList.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdInteger.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdInteger.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdIntegerArray.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdIntegerArray.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdIntegerList.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdIntegerList.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdIntPackedMap.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdIntPackedMap.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdName.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdName.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdNamedData.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdNamedData.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdNoteBook.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdNoteBook.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdReal.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdReal.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdRealArray.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdRealArray.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdRealList.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdRealList.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdRelation.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdRelation.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdTick.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdTick.hxx | Diff File | ||
mod - tools/DFBrowserPane/DFBrowserPane_TDataStdTreeNodeModel.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdUAttribute.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdUAttribute.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdVariable.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDataStdVariable.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDFTagSource.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDFTagSource.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDocStdModified.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDocStdModified.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDocStdOwner.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDocStdOwner.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDocStdXLink.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDocStdXLink.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDocStdXLinkRoot.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TDocStdXLinkRoot.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TFunctionFunction.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TFunctionFunction.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TFunctionGraphNode.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TFunctionGraphNode.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TFunctionScope.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TFunctionScope.hxx | Diff File | ||
mod - tools/DFBrowserPane/DFBrowserPane_TNamingNamedShape.cxx | Diff File | ||
mod - tools/DFBrowserPane/DFBrowserPane_TNamingNaming.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TPrsStdAISPresentation.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TPrsStdAISPresentation.hxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TPrsStdAISViewer.cxx | Diff File | ||
rm - tools/DFBrowserPane/DFBrowserPane_TPrsStdAISViewer.hxx | Diff File | ||
mod - tools/DFBrowserPane/FILES | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_AttributeCommonPane.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_AttributeCommonPane.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_AttributePaneCreator.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_AttributePaneCreator.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_Tools.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_Tools.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocArea.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocArea.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocCentroid.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocCentroid.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocColor.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocColor.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocColorTool.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocColorTool.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDatum.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDatum.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDimension.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDimension.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDimTol.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDimTol.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDimTolTool.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDimTolTool.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDocumentTool.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocDocumentTool.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocGeomTolerance.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocGeomTolerance.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocGraphNode.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocGraphNode.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocLayerTool.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocLayerTool.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocLocation.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocLocation.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocMaterial.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocMaterial.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocMaterialTool.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocMaterialTool.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocShapeMapTool.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocShapeMapTool.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocShapeTool.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XCAFDocShapeTool.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XDEDRAW.cxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/DFBrowserPaneXDE_XDEDRAW.hxx | Diff File | ||
rm - tools/DFBrowserPaneXDE/FILES | Diff File | ||
add - tools/MessageModel/FILES | Diff File | ||
add - tools/MessageModel/icons/item_shape.png | Diff File | ||
add - tools/MessageModel/icons/item_streamValues.png | Diff File | ||
add - tools/MessageModel/MessageModel.qrc | Diff File | ||
add - tools/MessageModel/MessageModel_Actions.cxx | Diff File | ||
add - tools/MessageModel/MessageModel_Actions.hxx | Diff File | ||
add - tools/MessageModel/MessageModel_ActionType.hxx | Diff File | ||
add - tools/MessageModel/MessageModel_ItemAlert.cxx | Diff File | ||
add - tools/MessageModel/MessageModel_ItemAlert.hxx | Diff File | ||
add - tools/MessageModel/MessageModel_ItemBase.cxx | Diff File | ||
add - tools/MessageModel/MessageModel_ItemBase.hxx | Diff File | ||
add - tools/MessageModel/MessageModel_ItemReport.cxx | Diff File | ||
add - tools/MessageModel/MessageModel_ItemReport.hxx | Diff File | ||
add - tools/MessageModel/MessageModel_ItemRoot.cxx | Diff File | ||
add - tools/MessageModel/MessageModel_ItemRoot.hxx | Diff File | ||
add - tools/MessageModel/MessageModel_TreeModel.cxx | Diff File | ||
add - tools/MessageModel/MessageModel_TreeModel.hxx | Diff File | ||
add - tools/MessageView/FILES | Diff File | ||
add - tools/MessageView/MessageView_ActionsTest.cxx | Diff File | ||
add - tools/MessageView/MessageView_ActionsTest.hxx | Diff File | ||
add - tools/MessageView/MessageView_Communicator.cxx | Diff File | ||
add - tools/MessageView/MessageView_Communicator.hxx | Diff File | ||
add - tools/MessageView/MessageView_MetricStatisticModel.cxx | Diff File | ||
add - tools/MessageView/MessageView_MetricStatisticModel.hxx | Diff File | ||
add - tools/MessageView/MessageView_VisibilityState.cxx | Diff File | ||
add - tools/MessageView/MessageView_VisibilityState.hxx | Diff File | ||
add - tools/MessageView/MessageView_Window.cxx | Diff File | ||
add - tools/MessageView/MessageView_Window.hxx | Diff File | ||
mod - tools/TInspector/TInspector_PluginParameters.hxx | Diff File | ||
mod - tools/TInspectorEXE/TInspectorEXE.cxx | Diff File | ||
mod - tools/TKDFBrowser/PACKAGES | Diff File | ||
add - tools/TKMessageModel/CMakeLists.txt | Diff File | ||
add - tools/TKMessageModel/EXTERNLIB | Diff File | ||
add - tools/TKMessageModel/FILES | Diff File | ||
add - tools/TKMessageModel/PACKAGES | Diff File | ||
add - tools/TKMessageView/CMakeLists.txt | Diff File | ||
add - tools/TKMessageView/EXTERNLIB | Diff File | ||
add - tools/TKMessageView/FILES | Diff File | ||
add - tools/TKMessageView/PACKAGES | Diff File | ||
mod - tools/ToolsDraw/ToolsDraw.cxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ColumnType.hxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ContextMenu.cxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ItemBase.cxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ItemBase.hxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ItemProperties.cxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ItemProperties.hxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ItemStream.cxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ItemStream.hxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ModelBase.cxx | Diff File | ||
mod - tools/TreeModel/TreeModel_ModelBase.hxx | Diff File | ||
mod - tools/TreeModel/TreeModel_Tools.cxx | Diff File | ||
mod - tools/View/View_Displayer.cxx | Diff File | ||
mod - tools/View/View_DisplayPreview.cxx | Diff File | ||
mod - tools/View/View_DisplayPreview.hxx | Diff File | ||
mod - tools/View/View_PreviewParameters.cxx | Diff File | ||
mod - tools/View/View_PreviewParameters.hxx | Diff File | ||
mod - tools/View/View_ToolButton.hxx | Diff File | ||
mod - tools/View/View_Widget.cxx | Diff File | ||
mod - tools/ViewControl/FILES | Diff File | ||
add - tools/ViewControl/ViewControl_ColorSelector.cxx | Diff File | ||
add - tools/ViewControl/ViewControl_ColorSelector.hxx | Diff File | ||
mod - tools/ViewControl/ViewControl_EditType.hxx | Diff File | ||
mod - tools/ViewControl/ViewControl_Table.cxx | Diff File | ||
add - tools/ViewControl/ViewControl_TableItemDelegate.cxx | Diff File | ||
add - tools/ViewControl/ViewControl_TableItemDelegate.hxx | Diff File | ||
mod - tools/ViewControl/ViewControl_TableModelValues.hxx | Diff File | ||
mod - tools/ViewControl/ViewControl_Tools.cxx | Diff File | ||
mod - tools/ViewControl/ViewControl_Tools.hxx | Diff File | ||
mod - tools/VInspector/FILES | Diff File | ||
rm - tools/VInspector/VInspectorAPI_CallBack.cxx | Diff File | ||
rm - tools/VInspector/VInspectorAPI_CallBack.hxx | Diff File | ||
rm - tools/VInspector/VInspector_CallBack.cxx | Diff File | ||
rm - tools/VInspector/VInspector_CallBack.hxx | Diff File | ||
rm - tools/VInspector/VInspector_CallBackMode.hxx | Diff File | ||
mod - tools/VInspector/VInspector_Communicator.cxx | Diff File | ||
mod - tools/VInspector/VInspector_ItemBase.cxx | Diff File | ||
mod - tools/VInspector/VInspector_ItemBase.hxx | Diff File | ||
mod - tools/VInspector/VInspector_ItemContextProperties.cxx | Diff File | ||
add - tools/VInspector/VInspector_ItemGraphic3dCLight.cxx | Diff File | ||
add - tools/VInspector/VInspector_ItemGraphic3dCLight.hxx | Diff File | ||
rm - tools/VInspector/VInspector_ItemHistoryElement.cxx | Diff File | ||
rm - tools/VInspector/VInspector_ItemHistoryElement.hxx | Diff File | ||
rm - tools/VInspector/VInspector_ItemHistoryRoot.cxx | Diff File | ||
rm - tools/VInspector/VInspector_ItemHistoryRoot.hxx | Diff File | ||
rm - tools/VInspector/VInspector_ItemHistoryType.cxx | Diff File | ||
rm - tools/VInspector/VInspector_ItemHistoryType.hxx | Diff File | ||
rm - tools/VInspector/VInspector_ItemHistoryTypeInfo.hxx | Diff File | ||
mod - tools/VInspector/VInspector_ItemPresentableObject.hxx | Diff File | ||
mod - tools/VInspector/VInspector_Tools.hxx | Diff File | ||
mod - tools/VInspector/VInspector_ViewModel.cxx | Diff File | ||
rm - tools/VInspector/VInspector_ViewModelHistory.cxx | Diff File | ||
rm - tools/VInspector/VInspector_ViewModelHistory.hxx | Diff File | ||
mod - tools/VInspector/VInspector_Window.cxx | Diff File | ||
mod - tools/VInspector/VInspector_Window.hxx | Diff File |
Date Modified | Username | Field | Change |
---|---|---|---|
2020-02-09 10:21 | nds | New Issue | |
2020-02-09 10:21 | nds | Assigned To | => nds |
2020-02-09 10:24 | nds | Relationship added | related to 0029451 |
2020-09-25 02:02 | nds | Target Version | 7.5.0 => 7.6.0 |
2021-04-20 13:03 | git | Note Added: 0100476 | |
2021-04-20 13:32 | git | Note Added: 0100478 | |
2021-04-23 17:05 | nds | File Added: light_positional_1.png | |
2021-04-23 17:05 | nds | File Added: light_positional_2.png | |
2021-04-23 17:06 | nds | File Added: light_draw_script_1.png | |
2021-04-23 17:06 | nds | File Added: light_draw_script_2.png | |
2021-04-23 17:07 | nds | File Added: light_draw_script_3.png | |
2021-04-23 17:07 | nds | File Deleted: light_positional_2.png | |
2021-04-23 17:07 | nds | File Deleted: light_positional_1.png | |
2021-04-23 17:07 | nds | File Deleted: light_draw_script_1.png | |
2021-04-23 17:07 | nds | File Deleted: light_draw_script_2.png | |
2021-04-23 17:07 | nds | File Deleted: light_draw_script_3.png | |
2021-04-28 10:32 | git | Note Added: 0100632 | |
2021-04-28 10:34 | nds | Note Added: 0100633 | |
2021-04-28 10:34 | nds | Assigned To | nds => kgv |
2021-04-28 10:34 | nds | Status | new => resolved |
2021-04-29 11:01 | git | Note Added: 0100653 | |
2021-04-29 14:25 | kgv | Note Added: 0100665 | |
2021-04-29 14:25 | kgv | Assigned To | kgv => nds |
2021-04-29 14:25 | kgv | Status | resolved => assigned |
2021-05-12 21:19 | git | Note Added: 0100925 | |
2021-05-12 21:24 | git | Note Added: 0100926 | |
2021-05-12 21:38 | git | Note Added: 0100927 | |
2021-05-13 10:12 | git | Note Added: 0100929 | |
2021-05-13 10:26 | nds | Note Added: 0100930 | |
2021-05-13 10:26 | nds | Assigned To | nds => kgv |
2021-05-13 10:26 | nds | Status | assigned => resolved |
2021-05-13 20:56 | kgv | Assigned To | kgv => bugmaster |
2021-05-13 20:56 | kgv | Status | resolved => reviewed |
2021-05-14 20:41 | bugmaster | Note Added: 0101006 | |
2021-05-14 20:41 | bugmaster | Status | reviewed => assigned |
2021-05-17 09:19 | bugmaster | Status | assigned => feedback |
2021-05-17 14:17 | bugmaster | Note Added: 0101085 | |
2021-05-17 14:17 | bugmaster | Assigned To | bugmaster => nds |
2021-05-17 14:17 | bugmaster | Status | feedback => assigned |
2021-05-17 16:57 | git | Note Added: 0101104 | |
2021-05-17 16:58 | nds | Note Added: 0101105 | |
2021-05-17 16:58 | nds | Assigned To | nds => bugmaster |
2021-05-17 16:58 | nds | Status | assigned => resolved |
2021-05-17 18:02 | nds | Status | resolved => reviewed |
2021-05-22 12:23 | bugmaster | Note Added: 0101248 | |
2021-05-22 12:23 | bugmaster | Status | reviewed => tested |
2021-05-22 12:27 | bugmaster | Test case number | => Not required |
2021-05-22 12:38 | bugmaster | Changeset attached | => occt master d16ecfe2 |
2021-05-22 12:38 | bugmaster | Status | tested => verified |
2021-05-22 12:38 | bugmaster | Resolution | open => fixed |
2021-05-22 13:54 | git | Note Added: 0101264 | |
2021-05-22 13:54 | git | Note Added: 0101265 | |
2021-05-22 13:54 | git | Note Added: 0101266 | |
2021-09-09 16:03 | sshutina | Relationship added | related to 0031337 |