summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kscons_tdemdi/apptdemdiView.h
blob: 00109fdbc8642b87ee8df7eebb1fb4aaef03bcea (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 
{
	Q_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