summaryrefslogtreecommitdiffstats
path: root/kmoon/kmoondlg.cpp
blob: acb789a7d0578eec103a7f23ec0d1c86a5bd736b (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 *   kmoon - a moon phase indicator
 *   Copyright (C) 1998  Stephan Kulow
 *
 *   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.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 */

#include <tqslider.h>
#include <tqlayout.h>
#include <klocale.h>
#include <tqwhatsthis.h>
#include <tqvbox.h>
#include <kapplication.h>
#include <tqpushbutton.h>

#include "kmoondlg.h"
#include "kmoonwidget.h"

KMoonDlg::KMoonDlg(int a, bool n, bool m, TQWidget *tqparent, const char *name)
    : KDialogBase(tqparent, name, true, i18n("Change View"),
                  Ok|Cancel|Help), angle(a), north(n), tqmask(m)
{
	TQWidget *page = new TQWidget( this );
	setMainWidget(page);
	TQHBoxLayout *topLayout = new TQHBoxLayout( page, 0, spacingHint() );

        TQVBox *vbox = new TQVBox(page);
        TQHBox *hbox1 = new TQHBox(vbox);
        hbox1->setSpacing(15);

	TQLabel *label = new TQLabel( i18n("View angle:"), hbox1, "caption" );
	TQString text = i18n("You can use this to rotate the moon to the correct\n"
                            "angle for your location.\n"
			    "\n"
                            "This angle is (almost) impossible to\n"
                            "calculate from any system-given data,\n"
                            "therefore you can configure how you\n"
                            "want KMoon to display your moon here.\n"
                            "The default value is 0, but it is very\n"
                            "unlikely that you would see the moon\n"
                            "at this angle.");
	TQWhatsThis::add(label, text);

	slider = new TQSlider( -90, 90, 2, angle, Qt::Horizontal, hbox1, "slider" );
	slider->setTickmarks(TQSlider::Above);
	slider->setTickInterval(45);
	slider->setEnabled(TQPixmap::defaultDepth() > 8);
	label->setEnabled(TQPixmap::defaultDepth() > 8);
	TQWhatsThis::add(slider, text);
	connect(slider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(angleChanged(int)));

	TQHBox *hbox2 = new TQHBox(vbox);
	hbox2->setSpacing(spacingHint());

        hemitoggle = new TQPushButton(hbox2);
	hemitoggle->setText(north ? i18n("Switch to Southern Hemisphere") :
			    i18n("Switch to Northern Hemisphere"));

        connect(hemitoggle, TQT_SIGNAL(clicked()), TQT_SLOT(toggleHemi()));

        masktoggle = new TQPushButton(hbox2);
	masktoggle->setText(tqmask ? i18n("Switch Masking Off") :
			    i18n("Switch Masking On"));

        connect(masktoggle, TQT_SIGNAL(clicked()), TQT_SLOT(toggleMask()));
        topLayout->addWidget(vbox);

	moon = new MoonWidget(page, "preview");
	moon->setMinimumSize(50, 50);
	moon->setMaximumSize(200,200);
	TQWhatsThis::add(moon, i18n("The moon as KMoon would display it\n"
							   "following your current setting and time."));
	topLayout->addWidget(moon);
        connect(this, TQT_SIGNAL(helpClicked()), TQT_SLOT(help()));
	// disableResize();
}

void KMoonDlg::angleChanged(int value) {
    angle = value;
    moon->setAngle(value);
}

void KMoonDlg::help() {
    kapp->invokeHelp(TQString::tqfromLatin1("config"));
}

void KMoonDlg::toggleHemi() {
    moon->setNorthHemi(!moon->northHemi());
    north = moon->northHemi();
    hemitoggle->setText(north ? i18n("Switch to Southern Hemisphere") :
			i18n("Switch to Northern Hemisphere"));
}

void KMoonDlg::toggleMask() {
    moon->setMask(!moon->tqmask());
    tqmask = moon->tqmask();
    masktoggle->setText(tqmask ? i18n("Switch Masking Off") :
			i18n("Switch Masking On"));
}

#include "kmoondlg.moc"