Salome HOME
012a5adb85746a2bcf2220ade7eacd7ab6a7f3e1
[modules/gui.git] / src / Qtx / QtxPathListEdit.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File:      QtxPathListEdit.h
23 // Author:    Sergey TELKOV
24 //
25 #ifndef QTXPATHLISTEDIT_H
26 #define QTXPATHLISTEDIT_H
27
28 #include "Qtx.h"
29
30 #include <QFrame>
31 #include <QPointer>
32
33 class QLineEdit;
34 class QListView;
35 class QCompleter;
36 class QModelIndex;
37 class QToolButton;
38 class QStringListModel;
39
40 #ifdef WIN32
41 #pragma warning( disable:4251 )
42 #endif
43
44 class QTX_EXPORT QtxPathListEdit : public QFrame
45 {
46   Q_OBJECT
47
48   class Editor;
49   class Delegate;
50
51 public:
52   QtxPathListEdit( const Qtx::PathType, QWidget* = 0 );
53   QtxPathListEdit( QWidget* = 0 );
54   virtual ~QtxPathListEdit();
55
56   Qtx::PathType     pathType() const;
57   void              setPathType( const Qtx::PathType );
58
59   QStringList       pathList() const;
60   void              setPathList( const QStringList& );
61
62   bool              isDuplicateEnabled() const;
63   void              setDuplicateEnabled( const bool );
64
65   int               count() const;
66   bool              contains( const QString& ) const;
67
68   void              clear();
69   void              remove( const int );
70   void              remove( const QString& );
71   void              insert( const QString&, const int = -1 );
72
73   bool              eventFilter( QObject*, QEvent* );
74
75 protected slots:
76   void              onUp( bool = false );
77   void              onDown( bool = false );
78   void              onInsert( bool = false );
79   void              onDelete( bool = false );
80
81 private:
82   void              initialize();
83   QWidget*          createEditor( QWidget* );
84   void              setModelData( QWidget*, const QModelIndex& );
85   void              setEditorData( QWidget*, const QModelIndex& );
86
87   bool              checkExistance( const QString&, const bool = true );
88   bool              checkDuplicate( const QString&, const int, const bool = true );
89
90 private:
91   QListView*        myList;
92   Qtx::PathType     myType;
93   QStringListModel* myModel;
94   QCompleter*       myCompleter;
95   bool              myDuplicate;
96
97   friend class QtxPathListEdit::Delegate;
98 };
99
100 #endif