~ubuntu-branches/debian/jessie/stellarium/jessie

« back to all changes in this revision

Viewing changes to plugins/TelescopeControl/src/gui/StelDialogTelescopeControl.hpp

  • Committer: Package Import Robot
  • Author(s): Tomasz Buchert
  • Date: 2012-05-18 13:26:18 UTC
  • mfrom: (1.2.7)
  • Revision ID: package-import@ubuntu.com-20120518132618-3uso09fo68c218cx
Tags: 0.11.2-1
* Imported Upstream version 0.11.1 and then 0.11.2 (Closes: #658431)
* Change maintainer (Closes: #668916)
* Machine-readable copyright file
* Bump Standards-Version to 3.9.3
* Update debhelper compat to 9
* Fix lintian duplicate-font-file warning
* Fix copyright-refers-to-symlink-license lintian tag
* Add lintian override for embedded-library error

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Stellarium
3
 
 * Copyright (C) 2008 Fabien Chereau
4
 
 * 
5
 
 * This program is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU General Public License
7
 
 * as published by the Free Software Foundation; either version 2
8
 
 * of the License, or (at your option) any later version.
9
 
 * 
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 * 
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
 
*/
19
 
 
20
 
#ifndef _STELDIALOGTELESCOPECONTROL_HPP_
21
 
#define _STELDIALOGTELESCOPECONTROL_HPP_
22
 
 
23
 
#include <QObject>
24
 
 
25
 
//! @class StelDialogTelescopeControl
26
 
//! A local copy of StelDialog, the base class for all the GUI windows in Stellarium, included to allow the plug-in to be loaded dynamically on Windows. (An "Invalid access to memory location" error is thrown otherwise.)
27
 
class StelDialogTelescopeControl : public QObject
28
 
{
29
 
        Q_OBJECT
30
 
public:
31
 
        StelDialogTelescopeControl();
32
 
        virtual ~StelDialogTelescopeControl();
33
 
        
34
 
public slots:
35
 
        void setVisible(bool);
36
 
        void close();
37
 
signals:
38
 
        void visibleChanged(bool);
39
 
        
40
 
protected:
41
 
        //! Initialize the dialog widgets and connect the signals/slots
42
 
        virtual void createDialogContent()=0;
43
 
        
44
 
        //! The main dialog
45
 
        QWidget* dialog;
46
 
        class CustomProxy* proxy;
47
 
};
48
 
 
49
 
#endif // _STELDIALOGTELESCOPECONTROL_HPP_
50