summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kscons_tdemdi/apptdemdiView.h
blob: 1f40ea9a39e08dedd88f426b960153050973f17a (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
%{H_TEMPLATE}

#ifndef _%{APPNAMEUC}KMDIVIEW_H
#define _%{APPNAMEUC}KMDIVIEW_H

#include <tdeparts/part.h>
#include <tdemdichildview.h>
#include <tdemdichildfrm.h>

/**
 * This class serves as the %{APPNAMELC}tdemdi view.
 *
 * @short main view class
 */
class %{APPNAMELC}tdemdiView : public KMdiChildView 
{
	TQ_OBJECT
  
	public:
		%{APPNAMELC}tdemdiView( TQWidget *parentWidget=0L, const char *name=0L );
		virtual ~%{APPNAMELC}tdemdiView();

		KParts::ReadWritePart *part() { return m_part; }

	private:
		KParts::ReadWritePart *m_part;
};

#endif // _%{APPNAMEUC}KMDIVIEW_H