~ubuntu-branches/ubuntu/wily/marble/wily-proposed

« back to all changes in this revision

Viewing changes to src/plugins/render/annotate/EditGroundOverlayDialog.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark, Jonathan Riddell, Scarlett Clark
  • Date: 2014-07-24 23:38:32 UTC
  • mfrom: (1.5.2)
  • Revision ID: package-import@ubuntu.com-20140724233832-7v4421t4khrhw487
Tags: 4:4.13.90-0ubuntu1
[ Jonathan Riddell ]
* Switch to libmarblewidget19 for new soversion

[ Scarlett Clark ]
* New upstream beta release
* Update: do_not_install_private_headers. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// This file is part of the Marble Virtual Globe.
 
3
//
 
4
// This program is free software licensed under the GNU LGPL. You can
 
5
// find a copy of this license in LICENSE.txt in the top directory of
 
6
// the source code.
 
7
//
 
8
// Copyright 2013      Adrian Draghici <draghici.adrian.b@gmail.com>
 
9
//
 
10
 
 
11
#ifndef MARBLE_EDITGROUNDOVERLAYDIALOG_H
 
12
#define MARBLE_EDITGROUNDOVERLAYDIALOG_H
 
13
 
 
14
#include <QDialog>
 
15
 
 
16
#include "GeoDataGroundOverlay.h"
 
17
#include "TextureLayer.h"
 
18
 
 
19
namespace Marble
 
20
{
 
21
 
 
22
class EditGroundOverlayDialog : public QDialog
 
23
{
 
24
    Q_OBJECT
 
25
 
 
26
public:
 
27
    EditGroundOverlayDialog( GeoDataGroundOverlay *overlay, TextureLayer *textureLayer, QWidget *parent = 0 );
 
28
    ~EditGroundOverlayDialog();
 
29
 
 
30
private slots:
 
31
    void updateGroundOverlay();
 
32
    void setGroundOverlayUpdated();
 
33
 
 
34
signals:
 
35
    void groundOverlayUpdated( GeoDataGroundOverlay* );
 
36
 
 
37
private:
 
38
    class Private;
 
39
    Private *d;
 
40
};
 
41
 
 
42
}
 
43
 
 
44
#endif