Salome HOME
Merge from V6_main 01/04/2013
[modules/gui.git] / src / Qtx / QtxWebBrowser.h
1 // Copyright (C) 2007-2013  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
23 // File:      QtxWebBrowser.h
24 // Author:    Roman NIKOLAEV
25 //
26
27 #ifndef QTXWEBBROWSER_H
28 #define QTXWEBBROWSER_H
29
30 #include "Qtx.h"
31
32 #include <QMainWindow>
33 #include <QMap>
34
35 class QAction;
36 class QMenu;
37 class QToolBar;
38 class QWebView;
39 class QUrl;
40 class QtxSearchTool;
41
42 class QTX_EXPORT QtxWebBrowser : public QMainWindow
43 {
44   Q_OBJECT
45
46   enum { File };
47   enum { Find, FindNext, FindPrev, Close };
48
49 private:
50   QtxWebBrowser();
51   
52 public:
53   virtual ~QtxWebBrowser();
54   
55   static QtxWebBrowser*           webBrowser();
56   static void                     loadUrl( const QString&, const QString& = QString() );
57   static void                     setData( const QString&, const QVariant& );
58
59 private:
60   static QString                  getStringValue( const QString& );
61   static QIcon                    getIconValue( const QString& );
62   void                            updateData();
63   static void                     clearData();
64
65 protected slots:
66   virtual void                    linkClicked( const QUrl& );
67   virtual void                    linkHovered( const QString&, const QString&, const QString& );
68
69 private slots:
70   void                            adjustTitle();    
71   
72 private:
73   static QMap<QString, QVariant>  myData;
74   static QtxWebBrowser*           myBrowser;
75   QWebView*                       myWebView;
76   QToolBar*                       myToolbar;
77   QMap<int, QMenu*>               myMenus;
78   QMap<int, QAction*>             myActions;
79   QtxSearchTool*                  myFindPanel;
80 };
81
82 #endif // QTXWEBBROWSER_H