mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
65 lines
2.2 KiB
C++
65 lines
2.2 KiB
C++
/*
|
|
* AccountSettingsModel.hpp
|
|
* Copyright (C) 2017 Belledonne Communications, Grenoble, France
|
|
*
|
|
* 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 program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Created on: February 2, 2017
|
|
* Author: Ronan Abhamon
|
|
*/
|
|
|
|
#ifndef ACCOUNT_SETTINGS_MODEL_H_
|
|
#define ACCOUNT_SETTINGS_MODEL_H_
|
|
|
|
#include "../presence/Presence.hpp"
|
|
|
|
#include <QObject>
|
|
|
|
// =============================================================================
|
|
|
|
class AccountSettingsModel : public QObject {
|
|
Q_OBJECT;
|
|
|
|
Q_PROPERTY(QString username READ getUsername WRITE setUsername NOTIFY accountUpdated);
|
|
Q_PROPERTY(QString sipAddress READ getSipAddress NOTIFY accountUpdated);
|
|
Q_PROPERTY(QVariantList accounts READ getAccounts NOTIFY accountUpdated);
|
|
|
|
Q_PROPERTY(Presence::PresenceLevel presenceLevel READ getPresenceLevel CONSTANT);
|
|
Q_PROPERTY(Presence::PresenceStatus presenceStatus READ getPresenceStatus CONSTANT);
|
|
|
|
public:
|
|
AccountSettingsModel (QObject *parent = Q_NULLPTR) : QObject(parent) {}
|
|
|
|
Q_INVOKABLE void setDefaultProxyConfig (const std::shared_ptr<linphone::ProxyConfig> &proxy_config);
|
|
|
|
signals:
|
|
void accountUpdated ();
|
|
|
|
private:
|
|
QString getUsername () const;
|
|
void setUsername (const QString &username);
|
|
|
|
Presence::PresenceLevel getPresenceLevel () const;
|
|
Presence::PresenceStatus getPresenceStatus () const;
|
|
|
|
QString getSipAddress () const;
|
|
QVariantList getAccounts () const;
|
|
|
|
std::shared_ptr<linphone::Address> getDefaultSipAddress () const;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(std::shared_ptr<linphone::ProxyConfig> );
|
|
|
|
#endif // ACCOUNT_SETTINGS_MODEL_H_
|