Definition at line 55 of file ConceptSupportControl.h. References OglGui::ViewerPointCloud::BorderColorTagged(), cHideBtnId, cSelectBtnId, cSetBtnId, cShowBtnId, cUnSelectBtnId, mColorIndex, mColors, mViewerPointCloud, OglGui::ViewerPointCloud::TagBorderColor(), and OglGui::ViewerPointCloud::TagBorderColorOnOff(). Referenced by ButtonSelectionEvent(). 00056 { 00057 ViewerPointCloud* vpc = mViewerPointCloud; 00058 if (cmd==cSetBtnId) 00059 vpc->BorderColorTagged(selectedTag, true, mColors[mColorIndex]); 00060 if (cmd==cShowBtnId) 00061 vpc->TagBorderColorOnOff(mColors[mColorIndex],visibleTag|selectableTag,ignoreTag); 00062 if (cmd==cHideBtnId) 00063 vpc->TagBorderColorOnOff(mColors[mColorIndex],ignoreTag,visibleTag|selectableTag|selectedTag); 00064 if (cmd==cUnSelectBtnId) 00065 vpc->TagBorderColor(mColors[mColorIndex], selectedTag, false); 00066 if (cmd==cSelectBtnId) 00067 vpc->TagBorderColor(mColors[mColorIndex], selectedTag, true); 00068 }
Here is the call graph for this function:
|