~ubuntu-branches/debian/sid/kdesvn/sid

« back to all changes in this revision

Viewing changes to src/svnfrontend/ccontextlistener.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2006-10-27 12:52:15 UTC
  • mfrom: (1.2.1 upstream) (5.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20061027125215-aifcjirifidnegx5
Tags: 0.11.0-1
* New upstream release.
* debian/patches/01-kompare_diff.patch
  + Removed. Fixed upstream.
* debian/control
  + Add a "Suggests: kdiff3" to kdesvn. kdiff3 can be used as an external
    merge program.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef CCONTEXTLISTENER_H
21
21
#define CCONTEXTLISTENER_H
22
22
 
23
 
#include "svncpp/context_listener.hpp"
24
 
#include "helpers/smart_pointer.h"
 
23
#include "src/svnqt/context_listener.hpp"
 
24
#include "src/svnqt/smart_pointer.hpp"
25
25
 
26
26
#include <qobject.h>
27
27
#include <qstring.h>
31
31
/**
32
32
@author Rajko Albrecht
33
33
*/
34
 
class CContextListener : public QObject, public svn::ContextListener,public ref_count
 
34
class CContextListener : public QObject, public svn::ContextListener,public svn::ref_count
35
35
{
36
36
    Q_OBJECT
37
37
public:
58
58
    /*!
59
59
     * Get logmessage for checkin and so on...
60
60
     */
61
 
    virtual bool contextGetLogMessage (QString & msg);
 
61
    virtual bool contextGetLogMessage (QString & msg,const svn::CommitItemList&);
62
62
    virtual SslServerTrustAnswer contextSslServerTrustPrompt (const SslServerTrustData & data,
63
63
                                 apr_uint32_t & acceptedFailures);
64
64
    virtual bool contextSslClientCertPrompt (QString & certFile);
65
65
    virtual bool contextSslClientCertPwPrompt (QString & password,
66
66
                                   const QString & realm, bool & maySave);
 
67
    virtual QString translate(const QString&what);
 
68
 
67
69
    static QString NotifyAction(svn_wc_notify_action_t action);
68
70
    static QString NotifyState(svn_wc_notify_state_t);
69
71
 
70
 
    void setCanceled(bool how);
71
 
 
72
72
    static QStringList failure2Strings(apr_uint32_t acceptedFailures);
 
73
    virtual void contextProgress(long long int current, long long int max);
 
74
 
 
75
public slots:
 
76
    virtual void setCanceled(bool);
73
77
 
74
78
signals:
75
79
    void sendNotify(const QString&);
76
80
    void tickProgress();
77
81
    void waitShow(bool);
 
82
    void netProgress(long long int, long long int);
78
83
 
79
84
protected:
80
85
    static const int smax_actionstring;