initial commit

This commit is contained in:
mikhail "synzr" 2025-12-25 01:37:49 +05:00
commit 9d20827c46
2469 changed files with 470994 additions and 0 deletions

115
src/mucjoindlg.h Normal file
View file

@ -0,0 +1,115 @@
/*
* mucjoindlg.h
* Copyright (C) 2001-2008 Justin Karneges, Michail Pishchagin
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef MUCJOINDLG_H
#define MUCJOINDLG_H
#include <QDialog>
#ifndef YAPSI
#include "ui_mucjoin.h"
#endif
class PsiCon;
class QString;
class PsiAccount;
#include "xmpp_jid.h"
#ifdef YAPSI
#include "yawindow.h"
typedef YaWindow BaseMucJoinDlgBaseClass;
#else
typedef QDialog BaseMucJoinDlgBaseClass;
#endif
class BaseMucJoinDlg : public BaseMucJoinDlgBaseClass
{
Q_OBJECT
protected:
BaseMucJoinDlg();
public:
static BaseMucJoinDlg* create(PsiCon* controller, PsiAccount* defaultAccount);
~BaseMucJoinDlg();
virtual void setAccount(PsiAccount* account) = 0;
virtual void setJid(const XMPP::Jid& jid) = 0;
virtual void setNick(const QString nick) = 0;
virtual void setPassword(const QString& password) = 0;
virtual QString title() const = 0;
virtual QString password() const = 0;
virtual void joined() = 0;
virtual void error(int, const QString &) = 0;
public slots:
// virtual void done(int) = 0;
virtual bool doJoinBookmark() = 0;
};
#ifndef YAPSI
class MUCJoinDlg : public BaseMucJoinDlg
{
Q_OBJECT
private:
MUCJoinDlg(PsiCon *, PsiAccount *);
public:
~MUCJoinDlg();
// reimplemented
void setAccount(PsiAccount* account);
void setJid(const XMPP::Jid& jid);
void setNick(const QString nick);
void setPassword(const QString& password);
// reimplemented
void joined();
void error(int, const QString &);
public slots:
// void done(int);
void doJoin();
// reimplemented
void accept();
private slots:
void updateIdentity(PsiAccount *);
void updateIdentityVisibility();
void pa_disconnected();
void recent_activated(int);
private:
Ui::MUCJoin ui_;
PsiCon* controller_;
PsiAccount* account_;
QPushButton* joinButton_;
XMPP::Jid jid_;
void disableWidgets();
void enableWidgets();
void setWidgetsEnabled(bool enabled);
friend class BaseMucJoinDlg;
};
#endif
#endif