~ubuntu-branches/ubuntu/precise/kstars/precise-proposed

« back to all changes in this revision

Viewing changes to kstars/printing/pwizfovmanual.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-16 13:14:42 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111216131442-dfrjlt6pests9qu1
Tags: 4:4.7.90-0ubuntu1
New upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          pwizfovmanual.h  -  K Desktop Planetarium
 
3
                             -------------------
 
4
    begin                : Sun Aug 7 2011
 
5
    copyright            : (C) 2011 by Rafał Kułaga
 
6
    email                : rl.kulaga@gmail.com
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
 
 
18
#ifndef PWIZFOVMANUAL_H
 
19
#define PWIZFOVMANUAL_H
 
20
 
 
21
#include "ui_pwizfovmanual.h"
 
22
 
 
23
class PrintingWizard;
 
24
 
 
25
/**
 
26
  * \class PWizFovManualUI
 
27
  * \brief User interface for "Manual FOV capture" step of the Printing Wizard.
 
28
  * \author Rafał Kułaga
 
29
  */
 
30
class PWizFovManualUI : public QFrame, public Ui::PWizFovManual
 
31
{
 
32
    Q_OBJECT
 
33
public:
 
34
    /**
 
35
      * \brief Constructor.
 
36
      */
 
37
    PWizFovManualUI(PrintingWizard *wizard, QWidget *parent = 0);
 
38
 
 
39
private slots:
 
40
    /**
 
41
      * \brief Slot: enter manual FOV capture mode.
 
42
      */
 
43
    void slotExportFov();
 
44
 
 
45
private:
 
46
    PrintingWizard *m_ParentWizard;
 
47
};
 
48
 
 
49
#endif // PWIZFOVMANUAL_H