Salome HOME
Updated copyright comment
[modules/gui.git] / src / Qtx / QtxWorkstackAction.h
index e5ec2d248e469c9d73ee0b831f000c0acf967355..e7313e6f512efd1ff18af2614cbac49544bfefc4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 #define QTXWORKSTACKACTION_H
 
 #include "QtxActionSet.h"
+#include <QDialog>
 
 class QtxWorkstack;
+class QRadioButton;
+class QStackedLayout;
+class QListWidget;
+class QComboBox;
+class QLabel;
+class QToolButton;
 
 #ifdef WIN32
 #pragma warning( disable:4251 )
@@ -50,6 +57,7 @@ public:
   virtual ~QtxWorkstackAction();
 
   QtxWorkstack* workstack() const;
+  QAction*      getArrangeViewsAction();
 
   int           menuActions() const;
   void          setMenuActions( const int );
@@ -84,6 +92,60 @@ private:
 private:
   QtxWorkstack* myWorkstack;       //!< parent workstack
   bool          myWindowsFlag;     //!< "show child windows items" flag
+  QAction*      myArrangeViewsAction;
+};
+
+enum QtxSplitDlgMode{ ArrangeViews, CreateSubViews };
+
+class QTX_EXPORT QtxSplitDlg : public QDialog
+{
+  Q_OBJECT
+
+  enum ViewMode{ XYZ, XY, XZ, YZ };
+
+public:
+  QtxSplitDlg( QWidget* = 0, QtxWorkstack* = NULL, QtxSplitDlgMode = ArrangeViews );
+  ~QtxSplitDlg();
+  int getSplitMode();
+  QList<int> getViewsMode();
+
+private :
+  QToolButton* createSplitButton( int, int );
+  void initialize();
+  void valid();
+
+  QStackedLayout* myStackedSplitLayout;
+  QRadioButton* myButton2Views;
+  QRadioButton* myButton3Views;
+  QRadioButton* myButton4Views;
+  QPushButton* myButtonApply;
+  QPushButton* myButtonPrevious;
+  QPushButton* myButtonNext;
+  QList<QLabel*> myLabels;
+  QList<QComboBox*> myComboBox;
+  QListWidget* myViewsList;
+
+  QtxWorkstack* myWorkstack;
+  QtxSplitDlgMode myDlgMode;
+
+  int myViewsNB;
+  int mySplitMode;
+  int myNBSelectedViews;
+  bool myIsCloseViews;
+  QMap<QComboBox*, ViewMode> myMapComboBoxMode;
+  QMap<ViewMode, bool> myMapModeIsBusy;
+
+private slots:
+
+  void onChangeIcons();
+  void onSplitChanged(int);
+  void onComboBoxChanged(int);
+  void onPreviousViews();
+  void onNextViews();
+  void onSynchronize();
+  void onCloseViews();
+  void onStackViews();
+  void onApply();
 };
 
 #ifdef WIN32