~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to lib/interfaces/katedocumentmanagerinterface.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of the KDE project
2
 
 Copyright (C) 2005 Ian Reinhart Geiser <geiser@kde.org>
3
 
 
4
 
 This library is free software; you can redistribute it and/or
5
 
 modify it under the terms of the GNU Library General Public
6
 
 License as published by the Free Software Foundation; either
7
 
 version 2 of the License, or (at your option) any later version.
8
 
 
9
 
 This library is distributed in the hope that it will be useful,
10
 
 but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 Library General Public License for more details.
13
 
 
14
 
 You should have received a copy of the GNU Library General Public License
15
 
 along with this library; see the file COPYING.LIB.  If not, write to
16
 
 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
 Boston, MA 02111-1307, USA.
18
 
*/
19
 
#ifndef KATEDOCUMENTMANAGERINTERFACE_H
20
 
#define KATEDOCUMENTMANAGERINTERFACE_H
21
 
 
22
 
#include <qobject.h>
23
 
#include <dcopobject.h>
24
 
#include <dcopref.h>
25
 
#include <kurl.h>
26
 
class KDevPartController;
27
 
 
28
 
/**
29
 
This is an emulated interface to provide compatibility with Kate scripts.
30
 
 
31
 
@author KDevelop Authors
32
 
*/
33
 
class KateDocumentManagerInterface : public QObject, public DCOPObject {
34
 
 
35
 
    Q_OBJECT
36
 
    K_DCOP
37
 
public:
38
 
    KateDocumentManagerInterface( KDevPartController *pc );
39
 
 
40
 
    ~KateDocumentManagerInterface();
41
 
 
42
 
k_dcop:
43
 
    DCOPRef activeDocument();
44
 
    DCOPRef document( uint n );
45
 
    DCOPRef documentWithID( uint id );
46
 
    DCOPRef openURL( const KURL &url, const QString &encoding );
47
 
    bool closeAllDocuments();
48
 
    bool closeDocument( uint n );
49
 
    bool isOpen( const KURL &url );
50
 
    int findDocument( const KURL &url );
51
 
    uint activeDocumentNumber();
52
 
    uint documents();
53
 
private:
54
 
 
55
 
    KDevPartController *m_controller;
56
 
};
57
 
 
58
 
#endif