Files
Ralph Wessel 4ff7d68516 ElementHighlighter ensures layers are visible (on request) before selecting target elements
Updates to allow attribute changes to be written
Workaround to force VS to recognise template specialisations
2024-11-20 21:49:47 +00:00

67 lines
1.0 KiB
C++
Executable File

#ifndef CONNECTOR_RESOURCE
#define CONNECTOR_RESOURCE
constexpr short connectorResourceId = 32500;
//Addon resource ID's, e.g. menus
enum AddonResource {
speckleMenu = 32500,
};
//Menu item help
enum HelpString {
speckleMenuHelp = 32550,
};
//String resource IDs
enum StringResource {
titleString = 32600,
generalString,
notifyString,
warningString,
errorString,
};
//Title strings (UI title/label for dialogs, controls, menu items etc)
enum TitleString {
addonNameID = 1,
addonDescriptionID,
noStoreyID,
showLayersID,
};
//Help strings
enum PromptString {
};
//Information strings (in UI content, logging, reports)
enum GeneralString {
};
//Notification strings (advice displayed in alerts)
enum NotifyString {
showHiddenLayersID = 1,
};
//Warning strings (warnings displayed in alerts)
enum WarningString {
};
//Error strings (errors displayed in alerts)
enum ErrorString {
noSelectedModelItemsID = 1,
modelCardNotFoundID,
noProjectOpenID,
accountNotFoundID,
elementTypeNotConvertedID,
};
#endif //CONNECTOR_RESOURCE