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.
34 lines
686 B
34 lines
686 B
#include "documentinfo.h"
|
|
#include "documentdcopinfo.h"
|
|
|
|
#include <dcopclient.h>
|
|
using namespace KTextEditor;
|
|
|
|
DocumentInfoDCOPInterface::DocumentInfoDCOPInterface( DocumentInfoInterface *Parent, const char *name)
|
|
: DCOPObject(name)
|
|
{
|
|
m_parent = Parent;
|
|
}
|
|
|
|
DocumentInfoDCOPInterface::~DocumentInfoDCOPInterface()
|
|
{
|
|
|
|
}
|
|
|
|
TQString DocumentInfoDCOPInterface::mimeType()
|
|
{
|
|
return m_parent->mimeType();
|
|
}
|
|
long DocumentInfoDCOPInterface::fileSize()
|
|
{
|
|
return m_parent->fileSize();
|
|
}
|
|
TQString DocumentInfoDCOPInterface::niceFileSize()
|
|
{
|
|
return m_parent->niceFileSize();
|
|
}
|
|
uint DocumentInfoDCOPInterface::documentInfoInterfaceNumber ()
|
|
{
|
|
return m_parent->documentInfoInterfaceNumber ();
|
|
}
|