mirror of
https://github.com/chenx-dust/EZ4Connect.git
synced 2026-09-20 10:23:33 +08:00
16 lines
332 B
C++
16 lines
332 B
C++
#ifndef PRESENTATIONHELPERS_H
|
|
#define PRESENTATIONHELPERS_H
|
|
|
|
#include <QString>
|
|
|
|
class QWidget;
|
|
|
|
namespace PresentationHelpers
|
|
{
|
|
void retainSizeWhenHidden(QWidget *widget);
|
|
void showAboutDialog(QWidget *parent = nullptr);
|
|
bool confirmCredentials(const QString &username, const QString &password);
|
|
}
|
|
|
|
#endif // PRESENTATIONHELPERS_H
|