~ubuntu-branches/ubuntu/maverick/psi/maverick

« back to all changes in this revision

Viewing changes to src/psicon.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2006-01-20 00:20:36 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060120002036-7nw6yo6totip0ee5
Tags: 0.10-2
* Added upstream changelog (Closes: Bug#327748)
* Mention --no-gpg and --no-gpg-agent in manpage (Closes: Bug#204416)

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
class QThread;
43
43
class PsiActionList;
44
44
class PsiToolBar;
 
45
class   TabDlg;
 
46
class ChatDlg;
45
47
 
46
48
namespace OpenPGP
47
49
{
92
94
        ProxyManager *proxy() const;
93
95
        FileTransDlg *ftdlg() const;
94
96
 
 
97
        TabDlg* getTabs();
 
98
        TabDlg* newTabs();
 
99
        bool isChatTabbed(ChatDlg*);
 
100
        bool isChatActiveWindow(ChatDlg*);
 
101
        ChatDlg* getChatInTabs(QString);
 
102
        TabDlg* getManagingTabs(ChatDlg*);
 
103
        QPtrList<TabDlg>* getTabSets();
 
104
 
95
105
        QWidget *dialogFind(const char *className);
96
106
        void dialogRegister(QWidget *w);
97
107
        void dialogUnregister(QWidget *w);
146
156
        QWidget *doToolbars();
147
157
 
148
158
private slots:
 
159
        void doSleep();
 
160
        void doWakeup();
149
161
        void closeProgram();
150
162
        void changeProfile();
151
163
        void doManageAccounts();
163
175
        void pgp_initFinished(bool, const QString &);
164
176
        void pgp_keysUpdated();
165
177
        void proxy_settingsChanged();
 
178
        void accel_activated(int);
166
179
        void updateMainwinStatus();
 
180
        void tabDying(TabDlg*);
167
181
 
168
182
        void mainWinGeomChanged(int x, int y, int w, int h);
169
183