1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-28 15:09:43 +00:00

Feat(worldspacewidget.hpp): Add virtual decs for selection functions

This commit is contained in:
Dave Corley 2023-12-22 17:10:55 -06:00
parent cf098033b9
commit 9d155afc15

View file

@ -201,6 +201,12 @@ namespace CSVRender
virtual std::vector<osg::ref_ptr<TagBase>> getSelection(unsigned int elementMask) const = 0;
virtual void selectGroup(const std::vector<std::string>) const = 0;
virtual void hideGroup(const std::vector<std::string>) const = 0;
virtual void unhideAll() const = 0;
virtual std::vector<osg::ref_ptr<TagBase>> getEdited(unsigned int elementMask) const = 0;
virtual void setSubMode(int subMode, unsigned int elementMask) = 0;
@ -300,6 +306,8 @@ namespace CSVRender
void speedMode(bool activate);
void toggleHiddenInstances();
protected slots:
void elementSelectionChanged();