#include "HYDROGUI_Module.h"
#include "HYDROGUI_Tool.h"
+#include <HYDROData_PolylineXY.h>
+
#include <GraphicsView_Object.h>
#include <LightApp_Application.h>
HYDROGUI_ObjSelector::HYDROGUI_ObjSelector( HYDROGUI_Module* theModule,
const ObjectKind theObjectKind,
- QWidget* theParent )
+ QWidget* theParent,
+ const int theObjectFlags)
: QAbstractButton( theParent ),
myObjectKind( theObjectKind ),
- myModule( theModule )
+ myModule( theModule ),
+ myObjectFlags( theObjectFlags )
{
QHBoxLayout* aLayout = new QHBoxLayout( this );
aLayout->setMargin( 0 );
if( !anObject.IsNull() )
if( myObjectKind == KIND_UNKNOWN || myObjectKind == anObject->GetKind() )
{
- anObjName = anObject->GetName();
+ if ( myObjectKind == KIND_POLYLINEXY && ( myObjectFlags & ClosedPolyline ) ) {
+ // check if the polyline is closed
+ Handle(HYDROData_PolylineXY) aPolylineObj =
+ Handle(HYDROData_PolylineXY)::DownCast( anObject );
+ if ( !aPolylineObj.IsNull() && aPolylineObj->IsClosed() ) {
+ anObjName = aPolylineObj->GetName();
+ }
+ } else {
+ anObjName = anObject->GetName();
+ }
// Check if the same object has not been selected in other selectors of the same parent widget.
if ( !anObjName.isEmpty() )
{
Q_OBJECT
+public:
+ enum ObjectFlags {
+ NoFlags = 0x00000000,
+ ClosedPolyline = 0x00000001
+ };
+
public:
HYDROGUI_ObjSelector( HYDROGUI_Module* theModule,
const ObjectKind theObjectKind,
- QWidget* theParent );
+ QWidget* theParent,
+ const int theObjectFlags = NoFlags );
virtual ~HYDROGUI_ObjSelector();
void Clear();
QToolButton* myBtn;
QLineEdit* myObjName;
+
+ int myObjectFlags;
};
#endif
myImage2 = new HYDROGUI_ObjSelector( theModule, KIND_IMAGE, aParamGroup );
myPolylineLabel = new QLabel( tr( "POLYLINE" ), aParamGroup );
- myPolyline = new HYDROGUI_ObjSelector( theModule, KIND_POLYLINEXY, aParamGroup );
+ myPolyline = new HYDROGUI_ObjSelector( theModule, KIND_POLYLINEXY, aParamGroup,
+ HYDROGUI_ObjSelector::ClosedPolyline);
QFrame* aBackgroundFrame = new QFrame( aParamGroup );
QLabel* aBackgroundLabel = new QLabel( tr( "BACKGROUND" ), aBackgroundFrame );