]> SALOME platform Git repositories - modules/gui.git/blobdiff - src/Qtx/QtxListView.h
Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / Qtx / QtxListView.h
index 354b7a8855fac39e8d9278aa634c0364e8074207..76aa63a05e6fb227a3385d1dd21f5f6c352f9b52 100755 (executable)
@@ -1,3 +1,21 @@
+// Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
+// 
+// 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.
+// 
+// This library is distributed in the hope that it will be useful 
+// but WITHOUT ANY WARRANTY; without even the implied warranty of 
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
+// Lesser General Public License for more details.
+//
+// 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
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #ifndef QTXLISTVIEW_H
 #define QTXLISTVIEW_H
@@ -39,6 +57,11 @@ public:
   bool          isShown( int ) const;
   void          setShown( int, bool );
 
+  bool          appropriate( const int ) const;
+  virtual void  setAppropriate( const int, const bool );
+
+  virtual void  setColumnWidth( int, int );
+
   virtual QSize sizeHint() const;
   virtual QSize minimumSizeHint() const;
 
@@ -53,6 +76,8 @@ protected slots:
 
 protected:
   virtual void  viewportResizeEvent( QResizeEvent* );
+  virtual bool  eventFilter( QObject*, QEvent* );
+  virtual void  showPopup( const int x, const int y );
 
 private:
   typedef struct { int width; bool resizeable; } ColumnData;
@@ -65,6 +90,7 @@ private:
   QPopupMenu*   myPopup;
   QButton*      myButton;
   ColumnsMap    myColumns;
+  QIntList      myAppropriate;
   int           myHeaderState;
 };