Salome HOME
updated copyright message
[modules/shaper.git] / src / ModuleBase / ModuleBase_ToolBox.cpp
index 8618e3b3488e2487506a0938af04b54bc3338fd8..7a62ca778d9ecb4eb5160dfea1f0e3ca1c551363 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -28,6 +28,9 @@
 
 #include <ModuleBase_PagedContainer.h>
 
+const QString AStyle = "QToolButton:checked {border: 1px solid black; background-color:#C0DCF3}";
+
+
 ModuleBase_ToolBox::ModuleBase_ToolBox(QWidget* theParent, const bool theUseFrameStyleBox)
 : QFrame(theParent)
 {
@@ -71,6 +74,7 @@ void ModuleBase_ToolBox::addItem(QWidget* thePage, const QString& theName, const
   QToolButton* aButton = new QToolButton(myButtonsFrame);
   aButton->setFocusPolicy(Qt::StrongFocus);
   aButton->setCheckable(true);
+  aButton->setStyleSheet(AStyle);
   if (theIcon.isNull())
     aButton->setText(theName);
   else {
@@ -117,7 +121,6 @@ bool ModuleBase_ToolBox::isOffToolBoxParent(ModuleBase_ModelWidget* theWidget)
     while (aParent) {
       QStackedWidget* aStackedWidget = dynamic_cast<QStackedWidget*>(aParent);
       if (aStackedWidget) {
-        int anIndex = aStackedWidget->currentIndex();
         isOffToolBox = aStackedWidget->currentWidget() != aWidget;
         break;
       }