summaryrefslogtreecommitdiffstats
path: root/src/kde-qt.h
blob: 0d65253f93bdfc115dbfea8c62571628f052174a (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/***************************************************************************
 *   Copyright (C) 2004-2007 by Georgy Yunaev, gyunaev@ulduzsoft.com       *
 *   Please do not use email address above for bug reports; see            *
 *   the README file                                                       *
 *                                                                         *
 *   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.             *
 ***************************************************************************/

#ifndef KDE_TQT_H
#define KDE_TQT_H

#include "config.h"

#if defined (USE_KDE)
	
	#define KTQ_CLASSNAME(name)			K##name
	#define KTQ_DECLARECLASS(name)		class KQ##name : public K##name

	#include <kapplication.h>
	#include <kmainwindow.h>
	#include <kstatusbar.h>
	#include <kmenubar.h>
	#include <kcmdlineargs.h>
	#include <klocale.h>
	#include <klistview.h>
	#include <kfiledialog.h>
	#include <tdehtml_part.h>
	#include <ktabwidget.h>
	#include <kpopupmenu.h>
	#include <kmessagebox.h>
	#include <kprogress.h>
	#include <krun.h>

#else /* !USE_KDE */

	#define KTQ_CLASSNAME(name)			Q##name

	#include <tqapplication.h>
	#include <tqmainwindow.h>
	#include <tqstring.h>
	#include <tqstatusbar.h>
	#include <tqlistview.h>
	#include <tqfiledialog.h>
	#include <tqmenubar.h>
	#include <tqtabwidget.h>
	#include <tqmessagebox.h>
	#include <tqprogressdialog.h>

	#define i18n(A)		tr(A)

#endif /* USE_KDE */

/* common non-wrapped UI classes */
#include <tqsplitter.h>
#include <tqtoolbutton.h>
#include <tqheader.h>
#include <tqtextbrowser.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqcombobox.h>
#include <tqpushbutton.h>

/* common utility classes */
#include <tqwhatsthis.h>
#include <tqstring.h>
#include <tqtextedit.h>
#include <tqfile.h>
#include <tqdir.h>
#include <tqregexp.h>
#include <tqtimer.h>
#include <tqmap.h>
#include <tqeventloop.h>

class KQMainWindow : public KTQ_CLASSNAME(MainWindow)
{
public:
	KQMainWindow ( TQWidget * parent, const char * name, WFlags f )
		: KTQ_CLASSNAME(MainWindow) (parent, name, f) {};
};


class KQListView : public KTQ_CLASSNAME(ListView)
{
public:
	KQListView(TQWidget *parent = 0, const char *name = 0, int f = 0);
};


class KTQProgressModalDialog : public KTQ_CLASSNAME(ProgressDialog)
{
	public:
		KTQProgressModalDialog ( const TQString & captionText, const TQString & labelText, const TQString & cancelButtonText, int totalSteps, TQWidget * creator = 0 );
		
		// Seems like people have fun making classes incompatible
#if defined (USE_KDE)		
		void   setTotalSteps( int totalSteps ) { progressBar ()->setTotalSteps( totalSteps ); }
		void   setProgress( int progress ) { progressBar ()->setProgress( progress ); }
#else
		bool   wasCancelled() { return wasCanceled(); }
#endif
};

class KTQTabWidget : public KTQ_CLASSNAME(TabWidget)
{
public:
	KTQTabWidget (TQWidget *parent = 0, const char *name = 0, int f = 0)
		: KTQ_CLASSNAME(TabWidget) (parent, name, f) {};
};

class KTQPopupMenu : public KTQ_CLASSNAME(PopupMenu)
{
public:
	KTQPopupMenu (TQWidget *parent = 0 )
		: KTQ_CLASSNAME(PopupMenu) (parent) {};
};

#include <tqinputdialog.h>
#include <tqcheckbox.h>
#include <tqtextedit.h>
#include <tqradiobutton.h>
#include <tqspinbox.h>
#include <tqgroupbox.h>
#include <tqbuttongroup.h>
#include <tqtooltip.h>


class KCHMShowWaitCursor
{
	public:
		KCHMShowWaitCursor() { TQApplication::setOverrideCursor( TQCursor(TQt::WaitCursor) ); }
		~KCHMShowWaitCursor() { TQApplication::restoreOverrideCursor(); }
};

				 
#endif /* KDE_TQT_H */