Reserve MAP_DYNAMIC, fix some MAPSEC displays not updating, new error messages/handling

This commit is contained in:
GriffinR
2024-12-06 12:29:40 -05:00
parent 435d22c63a
commit 391f7b1685
11 changed files with 179 additions and 91 deletions

View File

@@ -349,7 +349,9 @@ private:
void clearProjectUI();
void openNewMapDialog();
void openDuplicateMapDialog(const QString &mapName);
void openNewLayoutDialog();
void openDuplicateLayoutDialog(const QString &layoutId);
void openSubWindow(QWidget * window);
void scrollMapList(MapTree *list, const QString &itemName);
void scrollMapListToCurrentMap(MapTree *list);
@@ -360,6 +362,7 @@ private:
bool openProject(QString dir, bool initial = false);
bool closeProject();
void showProjectOpenFailure();
void showMapsExcludedAlert(const QStringList &excludedMapNames);
bool setInitialMap();
void saveGlobalConfigs();
@@ -408,7 +411,7 @@ private:
void scrollMetatileSelectorToSelection();
MapListToolBar* getCurrentMapListToolBar();
MapTree* getCurrentMapList();
void refreshLocationsComboBox();
void setLocationComboBoxes(const QStringList &locations);
QObjectList shortcutableObjects() const;
void addCustomHeaderValue(QString key, QJsonValue value, bool isNew = false);

View File

@@ -280,6 +280,7 @@ signals:
void mapGroupAdded(const QString &groupName);
void mapSectionAdded(const QString &idName);
void mapSectionIdNamesChanged(const QStringList &idNames);
void mapsExcluded(const QStringList &excludedMapNames);
};
#endif // PROJECT_H

View File

@@ -44,6 +44,8 @@ public:
bool reconfigure();
void setLocations(const QStringList &locations);
QObjectList shortcutableObjects() const;
public slots: