~ubuntu-branches/ubuntu/feisty/psi/feisty

« back to all changes in this revision

Viewing changes to cutestuff/socksd.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-09-14 16:33:49 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050914163349-3zacov4afysz5cw5
Tags: 0.9.3-2ubuntu1
* Sync with debian
* Applied patch to psi.desktop to start psi without gpg-agent use (known
  issue)
* Updated README.Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef TEST_H
 
2
#define TEST_H
 
3
 
 
4
#include<qobject.h>
 
5
 
 
6
class App : public QObject
 
7
{
 
8
        Q_OBJECT
 
9
public:
 
10
        App(int, const QString &, const QString &);
 
11
        ~App();
 
12
 
 
13
signals:
 
14
        void quit();
 
15
 
 
16
private slots:
 
17
        void st_connectionClosed();
 
18
        void st_delayedCloseFinished();
 
19
        void st_readyRead();
 
20
        void st_error(int);
 
21
 
 
22
        void con_connectionClosed();
 
23
        void con_readyRead();
 
24
 
 
25
        void ss_incomingReady();
 
26
        void sc_incomingMethods(int);
 
27
        void sc_incomingAuth(const QString &user, const QString &pass);
 
28
        void sc_incomingRequest(const QString &host, int port);
 
29
        void sc_error(int);
 
30
 
 
31
private:
 
32
        class Private;
 
33
        Private *d;
 
34
};
 
35
 
 
36
#endif