blob: 260383e55b2e32977fcc68e109fa4cea73412cb2 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/***************************************************************************
* Copyright (C) 2005 by David Saxton *
* david@bluehaze.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "docmanager.h"
#include "docmanageriface.h"
#include "document.h"
DocManagerIface::DocManagerIface( DocManager * docManager )
: DCOPObject("DocumentManager")
{
m_pDocManager = docManager;
}
DocManagerIface::~DocManagerIface()
{
}
bool DocManagerIface::closeAll( )
{
return m_pDocManager->closeAll();
}
DCOPRef DocManagerIface::openURL( const TQString & url )
{
return docToRef( m_pDocManager->openURL(url) );
}
void DocManagerIface::gotoTextLine( const TQString & url, int line )
{
m_pDocManager->gotoTextLine( url, line );
}
DCOPRef DocManagerIface::createTextDocument( )
{
return docToRef( (Document*)m_pDocManager->createTextDocument() );
}
DCOPRef DocManagerIface::createCircuitDocument( )
{
return docToRef( (Document*)m_pDocManager->createCircuitDocument() );
}
DCOPRef DocManagerIface::createFlowCodeDocument( )
{
return docToRef( (Document*)m_pDocManager->createFlowCodeDocument() );
}
DCOPRef DocManagerIface::createMechanicsDocument( )
{
return docToRef( (Document*)m_pDocManager->createMechanicsDocument() );
}
DCOPRef DocManagerIface::docToRef( Document * document )
{
if (document)
return DCOPRef(document->dcopObject());
return DCOPRef();
}
|