4fadcaf466
Addon class now manages an active project instance that can be accessed with getActiveProject GetDocumentInfo now uses information extracted from the active project Updated ProjectSubscriber and ProjectEvent accordingly "Send" bridge method now throws exception reporting no selected elements (placeholder until we implement a real send process)
45 lines
738 B
C
Executable File
45 lines
738 B
C
Executable File
#ifndef SPECKLE_RESOURCE
|
|
#define SPECKLE_RESOURCE
|
|
|
|
//String resource IDs
|
|
enum SpeckleStringResource {
|
|
titleStringLib = 32700,
|
|
generalStringLib,
|
|
notifyStringLib,
|
|
warningStringLib,
|
|
errorStringLib,
|
|
};
|
|
|
|
|
|
//Title strings (UI title/label for dialogs, controls, menu items etc)
|
|
enum SpeckleTitleString {
|
|
untitledProjectID = 1,
|
|
};
|
|
|
|
|
|
//Help strings
|
|
enum SpecklePromptString {
|
|
};
|
|
|
|
|
|
//Information strings (in UI content, logging, reports)
|
|
enum SpeckleInfoString {
|
|
};
|
|
|
|
|
|
//Notification strings (advice displayed in alerts)
|
|
enum SpeckleNotifyString {
|
|
};
|
|
|
|
|
|
//Warning strings (warnings displayed in alerts)
|
|
enum SpeckleWarningString {
|
|
};
|
|
|
|
|
|
//Error strings (errors displayed in alerts)
|
|
enum SpeckleErrorString {
|
|
};
|
|
|
|
#endif //SPECKLE_RESOURCE
|