blob: 0be945b792f3e1212d1122a2f513060a62ab448b (
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
|
/***************************************************************************
* Copyright (C) 2004-2005 by Albert Astals Cid *
* tsdgeos@terra.es *
* *
* 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 KGEOGRAPHY_H
#define KGEOGRAPHY_H
#include <kmainwindow.h>
class KAction;
class KPushButton;
class KToggleAction;
class TQHBox;
class TQLabel;
class TQVBox;
class KGmap;
class askWidget;
class kgeography : public KMainWindow
{
Q_OBJECT
TQ_OBJECT
public:
kgeography();
~kgeography();
protected:
void showEvent(TQShowEvent *e);
private slots:
void openMap();
void consult();
void askCapitalDivisions();
void askDivisionCapitals();
void askMap();
void askFlagDivisions();
void askDivisionFlags();
void disclaimer();
void resizeMainWindow();
void showResultsDialog();
private:
TQSize getPreferredSize();
void putAskWidget();
void removeOldAskWidget();
void setMap(KGmap *m);
TQHBox *p_bigWidget;
TQVBox *p_underLeftWidget;
KPushButton *p_consult;
KPushButton *p_askCapitalDivisions;
KPushButton *p_askDivisionCapitals;
KPushButton *p_askMap;
KPushButton *p_askFlagDivisions;
KPushButton *p_askDivisionFlags;
KToggleAction *p_zoom, *p_move;
KAction *p_zoomOriginal;
TQLabel *p_currentMap;
KGmap *p_map;
askWidget *p_askWidget;
bool p_firstShow, p_mustShowResultsDialog;
};
#endif
|