1 /***************************************************************************
2     testrenderergui.h
3     ---------------------
4     begin                : January 2012
5     copyright            : (C) 2012 by Martin Dobias
6     email                : wonder.sk at gmail.com
7  ***************************************************************************
8  *                                                                         *
9  *   This program is free software; you can redistribute it and/or modify  *
10  *   it under the terms of the GNU General Public License as published by  *
11  *   the Free Software Foundation; either version 2 of the License, or     *
12  *   (at your option) any later version.                                   *
13  *                                                                         *
14  ***************************************************************************/
15 #ifndef TESTRENDERERGUI_H
16 #define TESTRENDERERGUI_H
17 
18 #include <QMainWindow>
19 
20 class QgsMapCanvas;
21 
22 class TestRendererGUI : public QMainWindow
23 {
24     Q_OBJECT
25   public:
26     explicit TestRendererGUI( QWidget *parent = nullptr );
27     void loadLayers();
28 
29   signals:
30 
31   public slots:
32     void setRenderer();
33 
34   protected:
35     QgsMapCanvas *mMapCanvas = nullptr;
36 };
37 
38 #endif // TESTRENDERERGUI_H
39