47 lines
800 B
C++
47 lines
800 B
C++
#ifndef GENPASS_H
|
|
#define GENPASS_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class GenPass;
|
|
}
|
|
|
|
class GenPass : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit GenPass(QWidget *parent = nullptr);
|
|
~GenPass();
|
|
|
|
private slots:
|
|
void on_pushButton_2_clicked();
|
|
QString NewRandPassword();
|
|
|
|
void on_pushButton_clicked();
|
|
|
|
void on_checkBox_4_stateChanged(int arg1);
|
|
|
|
void on_img_clicked();
|
|
|
|
void on_lineEdit_cursorPositionChanged(int arg1, int arg2);
|
|
|
|
void on_ReFresher_clicked();
|
|
|
|
void on_Copy_clicked();
|
|
|
|
void on_SizeL_cursorPositionChanged(int arg1, int arg2);
|
|
|
|
void on_spinBox_textChanged(const QString &arg1);
|
|
|
|
void on_horizontalSlider_actionTriggered(int action);
|
|
|
|
void on_pushButton_3_clicked();
|
|
|
|
private:
|
|
Ui::GenPass *ui;
|
|
};
|
|
|
|
#endif // GENPASS_H
|