Files
EZ4Connect/presentation/presentationhelpers.h
2026-08-10 19:04:20 +08:00

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