You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/languages/cpp/app_templates/kscons_tdemdi/apptdemdiView.h

31 lines
580 B

%{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