generate ui core flows

This commit is contained in:
talksik
2026-02-01 13:21:21 -08:00
parent 0a3b315652
commit 9e5f0a5d2b
20 changed files with 1433 additions and 14 deletions
+28
View File
@@ -0,0 +1,28 @@
#ifndef CREATESESSIONDIALOG_H
#define CREATESESSIONDIALOG_H
#include <QDialog>
namespace Ui {
class CreateSessionDialog;
}
class CreateSessionDialog : public QDialog
{
Q_OBJECT
public:
explicit CreateSessionDialog(QWidget *parent = nullptr);
~CreateSessionDialog();
QString getOneliner() const;
QString getContent() const;
private slots:
void onOnelinerChanged(const QString &text);
private:
Ui::CreateSessionDialog *ui;
};
#endif // CREATESESSIONDIALOG_H