Initial commit

This commit is contained in:
2025-12-17 16:47:48 +00:00
commit 13813f3363
4964 changed files with 1079753 additions and 0 deletions

View File

@@ -0,0 +1,95 @@
#include "KeepSavedChangesDialog.hpp"
#include "AuthenticationHelper.hpp"
#include "RobloxDocManager.hpp"
#include "RobloxStudioVerbs.hpp"
#include "RobloxIDEDoc.hpp"
#include "DataModel/DataModel.hpp"
#include "RobloxMainWindow.hpp"
// Qt Headers
#include <QMessageBox>
KeepSavedChangesDialog::KeepSavedChangesDialog(QWidget* parent)
: QMessageBox(parent)
, dialogResult(Cancel)
{
setAttribute(Qt::WA_DeleteOnClose, false);
setIcon(QMessageBox::Question);
QPushButton* button = addButton("Save Online", QMessageBox::AcceptRole);
button->setDefault(true);
addButton("Discard", QMessageBox::DestructiveRole);
addButton("Cancel", QMessageBox::RejectRole);
setText("Would you like to save these changes?");
connect(this, SIGNAL(buttonClicked(QAbstractButton*)), this, SLOT(onClicked(QAbstractButton*)));
}
KeepSavedChangesDialog::~KeepSavedChangesDialog() {}
void KeepSavedChangesDialog::onClicked(QAbstractButton* button)
{
if (buttonRole(button) == QMessageBox::AcceptRole)
onSave();
else if (buttonRole(button) == QMessageBox::DestructiveRole)
onDiscard();
else
onCancel();
}
void KeepSavedChangesDialog::onSave()
{
if (!AuthenticationHelper::Instance().verifyUserAndAuthenticate() || !AuthenticationHelper::validateMachine())
{
dialogResult = Fail;
close();
return;
}
try
{
RobloxIDEDoc* pIDEDoc = RobloxDocManager::Instance().getPlayDoc();
if (!pIDEDoc)
{
dialogResult = Fail;
close();
return;
}
// need to save with edit datamodel
shared_ptr<Aya::DataModel> dataModel = pIDEDoc->getEditDataModel();
PublishToRobloxVerb* pPublishVerb = dataModel ? dynamic_cast<PublishToRobloxVerb*>(dataModel->getVerb("PublishToRobloxVerb")) : NULL;
if (!pPublishVerb)
{
dialogResult = Fail;
close();
return;
}
pPublishVerb->doIt(dataModel.get());
}
catch (std::exception&)
{
dialogResult = Fail;
}
dialogResult = Save;
close();
}
void KeepSavedChangesDialog::onDiscard()
{
dialogResult = Discard;
close();
}
void KeepSavedChangesDialog::onCancel()
{
dialogResult = Cancel;
close();
}