summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/opscatalog.h
blob: dd33f60a15f988e8b783d17c22c0aed32843c577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/***************************************************************************
                          opscatalog.h  -  K Desktop Planetarium
                             -------------------
    begin                : Sun Feb 29 2004
    copyright            : (C) 2004 by Jason Harris
    email                : jharris@30doradus.org
 ***************************************************************************/
/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef OPSCATALOG_H
#define OPSCATALOG_H

#include "opscatalogui.h"

/**@class OpsCatalog
	*The Catalog page for the Options window.  This page allows the user
	*to modify display of the major object catalogs in KStars:
	*@li Hipparcos/Tycho Star Catalog
	*@li Messier Catalog
	*@li NGC/IC Catalogs
	*@li Any Custom catalogs added by the user.
	*
	*@short Catalog page of the Options window.
	*@author Jason Harris
	*@version 1.0
	*/

class QWidget;
class KStars;
class QCheckListItem;

class OpsCatalog : public OpsCatalogUI
{
	Q_OBJECT

public:
	OpsCatalog( QWidget *parent=0, const char *name=0, WFlags fl = 0 );
	~OpsCatalog();

private slots:
	void updateDisplay();
	void selectCatalog();
	void slotAddCatalog();
	void slotLoadCatalog();
	void slotRemoveCatalog();
	void slotSetDrawStarMagnitude(double newValue);
	void slotSetDrawStarZoomOutMagnitude(double newValue);
	void slotStarWidgets(bool on);
	
private:
	void insertCatalog( const QString & filename );

	QCheckListItem *showMessier, *showMessImages, *showNGC, *showIC;
	KStars *ksw;
};

#endif  //OPSCATALOG_H