X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ListView.cpp;h=d9fe13d2c18339a17daaafebe041484adacb8e43;hb=be64ac512378281d54e4a73e8edb68ae43d0c5a7;hp=4bf680a72a939373524c65fa00c9548dacee5af3;hpb=613e672654df0f1e6838fb55b384842ce534809a;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ListView.cpp b/src/ModuleBase/ModuleBase_ListView.cpp index 4bf680a72..d9fe13d2c 100644 --- a/src/ModuleBase/ModuleBase_ListView.cpp +++ b/src/ModuleBase/ModuleBase_ListView.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,10 +12,9 @@ // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include "ModuleBase_ListView.h" @@ -24,51 +23,14 @@ #include #include #include -#include #include -const int ATTRIBUTE_SELECTION_INDEX_ROLE = Qt::UserRole + 1; - -/** -* Customization of a List Widget to make it to be placed on full width of container -*/ -class CustomListWidget : public QListWidget -{ -public: - /// Constructor - /// \param theParent a parent widget - CustomListWidget(QWidget* theParent) - : QListWidget(theParent) - { - } - - /// Redefinition of virtual method - virtual QSize sizeHint() const - { - int aHeight = 2*QFontMetrics(font()).height(); - QSize aSize = QListWidget::sizeHint(); - return QSize(aSize.width(), aHeight); - } - - /// Redefinition of virtual method - virtual QSize minimumSizeHint() const - { - int aHeight = 4/*2*/*QFontMetrics(font()).height(); - QSize aSize = QListWidget::minimumSizeHint(); - return QSize(aSize.width(), aHeight); - } - #ifndef WIN32 -// The code is necessary only for Linux because -//it can not update viewport on widget resize -protected: - void resizeEvent(QResizeEvent* theEvent) - { - QListWidget::resizeEvent(theEvent); - QTimer::singleShot(5, viewport(), SLOT(repaint())); - } +#include +#include #endif -}; + +const int ATTRIBUTE_SELECTION_INDEX_ROLE = Qt::UserRole + 1; //******************************************************************** ModuleBase_ListView::ModuleBase_ListView(QWidget* theParent, const QString& theObjectName, @@ -93,6 +55,7 @@ ModuleBase_ListView::ModuleBase_ListView(QWidget* theParent, const QString& theO myListControl->setContextMenuPolicy(Qt::ActionsContextMenu); connect(myListControl, SIGNAL(itemSelectionChanged()), SLOT(onListSelection())); + connect(myListControl, SIGNAL(activated()), this, SIGNAL(listActivated())); } //******************************************************************** @@ -174,4 +137,10 @@ void ModuleBase_ListView::onListSelection() QList aItems = myListControl->selectedItems(); myCopyAction->setEnabled(!aItems.isEmpty()); myDeleteAction->setEnabled(!aItems.isEmpty()); -} \ No newline at end of file +} + +//******************************************************************** +bool ModuleBase_ListView::hasItem(const QString& theTextValue) const +{ + return myListControl->findItems(theTextValue, Qt::MatchExactly).length() > 0; +}