blob: 2eecfbe593f751d1607536eebcc0c0431bb56333 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/*
* Copyright (c) 2002-2003 Christian Loose <christian.loose@hamburg.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef REPOSITORY_H
#define REPOSITORY_H
#include <tqobject.h>
#include <dcopobject.h>
class TQString;
/**
* Represents a local or remote cvs repository with
* its repository-specific configuration data.
*/
class KDE_EXPORT Repository : public TQObject, public DCOPObject
{
K_DCOP
Q_OBJECT
//
public:
Repository();
explicit Repository(const TQString& repository);
~Repository();
/**
* cvs command (including the user-specified path) with the options
* for this repository.
*
* @return A cvs command (including path).
*/
TQString cvsClient() const;
/**
*/
TQString clientOnly() const;
/**
* Remote shell command line client which should be used to
* access the remote cvs repository, when :ext: access method
* is specified. ($CVS_RSH)
*
* @return The remote shell client. Can be null if not set.
*/
TQString rsh() const;
/**
* Program to start on the server side when accessing a remote
* repository using :ext: access method. ($CVS_SERVER)
*
* @return The server program. Can be null if not set.
*/
TQString server() const;
k_dcop:
/**
* Changes the working copy and the corresponding cvs repository.
*
* @param dirName path to the local working copy directory.
*/
bool setWorkingCopy(const TQString& dirName);
/**
* Path to the current working copy.
*
* @return The working copy directory. Can be null if not set.
*/
TQString workingCopy() const;
/**
* Path and method to access the current cvs repository.
* i.e. :pserver:user@cvs.project.org:/home/project
*
* @return The path and method to access the cvs repository.
*/
TQString location() const;
/**
*/
bool retrieveCvsignoreFile() const;
private slots:
void slotConfigDirty(const TQString& fileName);
private:
struct Private;
Private* d;
};
#endif
|