1 /*********
2 *
3 * In the name of the Father, and of the Son, and of the Holy Spirit.
4 *
5 * This file is part of BibleTime's source code, http://www.bibletime.info/.
6 *
7 * Copyright 1999-2016 by the BibleTime developers.
8 * The BibleTime source code is licensed under the GNU General Public License version 2.0.
9 *
10 **********/
11 
12 #ifndef SEARCHCSEARCHANALYSISVIEW_H
13 #define SEARCHCSEARCHANALYSISVIEW_H
14 
15 #include <QGraphicsView>
16 
17 #include <QSize>
18 
19 
20 class QResizeEvent;
21 
22 namespace Search {
23 
24 class CSearchAnalysisScene;
25 
26 /**
27     @author The BibleTime team <info@bibletime.info>
28 */
29 class CSearchAnalysisView : public QGraphicsView {
30     public:
31         CSearchAnalysisView(CSearchAnalysisScene* scene, QWidget* parent);
32 
33     protected:
34 
35         void resizeEvent(QResizeEvent* e) override;
36 
37 };
38 
39 }
40 
41 #endif
42