99581bc990
- Updated header inclusions from QtGui to QtWidgets for consistency and compatibility with Qt 5 and later. - Replaced deprecated QApplication::desktop() with QApplication::primaryScreen() for obtaining screen DPI. - Modified MyOutputHandler to use QMessageLogContext and QString for improved logging. - Changed QMatrix to QTransform for image rotation in ImageCutout class. - Updated various debug statements to use toLocal8Bit() instead of toAscii() for better string handling. - Refactored several classes to use QElapsedTimer instead of QTime for performance measurement. - Ensured all operator overloads in Section and Tag classes are marked as const for better const-correctness.
68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
//! \file authenticationdialog.h
|
|
/************************************************************************
|
|
* $Id: authenticationdialog.h 661 2011-04-05 13:16:53Z elzubeir $
|
|
*
|
|
* ------------
|
|
* Description:
|
|
* ------------
|
|
*
|
|
* (C) Copyright 2009-2011 ALLCONTENT. All rights reserved.
|
|
*
|
|
* -----------------
|
|
* Revision Details: (Updated by Revision Control System)
|
|
* -----------------
|
|
* $Date: 2011-04-05 17:16:53 +0400 (Tue, 05 Apr 2011) $
|
|
* $Author: elzubeir $
|
|
* $Revision: 661 $
|
|
* $HeadURL: file:///opt/svn/socialhose/trunk/app/ClippingStation/authenticationdialog.h $
|
|
*
|
|
************************************************************************/
|
|
|
|
#ifndef AUTHENTICATIONDIALOG_H
|
|
#define AUTHENTICATIONDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AuthenticationDialog;
|
|
}
|
|
|
|
//! \class AuthenticationDialog
|
|
//! \brief This class creates a username/password input dialog,
|
|
//! and passes the value obtained to the main application for verification
|
|
//! \author elzubeir
|
|
|
|
class AuthenticationDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
//! \fn AuthenticationDialog(QWidget *parent = 0)
|
|
//! default constructor
|
|
//! \param[in] parent QWidget pointer set to the calling widget
|
|
//! \author elzubeir
|
|
AuthenticationDialog(QWidget *parent = 0);
|
|
|
|
//! \fn ~AuthenticationDialog()
|
|
//! destructor
|
|
//! \author elzubeir
|
|
~AuthenticationDialog();
|
|
|
|
protected:
|
|
//! \fn accept()
|
|
//! Overrides the base function, and sets the m_username/m_password from the users input, and then calls
|
|
//! the base calss's accept method
|
|
//! \author elzubeir
|
|
void accept();
|
|
|
|
public:
|
|
//! saves the username obtained from the user
|
|
QString m_username;
|
|
//! saves the password obtained from the user
|
|
QString m_password;
|
|
|
|
private:
|
|
//! pointer to the Qt desginer UI class object
|
|
Ui::AuthenticationDialog *m_ui;
|
|
};
|
|
|
|
#endif // AUTHENTICATIONDIALOG_H
|