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.cpp

64 lines
1.6 KiB

%{CPP_TEMPLATE}
#include <tqpixmap.h>
#include <tqlayout.h>
#include <kiconloader.h>
#include <klocale.h>
#include <tdemdichildview.h>
#include <kdebug.h>
#include <klibloader.h>
#include <kmessagebox.h>
#include "%{APPNAMELC}tdemdiView.h"
%{APPNAMELC}tdemdiView::%{APPNAMELC}tdemdiView( TQWidget *parentWidget, const char *name )
: KMdiChildView( parentWidget, name )
{
m_part = NULL;
// this routine will find and load our Part. it finds the Part by
// name which is a bad idea usually.. but it's alright in this
// case since our Part is made for this Shell
KLibFactory *factory = KLibLoader::self()->factory("lib%{APPNAMELC}part");
//KLibFactory *factory = KLibLoader::self()->factory("libkatepart");
if (factory)
{
// now that the Part is loaded, we cast it to a Part to get
// our hands on it
m_part = static_cast<KParts::ReadWritePart *>(factory->create(
this, "katepart", "KParts::ReadWritePart" ));
if (m_part)
{
part()->widget()->setFocus();
setFocusProxy(part()->widget());
TQBoxLayout* layout = new TQHBoxLayout(this, 0, -1, "kdissertviewlayout" );
part()->widget()->reparent( this, TQPoint(0, 0) );
layout->addWidget( part()->widget() );
// connect( m_part, TQT_SIGNAL(stateChanged()), this, TQT_SLOT(updateCaption()) );
}
else
{
KMessageBox::error(this, i18n("Could not find our part."));
}
}
else
{
// if we couldn't find our Part, we exit since the Shell by
// itself can't do anything useful
KMessageBox::error(this, i18n("Could not find our part."));
return;
}
}
%{APPNAMELC}tdemdiView::~%{APPNAMELC}tdemdiView()
{
delete m_part->widget();
}
#include "%{APPNAMELC}tdemdiView.moc"