myList->setModel( aFilteredModel );
- // Buttons top, up, down, bottom
- SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
- myTop = new QPushButton( this );
- myTop->setIcon( aResMgr->loadPixmap( "HYDRO", tr( "ARROW_TOP_ICO" ) ) );
- myTop->setIconSize( QSize( theArrowIconSize, theArrowIconSize ) );
- myTop->setToolTip( tr( "TOP_TLT" ) );
- myUp = new QPushButton( this );
- myUp->setIcon( aResMgr->loadPixmap( "HYDRO", tr( "ARROW_UP_ICO" ) ) );
- myUp->setIconSize( myTop->iconSize() );
- myUp->setToolTip( tr( "UP_TLT" ) );
- myDown = new QPushButton( this );
- myDown->setIcon( aResMgr->loadPixmap( "HYDRO", tr( "ARROW_DOWN_ICO" ) ) );
- myDown->setIconSize( myTop->iconSize() );
- myDown->setToolTip( tr( "DOWN_TLT" ) );
- myBottom = new QPushButton( this );
- myBottom->setIcon( aResMgr->loadPixmap( "HYDRO", tr( "ARROW_BOTTOM_ICO" ) ) );
- myBottom->setIconSize( myTop->iconSize() );
- myBottom->setToolTip( tr( "BOTTOM_TLT" ) );
-
- // Layout
- // buttons
- QVBoxLayout* aListButtonsLayout = new QVBoxLayout();
- aListButtonsLayout->addWidget( myTop );
- aListButtonsLayout->addWidget( myUp );
- aListButtonsLayout->addWidget( myDown );
- aListButtonsLayout->addWidget( myBottom );
- aListButtonsLayout->addStretch();
- // main
+ // Add list to the main layout
aMainLayout->addWidget( myList );
- aMainLayout->addLayout( aListButtonsLayout );
-
- // Connections
- QSignalMapper* aSignalMapper = new QSignalMapper( this );
- aSignalMapper->setMapping( myTop, HYDROGUI_ListModel::Top );
- aSignalMapper->setMapping( myUp, HYDROGUI_ListModel::Up );
- aSignalMapper->setMapping( myDown, HYDROGUI_ListModel::Down );
- aSignalMapper->setMapping( myBottom, HYDROGUI_ListModel::Bottom );
- connect( myTop, SIGNAL( clicked() ), aSignalMapper, SLOT( map() ) );
- connect( myUp, SIGNAL( clicked() ), aSignalMapper, SLOT( map() ) );
- connect( myDown, SIGNAL( clicked() ), aSignalMapper, SLOT( map() ) );
- connect( myBottom, SIGNAL( clicked() ), aSignalMapper, SLOT( map() ) );
- connect( aSignalMapper, SIGNAL( mapped( int ) ), this, SLOT( onMove( int ) ) );
+
+ // Buttons top, up, down, bottom
+ if ( theArrowIconSize > 0 ) {
+ SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
+ myTop = new QPushButton( this );
+ myTop->setIcon( aResMgr->loadPixmap( "HYDRO", tr( "ARROW_TOP_ICO" ) ) );
+ myTop->setIconSize( QSize( theArrowIconSize, theArrowIconSize ) );
+ myTop->setToolTip( tr( "TOP_TLT" ) );
+ myUp = new QPushButton( this );
+ myUp->setIcon( aResMgr->loadPixmap( "HYDRO", tr( "ARROW_UP_ICO" ) ) );
+ myUp->setIconSize( myTop->iconSize() );
+ myUp->setToolTip( tr( "UP_TLT" ) );
+ myDown = new QPushButton( this );
+ myDown->setIcon( aResMgr->loadPixmap( "HYDRO", tr( "ARROW_DOWN_ICO" ) ) );
+ myDown->setIconSize( myTop->iconSize() );
+ myDown->setToolTip( tr( "DOWN_TLT" ) );
+ myBottom = new QPushButton( this );
+ myBottom->setIcon( aResMgr->loadPixmap( "HYDRO", tr( "ARROW_BOTTOM_ICO" ) ) );
+ myBottom->setIconSize( myTop->iconSize() );
+ myBottom->setToolTip( tr( "BOTTOM_TLT" ) );
+
+ // Add buttons to the main layout
+ QVBoxLayout* aListButtonsLayout = new QVBoxLayout();
+ aListButtonsLayout->addWidget( myTop );
+ aListButtonsLayout->addWidget( myUp );
+ aListButtonsLayout->addWidget( myDown );
+ aListButtonsLayout->addWidget( myBottom );
+ aListButtonsLayout->addStretch();
+
+ aMainLayout->addLayout( aListButtonsLayout );
+
+ // Buttons connections
+ QSignalMapper* aSignalMapper = new QSignalMapper( this );
+ aSignalMapper->setMapping( myTop, HYDROGUI_ListModel::Top );
+ aSignalMapper->setMapping( myUp, HYDROGUI_ListModel::Up );
+ aSignalMapper->setMapping( myDown, HYDROGUI_ListModel::Down );
+ aSignalMapper->setMapping( myBottom, HYDROGUI_ListModel::Bottom );
+ connect( myTop, SIGNAL( clicked() ), aSignalMapper, SLOT( map() ) );
+ connect( myUp, SIGNAL( clicked() ), aSignalMapper, SLOT( map() ) );
+ connect( myDown, SIGNAL( clicked() ), aSignalMapper, SLOT( map() ) );
+ connect( myBottom, SIGNAL( clicked() ), aSignalMapper, SLOT( map() ) );
+ connect( aSignalMapper, SIGNAL( mapped( int ) ), this, SLOT( onMove( int ) ) );
+ } else {
+ myTop = myUp = myDown = myBottom = 0;
+ }
connect ( myList->selectionModel(), SIGNAL( selectionChanged( QItemSelection, QItemSelection ) ),
this, SIGNAL( selectionChanged() ) );
void HYDROGUI_OrderedListWidget::setOrderingEnabled( const bool theIsToEnable )
{
// enable/disable arrow buttons
- myTop->setEnabled( theIsToEnable );
- myUp->setEnabled( theIsToEnable );
- myDown->setEnabled( theIsToEnable );
- myBottom->setEnabled( theIsToEnable );
+ if ( myTop && myUp && myDown && myBottom ) {
+ myTop->setEnabled( theIsToEnable );
+ myUp->setEnabled( theIsToEnable );
+ myDown->setEnabled( theIsToEnable );
+ myBottom->setEnabled( theIsToEnable );
+ }
// enable/disable drag and drop
myList->setDragEnabled( theIsToEnable );
#include "HYDROGUI_StreamDlg.h"
+#include "HYDROGUI_ListSelector.h"
+#include "HYDROGUI_Module.h"
+#include "HYDROGUI_OrderedListWidget.h"
#include "HYDROGUI_Tool.h"
+#include <HYDROData_Profile.h>
+
+#include <LightApp_Application.h>
+#include <LightApp_SelectionMgr.h>
+
#include <QComboBox>
#include <QGroupBox>
#include <QLabel>
anAxisLayout->addWidget( new QLabel( tr( "STREAM_HYDRAULIC_AXIS" ) ) );
anAxisLayout->addWidget( myAxes );
- myProfiles = new QListWidget( aParamGroup );
- myProfiles->setSelectionMode( QListWidget::ExtendedSelection );
- myProfiles->setEditTriggers( QListWidget::NoEditTriggers );
- myProfiles->setViewMode( QListWidget::ListMode );
- myProfiles->setSortingEnabled( false );
-
+ myProfiles = new HYDROGUI_OrderedListWidget( aParamGroup, 0 );
+ myProfiles->setHiddenObjectsShown(true);
+ myProfiles->setVisibilityIconShown(false);
+ myProfiles->setContentsMargins(QMargins());
+ myProfiles->setOrderingEnabled( false );
+
myAddButton = new QPushButton( aParamGroup );
myAddButton->setText( tr("ADD") );
myRemoveButton = new QPushButton( aParamGroup );
addWidget( aParamGroup );
addStretch();
+ // Create selector
+ if ( module() ) {
+ HYDROGUI_ListSelector* aListSelector =
+ new HYDROGUI_ListSelector( myProfiles, module()->getApp()->selectionMgr() );
+ aListSelector->setAutoBlock( true );
+ }
+
// Connect signals and slots
connect( myAxes, SIGNAL( currentIndexChanged( const QString & ) ),
this, SIGNAL( AxisChanged( const QString& ) ) );
myObjectName->clear();
myAxes->clear();
- myProfiles->clear();
+ myProfiles->setObjects( HYDROGUI_ListModel::Object2VisibleList() );
myAddButton->setEnabled( false );
myRemoveButton->setEnabled( false );
myProfiles->setUpdatesEnabled( false );
- myProfiles->clear();
+ HYDROGUI_ListModel::Object2VisibleList aProfiles;
foreach ( const QString& aProfileName, theProfiles ) {
- QListWidgetItem* aListItem = new QListWidgetItem( aProfileName, myProfiles );
- aListItem->setFlags( Qt::ItemIsEnabled | Qt::ItemIsSelectable );
+ Handle(HYDROData_Profile) anObject = Handle(HYDROData_Profile)::DownCast(
+ HYDROGUI_Tool::FindObjectByName( module(), aProfileName ) );
+ if ( !anObject.IsNull() ) {
+ aProfiles.append( HYDROGUI_ListModel::Object2Visible( anObject, true ) );
+ }
}
- myRemoveButton->setEnabled( myProfiles->count() > 0 );
+ myProfiles->setObjects( aProfiles );
+
+ myRemoveButton->setEnabled( myProfiles->getObjects().count() > 0 );
myProfiles->setUpdatesEnabled( true );
void HYDROGUI_StreamDlg::onRemoveProfiles()
{
- QStringList aSelectedProfiles;
-
- QList<QListWidgetItem*> aSelectedItems = myProfiles->selectedItems();
- foreach( const QListWidgetItem* anItem, aSelectedItems ) {
- QString aProfileName = anItem->text();
- if ( !aProfileName.isEmpty() ) {
- aSelectedProfiles << aProfileName;
- }
- }
+ QStringList aSelectedProfiles = myProfiles->getSelectedNames();
emit RemoveProfiles( aSelectedProfiles );
}