|
|
@ -23,25 +23,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
#include "AuthDialog.h"
|
|
|
|
#include "AuthDialog.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QProcess>
|
|
|
|
#include <TQtCore/TQProcess>
|
|
|
|
#include <QtGui/QPainter>
|
|
|
|
#include <TQtGui/TQPainter>
|
|
|
|
#include <QtGui/QStandardItemModel>
|
|
|
|
#include <TQtGui/TQStandardItemModel>
|
|
|
|
#include <KDebug>
|
|
|
|
#include <KDebug>
|
|
|
|
|
|
|
|
|
|
|
|
#include <KToolInvocation>
|
|
|
|
#include <KToolInvocation>
|
|
|
|
#include <KUser>
|
|
|
|
#include <KUser>
|
|
|
|
|
|
|
|
|
|
|
|
#include <PolkitQt1/Authority>
|
|
|
|
#include <PolkitTQt1/Authority>
|
|
|
|
#include <PolkitQt1/Details>
|
|
|
|
#include <PolkitTQt1/Details>
|
|
|
|
|
|
|
|
|
|
|
|
#include <KWindowSystem>
|
|
|
|
#include <KWindowSystem>
|
|
|
|
#include <KNotification>
|
|
|
|
#include <KNotification>
|
|
|
|
|
|
|
|
|
|
|
|
AuthDialog::AuthDialog(const QString &actionId,
|
|
|
|
AuthDialog::AuthDialog(const TQString &actionId,
|
|
|
|
const QString &message,
|
|
|
|
const TQString &message,
|
|
|
|
const QString &iconName,
|
|
|
|
const TQString &iconName,
|
|
|
|
const PolkitQt1::Details &details,
|
|
|
|
const PolkitTQt1::Details &details,
|
|
|
|
const PolkitQt1::Identity::List &identities,
|
|
|
|
const PolkitTQt1::Identity::List &identities,
|
|
|
|
WId parent)
|
|
|
|
WId parent)
|
|
|
|
: KDialog(0)
|
|
|
|
: KDialog(0)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -71,29 +71,29 @@ AuthDialog::AuthDialog(const QString &actionId,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// loads the standard key icon
|
|
|
|
// loads the standard key icon
|
|
|
|
QPixmap icon = KIconLoader::global()->loadIcon("dialog-password",
|
|
|
|
TQPixmap icon = KIconLoader::global()->loadIcon("dialog-password",
|
|
|
|
KIconLoader::NoGroup,
|
|
|
|
KIconLoader::NoGroup,
|
|
|
|
KIconLoader::SizeHuge,
|
|
|
|
KIconLoader::SizeHuge,
|
|
|
|
KIconLoader::DefaultState);
|
|
|
|
KIconLoader::DefaultState);
|
|
|
|
// create a painter to paint the action icon over the key icon
|
|
|
|
// create a painter to paint the action icon over the key icon
|
|
|
|
QPainter painter(&icon);
|
|
|
|
TQPainter painter(&icon);
|
|
|
|
const int iconSize = icon.size().width();
|
|
|
|
const int iconSize = icon.size().width();
|
|
|
|
// the the emblem icon to size 32
|
|
|
|
// the the emblem icon to size 32
|
|
|
|
int overlaySize = 32;
|
|
|
|
int overlaySize = 32;
|
|
|
|
// try to load the action icon
|
|
|
|
// try to load the action icon
|
|
|
|
const QPixmap pixmap = KIconLoader::global()->loadIcon(iconName,
|
|
|
|
const TQPixmap pixmap = KIconLoader::global()->loadIcon(iconName,
|
|
|
|
KIconLoader::NoGroup,
|
|
|
|
KIconLoader::NoGroup,
|
|
|
|
overlaySize,
|
|
|
|
overlaySize,
|
|
|
|
KIconLoader::DefaultState,
|
|
|
|
KIconLoader::DefaultState,
|
|
|
|
QStringList(),
|
|
|
|
TQStringList(),
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
true);
|
|
|
|
true);
|
|
|
|
// if we're able to load the action icon paint it over the
|
|
|
|
// if we're able to load the action icon paint it over the
|
|
|
|
// key icon.
|
|
|
|
// key icon.
|
|
|
|
if (!pixmap.isNull()) {
|
|
|
|
if (!pixmap.isNull()) {
|
|
|
|
QPoint startPoint;
|
|
|
|
TQPoint startPoint;
|
|
|
|
// bottom right corner
|
|
|
|
// bottom right corner
|
|
|
|
startPoint = QPoint(iconSize - overlaySize - 2,
|
|
|
|
startPoint = TQPoint(iconSize - overlaySize - 2,
|
|
|
|
iconSize - overlaySize - 2);
|
|
|
|
iconSize - overlaySize - 2);
|
|
|
|
painter.drawPixmap(startPoint, pixmap);
|
|
|
|
painter.drawPixmap(startPoint, pixmap);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -102,7 +102,7 @@ AuthDialog::AuthDialog(const QString &actionId,
|
|
|
|
lblPixmap->setPixmap(icon);
|
|
|
|
lblPixmap->setPixmap(icon);
|
|
|
|
|
|
|
|
|
|
|
|
// find action description for actionId
|
|
|
|
// find action description for actionId
|
|
|
|
foreach(const PolkitQt1::ActionDescription &desc, PolkitQt1::Authority::instance()->enumerateActionsSync()) {
|
|
|
|
foreach(const PolkitTQt1::ActionDescription &desc, PolkitTQt1::Authority::instance()->enumerateActionsSync()) {
|
|
|
|
if (actionId == desc.actionId()) {
|
|
|
|
if (actionId == desc.actionId()) {
|
|
|
|
m_actionDescription = desc;
|
|
|
|
m_actionDescription = desc;
|
|
|
|
kDebug() << "Action description has been found" ;
|
|
|
|
kDebug() << "Action description has been found" ;
|
|
|
@ -125,7 +125,7 @@ AuthDialog::AuthDialog(const QString &actionId,
|
|
|
|
|
|
|
|
|
|
|
|
createUserCB(identities);
|
|
|
|
createUserCB(identities);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
userCB->addItem("", QVariant(identities[0].toString()));
|
|
|
|
userCB->addItem("", TQVariant(identities[0].toString()));
|
|
|
|
userCB->setCurrentIndex(0);
|
|
|
|
userCB->setCurrentIndex(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -141,11 +141,11 @@ void AuthDialog::accept()
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AuthDialog::setRequest(const QString &request, bool requiresAdmin)
|
|
|
|
void AuthDialog::setRequest(const TQString &request, bool requiresAdmin)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
kDebug() << request;
|
|
|
|
kDebug() << request;
|
|
|
|
PolkitQt1::Identity identity = adminUserSelected();
|
|
|
|
PolkitTQt1::Identity identity = adminUserSelected();
|
|
|
|
if (request.startsWith(QLatin1String("password:"), Qt::CaseInsensitive)) {
|
|
|
|
if (request.startsWith(TQLatin1String("password:"), TQt::CaseInsensitive)) {
|
|
|
|
if (requiresAdmin) {
|
|
|
|
if (requiresAdmin) {
|
|
|
|
if (!identity.isValid()) {
|
|
|
|
if (!identity.isValid()) {
|
|
|
|
lblPassword->setText(i18n("Password for root:"));
|
|
|
|
lblPassword->setText(i18n("Password for root:"));
|
|
|
@ -156,8 +156,8 @@ void AuthDialog::setRequest(const QString &request, bool requiresAdmin)
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
lblPassword->setText(i18n("Password:"));
|
|
|
|
lblPassword->setText(i18n("Password:"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (request.startsWith(QLatin1String("password or swipe finger:"),
|
|
|
|
} else if (request.startsWith(TQLatin1String("password or swipe finger:"),
|
|
|
|
Qt::CaseInsensitive)) {
|
|
|
|
TQt::CaseInsensitive)) {
|
|
|
|
if (requiresAdmin) {
|
|
|
|
if (requiresAdmin) {
|
|
|
|
if (!identity.isValid()) {
|
|
|
|
if (!identity.isValid()) {
|
|
|
|
lblPassword->setText(i18n("Password or swipe finger for root:"));
|
|
|
|
lblPassword->setText(i18n("Password or swipe finger for root:"));
|
|
|
@ -180,7 +180,7 @@ void AuthDialog::setOptions()
|
|
|
|
" Authentication is required to perform this action."));
|
|
|
|
" Authentication is required to perform this action."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AuthDialog::createUserCB(const PolkitQt1::Identity::List &identities)
|
|
|
|
void AuthDialog::createUserCB(const PolkitTQt1::Identity::List &identities)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/* if we've already built the list of admin users once, then avoid
|
|
|
|
/* if we've already built the list of admin users once, then avoid
|
|
|
|
* doing it again.. (this is mainly used when the user entered the
|
|
|
|
* doing it again.. (this is mainly used when the user entered the
|
|
|
@ -191,14 +191,14 @@ void AuthDialog::createUserCB(const PolkitQt1::Identity::List &identities)
|
|
|
|
userCB->clear();
|
|
|
|
userCB->clear();
|
|
|
|
|
|
|
|
|
|
|
|
// Adds a Dummy user
|
|
|
|
// Adds a Dummy user
|
|
|
|
userCB->addItem(i18n("Select User"), qVariantFromValue<QString> (QString()));
|
|
|
|
userCB->addItem(i18n("Select User"), qVariantFromValue<TQString> (TQString()));
|
|
|
|
qobject_cast<QStandardItemModel *>(userCB->model())->item(userCB->count()-1)->setEnabled(false);
|
|
|
|
qobject_cast<TQStandardItemModel *>(userCB->model())->item(userCB->count()-1)->setEnabled(false);
|
|
|
|
|
|
|
|
|
|
|
|
// For each user
|
|
|
|
// For each user
|
|
|
|
int index = 1; // Start at 1 because of the "Select User" entry
|
|
|
|
int index = 1; // Start at 1 because of the "Select User" entry
|
|
|
|
int currentUserIndex = -1;
|
|
|
|
int currentUserIndex = -1;
|
|
|
|
const KUser currentUser;
|
|
|
|
const KUser currentUser;
|
|
|
|
foreach(const PolkitQt1::Identity &identity, identities) {
|
|
|
|
foreach(const PolkitTQt1::Identity &identity, identities) {
|
|
|
|
// First check to see if the user is valid
|
|
|
|
// First check to see if the user is valid
|
|
|
|
kDebug() << "User: " << identity.toString();
|
|
|
|
kDebug() << "User: " << identity.toString();
|
|
|
|
const KUser user(identity.toString().remove("unix-user:"));
|
|
|
|
const KUser user(identity.toString().remove("unix-user:"));
|
|
|
@ -208,7 +208,7 @@ void AuthDialog::createUserCB(const PolkitQt1::Identity::List &identities)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Display user Full Name IF available
|
|
|
|
// Display user Full Name IF available
|
|
|
|
QString display;
|
|
|
|
TQString display;
|
|
|
|
if (!user.property(KUser::FullName).toString().isEmpty()) {
|
|
|
|
if (!user.property(KUser::FullName).toString().isEmpty()) {
|
|
|
|
display = i18nc("%1 is the full user name, %2 is the user login name", "%1 (%2)", user.property(KUser::FullName).toString(), user.loginName());
|
|
|
|
display = i18nc("%1 is the full user name, %2 is the user login name", "%1 (%2)", user.property(KUser::FullName).toString(), user.loginName());
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
@ -223,7 +223,7 @@ void AuthDialog::createUserCB(const PolkitQt1::Identity::List &identities)
|
|
|
|
icon = KIcon("user-identity");
|
|
|
|
icon = KIcon("user-identity");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// appends the user item
|
|
|
|
// appends the user item
|
|
|
|
userCB->addItem(icon, display, qVariantFromValue<QString> (identity.toString()));
|
|
|
|
userCB->addItem(icon, display, qVariantFromValue<TQString> (identity.toString()));
|
|
|
|
|
|
|
|
|
|
|
|
if (user == currentUser) {
|
|
|
|
if (user == currentUser) {
|
|
|
|
currentUserIndex = index;
|
|
|
|
currentUserIndex = index;
|
|
|
@ -239,20 +239,20 @@ void AuthDialog::createUserCB(const PolkitQt1::Identity::List &identities)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PolkitQt1::Identity AuthDialog::adminUserSelected() const
|
|
|
|
PolkitTQt1::Identity AuthDialog::adminUserSelected() const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (userCB->currentIndex() == -1)
|
|
|
|
if (userCB->currentIndex() == -1)
|
|
|
|
return PolkitQt1::Identity();
|
|
|
|
return PolkitTQt1::Identity();
|
|
|
|
|
|
|
|
|
|
|
|
QString id = userCB->itemData(userCB->currentIndex()).toString();
|
|
|
|
TQString id = userCB->itemData(userCB->currentIndex()).toString();
|
|
|
|
if (id.isEmpty())
|
|
|
|
if (id.isEmpty())
|
|
|
|
return PolkitQt1::Identity();
|
|
|
|
return PolkitTQt1::Identity();
|
|
|
|
return PolkitQt1::Identity::fromString(id);
|
|
|
|
return PolkitTQt1::Identity::fromString(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AuthDialog::on_userCB_currentIndexChanged(int /*index*/)
|
|
|
|
void AuthDialog::on_userCB_currentIndexChanged(int /*index*/)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
PolkitQt1::Identity identity = adminUserSelected();
|
|
|
|
PolkitTQt1::Identity identity = adminUserSelected();
|
|
|
|
// itemData is Null when "Select user" is selected
|
|
|
|
// itemData is Null when "Select user" is selected
|
|
|
|
if (!identity.isValid()) {
|
|
|
|
if (!identity.isValid()) {
|
|
|
|
lePassword->setEnabled(false);
|
|
|
|
lePassword->setEnabled(false);
|
|
|
@ -269,7 +269,7 @@ void AuthDialog::on_userCB_currentIndexChanged(int /*index*/)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString AuthDialog::password() const
|
|
|
|
TQString AuthDialog::password() const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return lePassword->text();
|
|
|
|
return lePassword->text();
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -277,7 +277,7 @@ QString AuthDialog::password() const
|
|
|
|
void AuthDialog::authenticationFailure()
|
|
|
|
void AuthDialog::authenticationFailure()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
errorMessageKTW->setText(i18n("Authentication failure, please try again."), KTitleWidget::ErrorMessage);
|
|
|
|
errorMessageKTW->setText(i18n("Authentication failure, please try again."), KTitleWidget::ErrorMessage);
|
|
|
|
QFont bold = font();
|
|
|
|
TQFont bold = font();
|
|
|
|
bold.setBold(true);
|
|
|
|
bold.setBold(true);
|
|
|
|
lblPassword->setFont(bold);
|
|
|
|
lblPassword->setFont(bold);
|
|
|
|
lePassword->setEnabled(true);
|
|
|
|
lePassword->setEnabled(true);
|
|
|
@ -285,7 +285,7 @@ void AuthDialog::authenticationFailure()
|
|
|
|
lePassword->setFocus();
|
|
|
|
lePassword->setFocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AuthDialog::showEvent(QShowEvent *event)
|
|
|
|
void AuthDialog::showEvent(TQShowEvent *event)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
KDialog::showEvent(event);
|
|
|
|
KDialog::showEvent(event);
|
|
|
|
if (winId() != KWindowSystem::activeWindow())
|
|
|
|
if (winId() != KWindowSystem::activeWindow())
|
|
|
@ -294,12 +294,12 @@ void AuthDialog::showEvent(QShowEvent *event)
|
|
|
|
KNotification::Persistent | KNotification::CloseWhenWidgetActivated);
|
|
|
|
KNotification::Persistent | KNotification::CloseWhenWidgetActivated);
|
|
|
|
kDebug() << "Notificate: " << notification->eventId();
|
|
|
|
kDebug() << "Notificate: " << notification->eventId();
|
|
|
|
notification->setText(m_message);
|
|
|
|
notification->setText(m_message);
|
|
|
|
QPixmap icon = KIconLoader::global()->loadIcon("dialog-password",
|
|
|
|
TQPixmap icon = KIconLoader::global()->loadIcon("dialog-password",
|
|
|
|
KIconLoader::NoGroup,
|
|
|
|
KIconLoader::NoGroup,
|
|
|
|
KIconLoader::SizeHuge,
|
|
|
|
KIconLoader::SizeHuge,
|
|
|
|
KIconLoader::DefaultState);
|
|
|
|
KIconLoader::DefaultState);
|
|
|
|
notification->setPixmap(icon);
|
|
|
|
notification->setPixmap(icon);
|
|
|
|
notification->setActions(QStringList() << i18n("Switch to dialog") << i18n("Cancel"));
|
|
|
|
notification->setActions(TQStringList() << i18n("Switch to dialog") << i18n("Cancel"));
|
|
|
|
|
|
|
|
|
|
|
|
connect(notification, SIGNAL(activated(uint)), this, SLOT(notificationActivated(uint)));
|
|
|
|
connect(notification, SIGNAL(activated(uint)), this, SLOT(notificationActivated(uint)));
|
|
|
|
notification->sendEvent();
|
|
|
|
notification->sendEvent();
|
|
|
@ -316,25 +316,25 @@ void AuthDialog::notificationActivated(unsigned int action)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AuthDetails::AuthDetails(const PolkitQt1::Details &details,
|
|
|
|
AuthDetails::AuthDetails(const PolkitTQt1::Details &details,
|
|
|
|
const PolkitQt1::ActionDescription &actionDescription,
|
|
|
|
const PolkitTQt1::ActionDescription &actionDescription,
|
|
|
|
const QString &appname,
|
|
|
|
const TQString &appname,
|
|
|
|
QWidget *parent)
|
|
|
|
TQWidget *parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
: TQWidget(parent)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
setupUi(this);
|
|
|
|
|
|
|
|
|
|
|
|
app_label->setText(appname);
|
|
|
|
app_label->setText(appname);
|
|
|
|
|
|
|
|
|
|
|
|
foreach(const QString &key, details.keys()) { //krazy:exclude=foreach (Details is not a map/hash, but rather a method)
|
|
|
|
foreach(const TQString &key, details.keys()) { //krazy:exclude=foreach (Details is not a map/hash, but rather a method)
|
|
|
|
int row = gridLayout->rowCount() + 1;
|
|
|
|
int row = gridLayout->rowCount() + 1;
|
|
|
|
|
|
|
|
|
|
|
|
QLabel *keyLabel = new QLabel(this);
|
|
|
|
TQLabel *keyLabel = new TQLabel(this);
|
|
|
|
keyLabel->setText(i18nc("%1 is the name of a detail about the current action "
|
|
|
|
keyLabel->setText(i18nc("%1 is the name of a detail about the current action "
|
|
|
|
"provided by polkit", "%1:", key));
|
|
|
|
"provided by polkit", "%1:", key));
|
|
|
|
gridLayout->addWidget(keyLabel, row, 0);
|
|
|
|
gridLayout->addWidget(keyLabel, row, 0);
|
|
|
|
|
|
|
|
|
|
|
|
QLabel *valueLabel = new QLabel(this);
|
|
|
|
TQLabel *valueLabel = new TQLabel(this);
|
|
|
|
valueLabel->setText(details.lookup(key));
|
|
|
|
valueLabel->setText(details.lookup(key));
|
|
|
|
gridLayout->addWidget(valueLabel, row, 1);
|
|
|
|
gridLayout->addWidget(valueLabel, row, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -344,8 +344,8 @@ AuthDetails::AuthDetails(const PolkitQt1::Details &details,
|
|
|
|
action_label->setTipText(i18n("Click to edit %1", actionDescription.actionId()));
|
|
|
|
action_label->setTipText(i18n("Click to edit %1", actionDescription.actionId()));
|
|
|
|
action_label->setUrl(actionDescription.actionId());
|
|
|
|
action_label->setUrl(actionDescription.actionId());
|
|
|
|
|
|
|
|
|
|
|
|
QString vendor = actionDescription.vendorName();
|
|
|
|
TQString vendor = actionDescription.vendorName();
|
|
|
|
QString vendorUrl = actionDescription.vendorUrl();
|
|
|
|
TQString vendorUrl = actionDescription.vendorUrl();
|
|
|
|
|
|
|
|
|
|
|
|
if (!vendor.isEmpty()) {
|
|
|
|
if (!vendor.isEmpty()) {
|
|
|
|
vendorUL->setText(vendor);
|
|
|
|
vendorUL->setText(vendor);
|
|
|
@ -360,18 +360,18 @@ AuthDetails::AuthDetails(const PolkitQt1::Details &details,
|
|
|
|
vendorUL->hide();
|
|
|
|
vendorUL->hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
connect(vendorUL, SIGNAL(leftClickedUrl(QString)), SLOT(openUrl(QString)));
|
|
|
|
connect(vendorUL, SIGNAL(leftClickedUrl(TQString)), SLOT(openUrl(TQString)));
|
|
|
|
connect(action_label, SIGNAL(leftClickedUrl(QString)), SLOT(openAction(QString)));
|
|
|
|
connect(action_label, SIGNAL(leftClickedUrl(TQString)), SLOT(openAction(TQString)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AuthDetails::openUrl(const QString& url)
|
|
|
|
void AuthDetails::openUrl(const TQString& url)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
KToolInvocation::invokeBrowser(url);
|
|
|
|
KToolInvocation::invokeBrowser(url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AuthDetails::openAction(const QString &url)
|
|
|
|
void AuthDetails::openAction(const TQString &url)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
QProcess::startDetached("polkit-kde-authorization", QStringList() << url);
|
|
|
|
TQProcess::startDetached("polkit-kde-authorization", TQStringList() << url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#include "AuthDialog.moc"
|
|
|
|
#include "AuthDialog.moc"
|
|
|
|