├── .gitignore ├── Directory.Build.props ├── EB_GUIDE_GTF ├── CMakeLists.txt ├── concepts │ ├── BasicExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── BasicExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ ├── 8b9351c1-3bb1-4a01-b2c6-a6872922bcc6.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 0bce8796-116b-49ce-9e25-42f7b06fe6cc.gdata │ │ │ ├── packages │ │ │ │ └── c4b6a050-5732-4f21-be5e-a366b8d98a23.gdata │ │ │ ├── resources │ │ │ │ ├── BasicExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 18aed481-7ccb-4a3a-ab9b-33e679f668f8 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 360dd9ae-f727-444a-aff2-ed700e7ff723.gdata │ │ │ │ │ │ └── f78c357b-2769-4bd3-93b1-8e316ec2ea21.gdata │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── BasicPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── BufferSwapHooksExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── BufferSwapHooksExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 213637f5-75ab-43fa-b66e-485da637e2eb.gdata │ │ │ │ ├── 442ffd93-cc12-45b7-8c11-d4750da84eb5.gdata │ │ │ │ └── d3a8246a-fc27-4845-81e5-95c9c0014261.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 79945a47-cd54-439d-a223-acb499e81d5a.gdata │ │ │ ├── packages │ │ │ │ └── dc60963f-723f-4feb-87b5-05fa4f9059a2.gdata │ │ │ ├── resources │ │ │ │ ├── BufferSwapHooksExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 53663cc9-1e71-4469-a863-91a994084079 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── a7860f6e-3dce-43d8-80c0-ae6a4f02e4d0.gdata │ │ │ │ │ │ └── f62a33a0-f4dd-465e-94ae-34d10eb67fdd.gdata │ │ │ │ └── 87b22cf9-e9dd-4f42-9bfd-71c883cd1125 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 8c932b12-9c51-4a9a-bd31-be002527f433.gdata │ │ │ │ │ └── b57dd4a2-57c0-4a15-a3aa-398f1b0e70a3.gdata │ │ │ ├── templates │ │ │ │ ├── 740846e9-bc76-4da8-835d-586ad4dec9d5.gdata │ │ │ │ └── b787a2b7-20c5-4050-a39f-e8d67bd6fbef.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── BufferSwapHooks.cpp │ │ │ ├── BufferSwapHooks.h │ │ │ ├── BufferSwapHooksPlugin.cpp │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ConfigurationImporterExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ConfigurationImporterExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── d4315087-1c5e-4094-a225-e341ec2b48ba.gdata │ │ │ ├── packages │ │ │ │ └── f5806e8e-e7bb-487b-8381-e3d42d00f920.gdata │ │ │ ├── resources │ │ │ │ ├── ConfigurationImporterExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── customConfiguration.json │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 20ca6f97-0b5c-4682-95c4-22d43e631111.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ConfigurationImporterPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CoreStageExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── CoreStageExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ ├── a8daa817-3d30-47a8-8d1e-7d27def0d2e4.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── fc25b226-3f79-40e7-b9f3-50277c4a4111.gdata │ │ │ ├── packages │ │ │ │ └── 3ac13d10-e3fb-4b1b-95b9-05c6c9e04235.gdata │ │ │ ├── resources │ │ │ │ ├── CoreStageExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ └── c1609a54-2e4e-4f40-9c8b-ad83f3103656 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 1825c3a4-94b5-4639-981e-32dc89d3f1db.gdata │ │ │ │ │ └── 1b932166-c14f-4c90-a2e8-af5c9b91d535.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── EarlyStage.cpp │ │ │ ├── EarlyStage.h │ │ │ ├── EarlyStageProvider.cpp │ │ │ ├── EarlyStageProvider.h │ │ │ ├── LateStage.cpp │ │ │ ├── LateStage.h │ │ │ ├── LateStageProvider.cpp │ │ │ ├── LateStageProvider.h │ │ │ ├── PrepareStageImpl.cpp │ │ │ ├── PrepareStageImpl.h │ │ │ ├── StagePlugin.cpp │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── DependencyResolverExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── DependencyResolverExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 21eaaa14-184e-46fe-8ed7-51d4797092d9.gdata │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── b32f7681-0032-4a23-8aea-fdde0b729556.gdata │ │ │ ├── packages │ │ │ │ └── b1cc00a0-4e1a-4ec4-a445-1e80c8a2aade.gdata │ │ │ ├── resources │ │ │ │ ├── DependencyResolverExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 3cc5639b-90ea-41ab-b02b-13caa1f067b4 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 02b8bced-a1f8-451c-a16f-fd6cc2d41e28.gdata │ │ │ │ │ │ └── 3fef4d80-1714-4449-894e-c9f9ab4ba72a.gdata │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── DependencyResolvingPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ ├── TemperatureConverter.h │ │ │ ├── TemperatureConverterToFahrenheit.cpp │ │ │ ├── TemperatureConverterToFahrenheit.h │ │ │ ├── TemperatureConverterToKelvin.cpp │ │ │ ├── TemperatureConverterToKelvin.h │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ModelStageExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ModelStageExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ ├── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ │ └── b138a406-cc15-4515-8b0a-909d5508b586.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── dfbeb8b1-3298-43d3-99da-37e37ebaba69.gdata │ │ │ ├── packages │ │ │ │ └── a8abe445-f7c8-4fbd-83db-b22663658493.gdata │ │ │ ├── resources │ │ │ │ ├── ModelStageExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ └── ea1c3dfc-66f4-4c39-80d3-21804443f65d │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 22a5e2cc-c44c-4d45-85b4-b0b10fa03e3a.gdata │ │ │ │ │ └── 851d964d-a82e-4c71-8ff6-0c8473ad5725.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── EarlyStage.cpp │ │ │ ├── EarlyStage.h │ │ │ ├── EarlyStageProvider.cpp │ │ │ ├── EarlyStageProvider.h │ │ │ ├── LateStage.cpp │ │ │ ├── LateStage.h │ │ │ ├── LateStageProvider.cpp │ │ │ ├── LateStageProvider.h │ │ │ ├── PreparedStageImpl.cpp │ │ │ ├── PreparedStageImpl.h │ │ │ ├── StagePlugin.cpp │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── SettingsExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── SettingsExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ ├── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ │ └── fe958205-d62b-4901-854c-b805bb29bd97.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 3d772d4b-0a60-42c7-90d7-3f616d6ab9c5.gdata │ │ │ ├── packages │ │ │ │ └── 609b137a-3146-4d7a-ae29-0ff1dfd0681c.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── SettingsExample.dll │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ ├── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ └── 9ddb2831-4d37-44de-b605-3bee18f10a52 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 48b3b188-a9d3-4a86-a7cc-6bd92ce7001d.gdata │ │ │ │ │ └── dac9d7a0-50d9-462c-8ac4-71ef8b097458.gdata │ │ │ ├── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ ├── SettingsPlugin.cpp │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ └── TraceOutputExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ ├── TraceOutputExample.ebguide │ │ ├── configuration │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ ├── 8af2afda-fcf3-48a1-8763-b0a2cc9c6ce8.gdata │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ ├── contexts.gdata │ │ ├── datapool.gdata │ │ ├── descriptors.json │ │ ├── eventgroups.gdata │ │ ├── events.gdata │ │ ├── languages.gdata │ │ ├── modelinterfaces │ │ │ └── userdefined │ │ │ │ └── 1cd28857-f2e2-4727-bb6a-fff229c429af.gdata │ │ ├── packages │ │ │ └── e4612a94-71de-4b44-bebb-df45726777be.gdata │ │ ├── resources │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ ├── TraceOutputExample.dll │ │ │ ├── fonts │ │ │ │ └── PT_Sans.ttf │ │ │ └── images │ │ │ │ └── EB.png │ │ ├── skins.gdata │ │ ├── statemachines │ │ │ ├── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ ├── statemachine.gdata │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── 81c4bd74-abf8-458a-ade2-8d9a0ba2aca1 │ │ │ │ ├── statemachine.gdata │ │ │ │ └── views │ │ │ │ ├── 103df030-cb12-4af7-96c1-1e9e648158e9.gdata │ │ │ │ └── ca7a53a4-a3db-40f3-9616-39e6fb1a8f80.gdata │ │ ├── templates │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ └── tracing.json │ │ ├── readme.md │ │ └── src │ │ ├── CustomTraceOutput.cpp │ │ ├── CustomTraceOutput.h │ │ ├── CustomTraceOutputExport.cpp │ │ └── include │ │ └── export │ │ ├── aspects │ │ ├── languages.h │ │ └── skins.h │ │ ├── global │ │ ├── datapool │ │ │ └── items.h │ │ └── events │ │ │ └── all_events.h │ │ └── local │ │ ├── datapool │ │ └── items.h │ │ └── events │ │ ├── all_events.h │ │ └── group_Default.h ├── model_extensions │ ├── BezierCurveExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── BezierCurveExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 6f3adbd0-3bae-4b12-953a-f64e6074cba2.gdata │ │ │ ├── packages │ │ │ │ └── 5effba37-8a1b-48be-917a-c73646acc546.gdata │ │ │ ├── resources │ │ │ │ ├── BezierCurveExample.dll │ │ │ │ ├── BezierCurveExampleDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── BezierCurve.h │ │ │ ├── BezierCurvePlugin.cpp │ │ │ ├── BezierFunction.h │ │ │ ├── Curve.h │ │ │ ├── DelayedFixedCurve.cpp │ │ │ ├── DelayedFixedCurve.h │ │ │ ├── Properties.cpp │ │ │ ├── Properties.h │ │ │ ├── Tracing.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── BloomEffect │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── BloomEffect.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 47e2f7f9-78f1-4509-8b4c-2b31ef27ceab.gdata │ │ │ ├── packages │ │ │ │ └── 4c24fc79-fb99-4c37-bb29-e2e767354814.gdata │ │ │ ├── resources │ │ │ │ ├── BloomEffect.dll │ │ │ │ ├── BloomEffectDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── Nummer_bold_RGB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── BloomEffectPlugin.cpp │ │ │ ├── BloomEffectRenderer.cpp │ │ │ ├── BloomEffectRenderer.h │ │ │ ├── GLES3Shader.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CrepuscularEffect │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── CrepuscularEffect.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 3630a1e7-6e40-4132-aa25-5b2235e7c76e.gdata │ │ │ ├── packages │ │ │ │ └── 3fa890d0-aeec-4fc2-b3f2-efa90b9867a4.gdata │ │ │ ├── resources │ │ │ │ ├── CrepuscularEffect.dll │ │ │ │ ├── CrepuscularEffectDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── Nummer_bold_RGB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── CrepuscularPlugin.cpp │ │ │ ├── CrepuscularRenderer.cpp │ │ │ ├── CrepuscularRenderer.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── OpenGLES3Shader.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CustomMaterial │ │ ├── model │ │ │ ├── CustomMaterial.ebguide │ │ │ ├── configuration │ │ │ │ ├── c8f797aa-a76c-458d-9998-dc81bc86248b.gdata │ │ │ │ └── ef10148c-3aa1-4f0e-8a06-c957d040c84b.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── ebpkg │ │ │ │ └── default.template.package │ │ │ │ │ └── 1.0.0-0 │ │ │ │ │ ├── [Content_Types].xml │ │ │ │ │ ├── _rels │ │ │ │ │ └── .rels │ │ │ │ │ ├── content │ │ │ │ │ └── ebguide6.12.0 │ │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── EB.png │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── model.json │ │ │ │ │ │ └── templates │ │ │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ │ │ ├── default.template.package.nuspec │ │ │ │ │ ├── metadata.json │ │ │ │ │ └── package │ │ │ │ │ └── services │ │ │ │ │ └── metadata │ │ │ │ │ └── core-properties │ │ │ │ │ └── ffda397b9abe4527a2ea2a58e6c2709b.psmdcp │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 0ea8e370-3566-4941-97de-4e87c1126407.gdata │ │ │ ├── namespaces │ │ │ │ └── 96c0af61-dbe3-4aa4-bb27-cefb573d6c94 │ │ │ │ │ ├── datapool.gdata │ │ │ │ │ ├── events.gdata │ │ │ │ │ ├── namespace.gdata │ │ │ │ │ └── templates │ │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ │ ├── packages │ │ │ │ └── 91205a42-5985-49c4-97c7-6965fcd27f5c.gdata │ │ │ ├── resources │ │ │ │ ├── 3D_arrow_anim_20210223_142836 │ │ │ │ │ ├── Cube.0010.ebmesh │ │ │ │ │ ├── Cube.0011.ebmesh │ │ │ │ │ ├── Cube.0020.ebmesh │ │ │ │ │ ├── Cube.0021.ebmesh │ │ │ │ │ ├── Cube0.ebmesh │ │ │ │ │ ├── Cube1.ebmesh │ │ │ │ │ ├── Sphere.0010.ebmesh │ │ │ │ │ └── Sphere.0020.ebmesh │ │ │ │ ├── 3D_arrow_sphere_only_20210224_162226 │ │ │ │ │ └── Sphere.0020.ebmesh │ │ │ │ ├── 3D_arrow_sphere_only_flipped_20210308_093017 │ │ │ │ │ └── Sphere.0020.ebmesh │ │ │ │ ├── 3D_arrow_with_uv_20210920_140114 │ │ │ │ │ └── Cube1.ebmesh │ │ │ │ ├── GGX Arrow Emissive Strength Map.png │ │ │ │ ├── GGX Arrow Emissive.png │ │ │ │ ├── GGX.png │ │ │ │ ├── MaterialWidgetDescriptors.json │ │ │ │ ├── PBRPhong.png │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── Phong.png │ │ │ │ ├── gradient.png │ │ │ │ ├── shaders │ │ │ │ │ ├── custom_emissive_map.frag │ │ │ │ │ ├── custom_glas.frag │ │ │ │ │ ├── custom_glas_ggx_clearcoat.frag │ │ │ │ │ ├── custom_opacity.frag │ │ │ │ │ └── deform.vert │ │ │ │ └── warehouse.ebibl │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 0e40af39-e105-4944-af1f-893a3a62f12c │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 3c41cee0-9553-4bc8-b281-b75c8e2956fd.gdata │ │ │ │ │ └── 3d894134-d53e-4904-aa51-04ee67d9dcad.gdata │ │ │ └── templates │ │ │ │ ├── 9bd29285-8f5d-45da-860e-a159fb70a3c9.gdata │ │ │ │ ├── a3ea7de0-b910-4469-9383-7763cd0a3ed3.gdata │ │ │ │ ├── d3089878-2b18-4e08-ad33-53a4047ecee9.gdata │ │ │ │ └── e56140a4-9b9f-421c-8e80-a00f10c80115.gdata │ │ ├── readme.md │ │ └── src │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CustomShaderGLES2 │ │ ├── model │ │ │ ├── CustomShaderGLES2.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 4979f596-6f25-4121-919e-fa172c6753b8.gdata │ │ │ ├── packages │ │ │ │ └── 65ceb984-edb1-4f9b-9a37-f67f49c0c280.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── ShaderWidgetDescriptors.json │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ ├── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── Nummer_bold_RGB.png │ │ │ │ │ ├── bar_image.png │ │ │ │ │ └── coloration_image.png │ │ │ │ └── shaders │ │ │ │ │ ├── f_boxblur.glsl │ │ │ │ │ ├── f_coloration.glsl │ │ │ │ │ ├── f_custom_shader_default.glsl │ │ │ │ │ ├── f_progressbar.glsl │ │ │ │ │ ├── v_boxblur.glsl │ │ │ │ │ ├── v_custom_shader_default.glsl │ │ │ │ │ └── v_default.glsl │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ └── 5ef56ca6-67c0-4d91-81e0-0b3381f7bd73.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 5af0dbe6-a955-45f9-99f1-91af4fe8c7d7.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── CustomShaderGLES3 │ │ ├── model │ │ │ ├── CustomShaderGLES3.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 4979f596-6f25-4121-919e-fa172c6753b8.gdata │ │ │ ├── packages │ │ │ │ └── 65ceb984-edb1-4f9b-9a37-f67f49c0c280.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── ShaderWidgetDescriptors.json │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ ├── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── Nummer_bold_RGB.png │ │ │ │ │ ├── bar_image.png │ │ │ │ │ └── coloration_image.png │ │ │ │ └── shaders │ │ │ │ │ ├── f_boxblur.glsl │ │ │ │ │ ├── f_coloration.glsl │ │ │ │ │ ├── f_custom_shader_default.glsl │ │ │ │ │ ├── f_progressbar.glsl │ │ │ │ │ ├── v_boxblur.glsl │ │ │ │ │ ├── v_custom_shader_default.glsl │ │ │ │ │ └── v_default.glsl │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ └── 5ef56ca6-67c0-4d91-81e0-0b3381f7bd73.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 5af0dbe6-a955-45f9-99f1-91af4fe8c7d7.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── DownscalingWidgetFeature │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── DownscalingWidgetFeature.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 4669a0c3-d23c-406b-8d93-ae931d6c8189.gdata │ │ │ ├── packages │ │ │ │ └── bc398e99-82a0-450f-afc3-d39ab13e80a9.gdata │ │ │ ├── resources │ │ │ │ ├── DownscalingWidgetFeature.dll │ │ │ │ ├── DownscalingWidgetFeatureDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── extern.jpg │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── DownscalingFeature.cpp │ │ │ ├── DownscalingFeature.h │ │ │ ├── DownscalingFeaturePlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ExtendedContainerWidget │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ExtendedContainerWidget.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 6608d6ac-1446-4b32-b482-485c804771e5.gdata │ │ │ ├── packages │ │ │ │ └── 0ef8a8e9-c649-472a-a4b9-ad100a4b0c64.gdata │ │ │ ├── resources │ │ │ │ ├── ExtendedContainerWidget.dll │ │ │ │ ├── ExtendedContainerWidgetDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ExtendedContainerPlugin.cpp │ │ │ ├── ExtendedContainerWidget.cpp │ │ │ ├── ExtendedContainerWidget.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── RenderObject.cpp │ │ │ ├── RenderObject.h │ │ │ ├── RenderObjectStackFrame.h │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── FocusPolicyWidgetFeature │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── FocusPolicyWidgetFeature.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── fad1e807-0491-4c15-aece-f0e1fca7df40.gdata │ │ │ ├── packages │ │ │ │ └── c953637b-21ed-49ed-9225-fd77a7e93d30.gdata │ │ │ ├── resources │ │ │ │ ├── FocusPolicyWidgetFeature.dll │ │ │ │ ├── FocusPolicyWidgetFeatureDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 6ab593c7-e0c4-4fa3-8950-35d1d85945af.gdata │ │ │ │ ├── 880b1913-33e4-4201-aab5-5a187b2dce25.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── FocusPolicyWidgetFeature.cpp │ │ │ ├── FocusPolicyWidgetFeature.h │ │ │ ├── FocusPolicyWidgetFeaturePlugin.cpp │ │ │ ├── RandomFocusFeature.cpp │ │ │ ├── RandomFocusFeature.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── FocusedWidgetFeature │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── FocusedWidgetFeature.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 3019bdce-19e7-43c3-9fd3-3dc6d57f3153.gdata │ │ │ ├── packages │ │ │ │ └── 2fd770c9-b182-476b-af1e-18cad7c3b4a9.gdata │ │ │ ├── resources │ │ │ │ ├── FocusedWidgetFeature.dll │ │ │ │ ├── FocusedWidgetFeatureDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── FocusedWidgetFeature.cpp │ │ │ ├── FocusedWidgetFeature.h │ │ │ ├── FocusedWidgetFeaturePlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── GaussianBlur │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── GaussianBlur.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 4979f596-6f25-4121-919e-fa172c6753b8.gdata │ │ │ ├── packages │ │ │ │ └── 87d793dd-215d-4d8c-a00c-8ba3db15db87.gdata │ │ │ ├── resources │ │ │ │ ├── GaussianBlur.dll │ │ │ │ ├── GaussianBlurDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── Nummer_bold_RGB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ └── 5ef56ca6-67c0-4d91-81e0-0b3381f7bd73.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── GLES20Shader.h │ │ │ ├── GLES3Shader.h │ │ │ ├── GaussianBlur.cpp │ │ │ ├── GaussianBlur.h │ │ │ ├── GaussianBlurCommand.cpp │ │ │ ├── GaussianBlurCommand.h │ │ │ ├── GaussianBlurPlugin.cpp │ │ │ ├── GaussianBlurRenderObject.cpp │ │ │ ├── GaussianBlurRenderObject.h │ │ │ ├── GaussianBlurStackFrame.cpp │ │ │ ├── GaussianBlurStackFrame.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── LabelShape │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── LabelShape.ebguide │ │ │ ├── configuration │ │ │ │ ├── 10fa33fc-c892-4fac-a968-e8d0ed2f99e3.gdata │ │ │ │ └── 6313f6d7-64c1-4ec2-948d-ad831fabad30.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 1e189ae8-de69-4179-83fb-400f5849a506.gdata │ │ │ ├── packages │ │ │ │ └── 331c7b11-55eb-4df7-b7dd-c5ba3f627100.gdata │ │ │ ├── resources │ │ │ │ ├── LabelShape.dll │ │ │ │ ├── LabelShapeDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 9112cfd8-ebf6-4143-a4c8-c7afe3a0fe94 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 1350d5f9-9326-491e-863c-a308118efeff.gdata │ │ │ │ │ └── 959c45f9-b143-4ea5-906b-cb3d13c5a2c0.gdata │ │ │ └── templates │ │ │ │ ├── 6f669daf-5466-40a2-8339-f3caf73b9950.gdata │ │ │ │ └── 97bfae15-8eec-4a27-be28-646b2cd5f0f1.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── LabelShapeAdder.cpp │ │ │ ├── LabelShapeAdder.h │ │ │ ├── LabelShapePlugin.cpp │ │ │ ├── SineLabelShape.cpp │ │ │ ├── SineLabelShape.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── Multisample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── Multisample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 9de05b54-e519-4987-85bf-f87adc640232.gdata │ │ │ │ └── bdb959b6-8fde-4e3b-aa95-45ccdad17336.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 76fa6618-c9ac-408a-8139-7d732da79682.gdata │ │ │ ├── packages │ │ │ │ └── cb2bcacf-2c00-439d-bb26-31f184d29fd1.gdata │ │ │ ├── resources │ │ │ │ ├── Multisample.dll │ │ │ │ ├── MultisampleDescriptor.json │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── Nummer_bold_RGB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── b839a985-cc8a-4f1f-b13b-c26ba814dda1 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 442c95ab-b742-4104-a158-fb8650d3a827.gdata │ │ │ │ │ └── be453906-6416-465c-ae96-ae7dbde2af5b.gdata │ │ │ └── templates │ │ │ │ ├── 9b236a75-7a1b-405e-92c8-ef4969c1b4fb.gdata │ │ │ │ ├── d0cc6c2b-4cf3-4482-8e51-a14cd535817a.gdata │ │ │ │ └── f22f375f-74a5-4677-854b-56ad0cc8b440.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── GLES20Shader.h │ │ │ ├── GLES3Shader.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── Multisample.cpp │ │ │ ├── Multisample.h │ │ │ ├── MultisampleCommand.cpp │ │ │ ├── MultisampleCommand.h │ │ │ ├── MultisamplePlugin.cpp │ │ │ ├── MultisampleRenderObject.cpp │ │ │ ├── MultisampleRenderObject.h │ │ │ ├── MultisampleStackFrame.cpp │ │ │ ├── MultisampleStackFrame.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── PostprocessingEffectExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── PostprocessingEffectExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 10fa33fc-c892-4fac-a968-e8d0ed2f99e3.gdata │ │ │ │ └── 6313f6d7-64c1-4ec2-948d-ad831fabad30.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 1e189ae8-de69-4179-83fb-400f5849a506.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── PostprocessingEffectExample.dll │ │ │ │ ├── PostprocessingEffectExampleDescriptor.json │ │ │ │ ├── Teapot_20180723_125953 │ │ │ │ │ └── Teapot0010.ebmesh │ │ │ │ ├── fonts │ │ │ │ │ ├── PT_Sans.ttf │ │ │ │ │ └── PT_Sans_Narrow.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 9112cfd8-ebf6-4143-a4c8-c7afe3a0fe94 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 1350d5f9-9326-491e-863c-a308118efeff.gdata │ │ │ │ │ └── 959c45f9-b143-4ea5-906b-cb3d13c5a2c0.gdata │ │ │ └── templates │ │ │ │ ├── 42cb342a-4f18-486a-ba53-7fc9518be23d.gdata │ │ │ │ ├── 6f669daf-5466-40a2-8339-f3caf73b9950.gdata │ │ │ │ └── 97bfae15-8eec-4a27-be28-646b2cd5f0f1.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── GLES20Shader.h │ │ │ ├── GLES3Shader.h │ │ │ ├── PostprocessingEffectPlugin.cpp │ │ │ ├── PostprocessingExampleEffectFactory.cpp │ │ │ ├── PostprocessingExampleEffectFactory.h │ │ │ ├── PostprocessingExampleEffectPasses.cpp │ │ │ ├── PostprocessingExampleEffectPasses.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── RippleEffect │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── RippleEffect.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── ed876c6f-f565-42d2-9c9b-d32dee048a1e.gdata │ │ │ ├── packages │ │ │ │ └── 3905b8dc-9cd0-40c1-9d24-7fd4e134a492.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── RippleEffect.dll │ │ │ │ ├── RippleEffectDescriptor.json │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ ├── images │ │ │ │ │ ├── EB.png │ │ │ │ │ └── example.png │ │ │ │ └── logs │ │ │ │ │ └── FbxImportLog_1_14_2018 5_22_08 PM.txt │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 2a0f5cff-ccba-43db-8bb3-bd9c32edf65d.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── GLES20Shader.h │ │ │ ├── GLES3Shader.h │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── RippleEffect.cpp │ │ │ ├── RippleEffect.h │ │ │ ├── RippleEffectPlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ScriptFunction │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ScriptFunction.ebguide │ │ │ ├── configuration │ │ │ │ ├── 1bbc5878-c220-4949-82cf-16f039212f17.gdata │ │ │ │ └── 81cc0bc6-3ba9-42de-957f-355eba32bb91.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 7a7be416-1ca6-4b5e-96e8-df5a55b6fd67.gdata │ │ │ ├── packages │ │ │ │ └── 663138b1-0d2e-4910-aaea-8a3dcd7be664.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── ScriptFunction.dll │ │ │ │ ├── ScriptFunctionDescriptor.json │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── dd2421cb-7bbc-4151-97b9-a2bff137e365 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 2c9c3499-90c7-43ca-9bcc-dc48f46a24fe.gdata │ │ │ │ │ └── ccd9b887-5ec1-4934-ab44-51d2c0d4c9ae.gdata │ │ │ └── templates │ │ │ │ ├── 596fd040-17b6-4fd8-af99-a5bc58984079.gdata │ │ │ │ ├── 622fe64a-b36f-4319-8af5-d92528456bf8.gdata │ │ │ │ └── bc8b1908-2dbd-4d08-9acf-5f19ea17de0c.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── LoadedStageImpl.cpp │ │ │ ├── LoadedStageImpl.h │ │ │ ├── ScriptFunctionNames.h │ │ │ ├── ScriptFunctionPlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── TGAImageLoader │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── TGAImageLoader.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── bb0c87d3-21cd-4bf2-8284-102bdb87f62c.gdata │ │ │ ├── packages │ │ │ │ └── e32f9fef-25a3-4f10-b11a-ec370eb7e398.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── TGAImageLoader.dll │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── compressedImage.tga │ │ │ │ │ ├── decompressedImage.tga │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icon_base.png │ │ │ │ │ ├── icon_events.png │ │ │ │ │ └── icon_external_image.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── 669a97de-0e37-4273-a305-3645d71c4470.gdata │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ ├── 6a626597-78a8-49d7-a591-14b29c5ec41f.gdata │ │ │ │ │ ├── 8aa5d387-6509-4603-af23-79df320688be.gdata │ │ │ │ │ └── dadb168c-7a5c-4cfd-9dcd-148af4ad2e3e.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 3a24ef7a-dbb9-40b0-985c-1a45dac0f9ea.gdata │ │ │ │ ├── 4ba5e50b-dc6c-4c10-8165-b319a5cef09c.gdata │ │ │ │ ├── 7e16277d-99a1-41b2-99fc-ddee370c1aa3.gdata │ │ │ │ ├── bad749ae-e164-4670-bd0b-647bce039801.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── DecoderImpl.cpp │ │ │ ├── DecoderImpl.h │ │ │ ├── InitializedStageImpl.cpp │ │ │ ├── InitializedStageImpl.h │ │ │ ├── Tga.cpp │ │ │ ├── Tga.h │ │ │ ├── TgaImageLoaderPlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ └── TriangleWidget │ │ ├── CMakeLists.txt │ │ ├── model │ │ ├── TriangleWidget.ebguide │ │ ├── configuration │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ ├── contexts.gdata │ │ ├── datapool.gdata │ │ ├── descriptors.json │ │ ├── eventgroups.gdata │ │ ├── events.gdata │ │ ├── languages.gdata │ │ ├── modelinterfaces │ │ │ └── userdefined │ │ │ │ └── eec98145-1ada-4ec2-a019-129d57fd91b9.gdata │ │ ├── packages │ │ │ └── 7ffa55e2-e146-402c-9560-f0b52994450e.gdata │ │ ├── resources │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ ├── TriangleWidget.dll │ │ │ ├── TriangleWidgetDescriptor.json │ │ │ ├── fonts │ │ │ │ └── PT_Sans.ttf │ │ │ └── images │ │ │ │ └── EB.png │ │ ├── skins.gdata │ │ ├── statemachines │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ ├── statemachine.gdata │ │ │ │ └── views │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ └── templates │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ ├── GLES20Shader.h │ │ ├── GLES3Shader.h │ │ ├── LoadedStageImpl.cpp │ │ ├── LoadedStageImpl.h │ │ ├── TrianglePlugin.cpp │ │ ├── TriangleRenderer.cpp │ │ ├── TriangleRenderer.h │ │ └── include │ │ └── export │ │ ├── aspects │ │ ├── languages.h │ │ └── skins.h │ │ ├── global │ │ ├── datapool │ │ │ └── items.h │ │ └── events │ │ │ └── all_events.h │ │ └── local │ │ ├── datapool │ │ └── items.h │ │ └── events │ │ ├── all_events.h │ │ └── group_Default.h ├── model_interactions │ ├── ApplicationInteractionExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ApplicationInteractionExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── a55ba420-d6e6-4449-af1f-74c4ca361747.gdata │ │ │ ├── packages │ │ │ │ └── a9209a76-2fb9-45c1-93ee-26417e9491f9.gdata │ │ │ ├── resources │ │ │ │ ├── ApplicationInteractionExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── app_dp.png │ │ │ │ │ ├── extern.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icon_base.png │ │ │ │ │ ├── icon_datapool_items.png │ │ │ │ │ ├── icon_dp.png │ │ │ │ │ ├── icon_events.png │ │ │ │ │ ├── icon_external_image.png │ │ │ │ │ ├── icon_mandelbrot.png │ │ │ │ │ ├── icon_windowed_list.png │ │ │ │ │ ├── interaction_dp.png │ │ │ │ │ └── interaction_events.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── 669a97de-0e37-4273-a305-3645d71c4470.gdata │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 2749e2e7-23f0-40f9-916f-20657e735c9c.gdata │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ ├── 5f48e0da-d292-4c1c-8888-abe6f40e78c5.gdata │ │ │ │ │ ├── 6a626597-78a8-49d7-a591-14b29c5ec41f.gdata │ │ │ │ │ ├── 718e667b-bb22-4b66-8eac-27ee279c088f.gdata │ │ │ │ │ ├── 8aa5d387-6509-4603-af23-79df320688be.gdata │ │ │ │ │ ├── b5a23149-f790-43bd-ab21-8335ef9d4538.gdata │ │ │ │ │ └── dadb168c-7a5c-4cfd-9dcd-148af4ad2e3e.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 3a24ef7a-dbb9-40b0-985c-1a45dac0f9ea.gdata │ │ │ │ ├── 4ba5e50b-dc6c-4c10-8165-b319a5cef09c.gdata │ │ │ │ ├── 7e16277d-99a1-41b2-99fc-ddee370c1aa3.gdata │ │ │ │ ├── abc16f1e-4157-4f01-912f-28c58856d605.gdata │ │ │ │ ├── bad749ae-e164-4670-bd0b-647bce039801.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ApplicationInteractionPlugin.cpp │ │ │ ├── Mandelbrot2MemImageConverter.cpp │ │ │ ├── Mandelbrot2MemImageConverter.h │ │ │ ├── MandelbrotImage.cpp │ │ │ ├── MandelbrotImage.h │ │ │ ├── MandelbrotSet.cpp │ │ │ ├── MandelbrotSet.h │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ ├── all_events.h │ │ │ │ └── group_Application.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ ├── group_Application.h │ │ │ └── group_Default.h │ ├── DatapoolExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── DatapoolExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 59ac7f5a-8b58-4cda-8d6f-d0619c97d89a.gdata │ │ │ │ └── d1493b80-b1e8-42a1-a890-1c70f5db2287.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── c8ba9b9a-4083-4376-b7b5-277f41da1bcc.gdata │ │ │ ├── packages │ │ │ │ └── 55df8049-0106-439e-b924-d1c8008d0f71.gdata │ │ │ ├── resources │ │ │ │ ├── DatapoolExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── d2274670-c66d-476d-bc31-9357d5349e92 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 9ee640ec-5684-45db-988b-a772c15fd855.gdata │ │ │ │ │ └── a1ef1bb8-5526-44da-be69-b4bd2ed301f3.gdata │ │ │ └── templates │ │ │ │ ├── 0d87f242-dbbe-451f-b029-3d13688d6ac1.gdata │ │ │ │ ├── 23e7baac-65cf-4ba0-beae-e2917811287a.gdata │ │ │ │ └── d5d59616-5174-41c3-95e0-650c21bf2aa0.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── DatapoolPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── EventExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── EventExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 3196d92d-a8e8-4190-b93f-f38d429f3082.gdata │ │ │ │ └── 7577beec-e511-427b-b4f5-57af984f13ad.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 986dd3eb-2064-49b4-bc6c-be9f442c2aeb.gdata │ │ │ ├── packages │ │ │ │ └── a2537319-1b82-42c0-9da5-0cab63b29816.gdata │ │ │ ├── resources │ │ │ │ ├── EventExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 619c62fa-8931-4a23-b62e-bf9ccd1bceea │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 849f7c34-b9f8-4df4-83ea-cf073d93187b.gdata │ │ │ │ │ ├── b7d618dd-ef9a-4140-963a-cbb2c5c93c09.gdata │ │ │ │ │ ├── c7443d01-52f5-4fef-a621-cd3cb3614f87.gdata │ │ │ │ │ └── cdd506e8-f09f-4312-abd0-b6b2bce2c699.gdata │ │ │ └── templates │ │ │ │ ├── c0f1c727-95c8-4441-8262-f18240012cb1.gdata │ │ │ │ └── d39ab86b-55e4-41b8-a278-7e8cefa331f9.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── EventPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ ├── all_events.h │ │ │ │ └── group_global.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ ├── group_Default.h │ │ │ └── group_global.h │ ├── ExternalKeyInputExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ExternalKeyInputExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 3196d92d-a8e8-4190-b93f-f38d429f3082.gdata │ │ │ │ └── 7577beec-e511-427b-b4f5-57af984f13ad.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── e7483415-35cb-4638-945a-e0183956702d.gdata │ │ │ ├── packages │ │ │ │ └── 9f294324-107f-4244-a938-4a7498152618.gdata │ │ │ ├── resources │ │ │ │ ├── ExternalKeyInputExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 619c62fa-8931-4a23-b62e-bf9ccd1bceea │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 849f7c34-b9f8-4df4-83ea-cf073d93187b.gdata │ │ │ │ │ └── c7443d01-52f5-4fef-a621-cd3cb3614f87.gdata │ │ │ └── templates │ │ │ │ ├── c0f1c727-95c8-4441-8262-f18240012cb1.gdata │ │ │ │ └── d39ab86b-55e4-41b8-a278-7e8cefa331f9.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ExternalKeyInputPlugin.cpp │ │ │ ├── RunningStageImpl.cpp │ │ │ ├── RunningStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ ├── group_Default.h │ │ │ └── group_Key.h │ ├── ExternalTouchInputExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ExternalTouchInputExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 3196d92d-a8e8-4190-b93f-f38d429f3082.gdata │ │ │ │ └── 7577beec-e511-427b-b4f5-57af984f13ad.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── f849688b-91d8-47e8-9a6b-bd16bd052e0d.gdata │ │ │ ├── packages │ │ │ │ └── 3b2e944e-09a0-4cbc-929e-17cb806e0d72.gdata │ │ │ ├── resources │ │ │ │ ├── ExternalTouchInputExample.dll │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 619c62fa-8931-4a23-b62e-bf9ccd1bceea │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 849f7c34-b9f8-4df4-83ea-cf073d93187b.gdata │ │ │ │ │ └── c7443d01-52f5-4fef-a621-cd3cb3614f87.gdata │ │ │ └── templates │ │ │ │ ├── c0f1c727-95c8-4441-8262-f18240012cb1.gdata │ │ │ │ └── d39ab86b-55e4-41b8-a278-7e8cefa331f9.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── ExternalTouchInputPlugin.cpp │ │ │ ├── RunningStageImpl.cpp │ │ │ ├── RunningStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ ├── group_Default.h │ │ │ └── group_Touch.h │ ├── RawImageFromMemoryExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── RawImageFromMemoryExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── 934cb976-8979-434d-89d3-f47fc4d2cf46.gdata │ │ │ ├── packages │ │ │ │ └── 4374bbe0-129f-4d3c-96ad-e60a99158ff7.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── RawImageFromMemoryExample.dll │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ ├── EB.png │ │ │ │ │ ├── app_dp.png │ │ │ │ │ ├── extern.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icon_base.png │ │ │ │ │ ├── icon_datapool_items.png │ │ │ │ │ ├── icon_dp.png │ │ │ │ │ ├── icon_events.png │ │ │ │ │ ├── icon_external_image.png │ │ │ │ │ ├── icon_mandelbrot.png │ │ │ │ │ ├── icon_windowed_list.png │ │ │ │ │ ├── interaction_dp.png │ │ │ │ │ └── interaction_events.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── 669a97de-0e37-4273-a305-3645d71c4470.gdata │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ │ │ ├── 6a626597-78a8-49d7-a591-14b29c5ec41f.gdata │ │ │ │ │ ├── 8aa5d387-6509-4603-af23-79df320688be.gdata │ │ │ │ │ └── dadb168c-7a5c-4cfd-9dcd-148af4ad2e3e.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ ├── 3a24ef7a-dbb9-40b0-985c-1a45dac0f9ea.gdata │ │ │ │ ├── 4ba5e50b-dc6c-4c10-8165-b319a5cef09c.gdata │ │ │ │ ├── 7e16277d-99a1-41b2-99fc-ddee370c1aa3.gdata │ │ │ │ ├── bad749ae-e164-4670-bd0b-647bce039801.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── Mandelbrot2MemImageConverter.cpp │ │ │ ├── Mandelbrot2MemImageConverter.h │ │ │ ├── MandelbrotImage.cpp │ │ │ ├── MandelbrotImage.h │ │ │ ├── MandelbrotSet.cpp │ │ │ ├── MandelbrotSet.h │ │ │ ├── RawImageFromMemoryPlugin.cpp │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ ├── ScreenshotExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ │ ├── ScreenshotExample.ebguide │ │ │ ├── configuration │ │ │ │ ├── 417d04d7-fb39-44be-b3cd-a350d3171223.gdata │ │ │ │ └── ad3fe8be-21ec-4f27-814d-d6a86eb16eda.gdata │ │ │ ├── contexts.gdata │ │ │ ├── datapool.gdata │ │ │ ├── descriptors.json │ │ │ ├── eventgroups.gdata │ │ │ ├── events.gdata │ │ │ ├── languages.gdata │ │ │ ├── modelinterfaces │ │ │ │ └── userdefined │ │ │ │ │ └── e14c6c0b-4cac-4c69-9b53-3083a8951ad7.gdata │ │ │ ├── packages │ │ │ │ └── b39186fb-d4d2-41ba-b5d7-c1f40a5e1718.gdata │ │ │ ├── resources │ │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ │ ├── ScreenshotExample.dll │ │ │ │ ├── fonts │ │ │ │ │ └── PT_Sans.ttf │ │ │ │ └── images │ │ │ │ │ └── EB.png │ │ │ ├── skins.gdata │ │ │ ├── statemachines │ │ │ │ └── 6f380ae8-a34c-4f61-a7d9-3bd7cf7541f7 │ │ │ │ │ ├── statemachine.gdata │ │ │ │ │ └── views │ │ │ │ │ ├── 44a166d8-e7f9-4cae-ad01-7d2ec396151a.gdata │ │ │ │ │ └── 56b5a180-589a-4dad-b439-4db92f492392.gdata │ │ │ └── templates │ │ │ │ ├── 18edd3fd-90d3-4e6e-bc08-4db08f8b05ee.gdata │ │ │ │ └── d9ee43bd-ee64-4c9f-904a-75cf1fd8f745.gdata │ │ ├── readme.md │ │ └── src │ │ │ ├── RunStageImpl.cpp │ │ │ ├── RunStageImpl.h │ │ │ ├── Screenshot.cpp │ │ │ ├── Screenshot.h │ │ │ ├── ScreenshotPlugin.cpp │ │ │ └── include │ │ │ └── export │ │ │ ├── aspects │ │ │ ├── languages.h │ │ │ └── skins.h │ │ │ ├── global │ │ │ ├── datapool │ │ │ │ └── items.h │ │ │ └── events │ │ │ │ └── all_events.h │ │ │ └── local │ │ │ ├── datapool │ │ │ └── items.h │ │ │ └── events │ │ │ ├── all_events.h │ │ │ └── group_Default.h │ └── WindowListExample │ │ ├── CMakeLists.txt │ │ ├── model │ │ ├── WindowListExample.ebguide │ │ ├── configuration │ │ │ ├── 59ac7f5a-8b58-4cda-8d6f-d0619c97d89a.gdata │ │ │ └── d1493b80-b1e8-42a1-a890-1c70f5db2287.gdata │ │ ├── contexts.gdata │ │ ├── datapool.gdata │ │ ├── descriptors.json │ │ ├── eventgroups.gdata │ │ ├── events.gdata │ │ ├── languages.gdata │ │ ├── modelinterfaces │ │ │ └── userdefined │ │ │ │ └── 800f72c6-8d9e-4a48-bda0-1688ac9f8920.gdata │ │ ├── packages │ │ │ └── 72d209dd-8335-45f4-a7af-e7b216c28309.gdata │ │ ├── resources │ │ │ ├── PT_Sans_Narrow.ttf │ │ │ ├── Paratype PT Sans Free Font License.txt │ │ │ ├── WindowListExample.dll │ │ │ ├── fonts │ │ │ │ └── PT_Sans.ttf │ │ │ └── images │ │ │ │ └── logo.png │ │ ├── skins.gdata │ │ ├── statemachines │ │ │ └── d2274670-c66d-476d-bc31-9357d5349e92 │ │ │ │ ├── statemachine.gdata │ │ │ │ └── views │ │ │ │ ├── a1ef1bb8-5526-44da-be69-b4bd2ed301f3.gdata │ │ │ │ └── b626692a-8da1-4992-9ec2-699783714772.gdata │ │ └── templates │ │ │ ├── 0d87f242-dbbe-451f-b029-3d13688d6ac1.gdata │ │ │ ├── 36192fc9-a3a9-4a7f-9edf-a98a14c704eb.gdata │ │ │ ├── 66cd612b-4677-466a-8e21-fe50d179234c.gdata │ │ │ └── d5d59616-5174-41c3-95e0-650c21bf2aa0.gdata │ │ ├── readme.md │ │ └── src │ │ ├── RunStageImpl.cpp │ │ ├── RunStageImpl.h │ │ ├── WindowListPlugin.cpp │ │ └── include │ │ └── export │ │ ├── aspects │ │ ├── languages.h │ │ └── skins.h │ │ ├── global │ │ ├── datapool │ │ │ └── items.h │ │ └── events │ │ │ └── all_events.h │ │ └── local │ │ ├── datapool │ │ └── items.h │ │ └── events │ │ ├── all_events.h │ │ └── group_Default.h └── readme.md ├── EB_GUIDE_Monitor ├── EB_GUIDE_Monitor_examples.sln ├── MonitorRemoteViewPlugin │ ├── MonitorRemoteViewPlugin.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResourceProvider.cs │ │ └── Resources.xaml │ ├── Utilities │ │ ├── Cancellation │ │ │ ├── Cancellation.cs │ │ │ └── ICancellation.cs │ │ ├── ContinuousScreenshot │ │ │ ├── AlreadyRunningException.cs │ │ │ ├── ContinuousScreenshotController.cs │ │ │ ├── ContinuousScreenshotControllerFactory.cs │ │ │ ├── ContinuousScreenshotRunner.cs │ │ │ ├── IContinuousScreenshotController.cs │ │ │ ├── IContinuousScreenshotControllerFactory.cs │ │ │ ├── IContinuousScreenshotRunner.cs │ │ │ └── SceneIdMismatchException.cs │ │ ├── Delayer │ │ │ ├── Delayer.cs │ │ │ └── IDelayer.cs │ │ ├── FrameDelayConverter │ │ │ ├── FrameDelayConverter.cs │ │ │ └── IFrameDelayConverter.cs │ │ └── ImageClick │ │ │ ├── ClickAdorner.cs │ │ │ ├── IMouseClickHandler.cs │ │ │ └── MouseClickBehavior.cs │ ├── ViewModels │ │ ├── RemoteViewViewModel.cs │ │ └── RemoteViewViewModelFactory.cs │ ├── Views │ │ ├── RemoteView.xaml │ │ └── RemoteView.xaml.cs │ └── readme.md ├── MonitorUiExtension │ ├── MonitorUiExtension.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResourceProvider.cs │ │ └── Resources.xaml │ ├── ViewModels │ │ ├── ExtensionComponentViewModel.cs │ │ └── ExtensionViewModelFactory.cs │ ├── Views │ │ ├── ExtensionComponentView.xaml │ │ └── ExtensionComponentView.xaml.cs │ └── readme.md ├── MonitorUiExtensionDatapool │ ├── MonitorUiExtensionDatapool.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResourceProvider.cs │ │ └── Resources.xaml │ ├── ViewModels │ │ ├── ExtensionComponentViewModel.cs │ │ ├── ExtensionViewModelFactory.cs │ │ └── VisibleValueViewModel.cs │ ├── Views │ │ ├── ExtensionComponentView.xaml │ │ └── ExtensionComponentView.xaml.cs │ └── readme.md ├── MonitorUiExtensionEvents │ ├── MonitorUiExtensionEvents.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResourceProvider.cs │ │ └── Resources.xaml │ ├── ViewModels │ │ ├── ExtensionComponentViewModel.cs │ │ └── ExtensionViewModelFactory.cs │ ├── Views │ │ ├── ExtensionComponentView.xaml │ │ └── ExtensionComponentView.xaml.cs │ └── readme.md ├── MonitorUiExtensionMacro │ ├── MacroService │ │ ├── Delay.cs │ │ ├── IMacro.cs │ │ ├── IMacroFactory.cs │ │ ├── IMacroRecordSession.cs │ │ ├── IMacroRecordSessionFactory.cs │ │ ├── IMacroRecorder.cs │ │ ├── IMacroService.cs │ │ ├── IMacroStep.cs │ │ ├── IMacroToScriptBuilder.cs │ │ ├── MacroDelayStep.cs │ │ ├── MacroRecordSession.cs │ │ ├── MacroRecordSessionFactory.cs │ │ ├── MacroRecorderBase.cs │ │ ├── MacroService.cs │ │ ├── Macros │ │ │ ├── MessageMacro.cs │ │ │ └── MessageMacroFactory.cs │ │ ├── Recorders │ │ │ ├── MessageStep.cs │ │ │ └── SentMessageRecorder.cs │ │ └── ScriptBuilder │ │ │ ├── Converters │ │ │ ├── DelayStepToScriptConverter.cs │ │ │ ├── IMacroStepToScriptConverter.cs │ │ │ ├── IMessageToScriptConverter.cs │ │ │ ├── MacroStepConverterAttribute.cs │ │ │ ├── MessageConverterAttribute.cs │ │ │ ├── MessageConverters │ │ │ │ ├── FireEventConverter.cs │ │ │ │ ├── InsertListItemConverter.cs │ │ │ │ ├── MessageConverterBase.cs │ │ │ │ ├── RemoveListItemConverter.cs │ │ │ │ ├── WriteListItemConverter.cs │ │ │ │ └── WriteScalarConverter.cs │ │ │ └── MessageStepToScriptConverter.cs │ │ │ ├── ScriptBuilder.cs │ │ │ └── Template │ │ │ ├── MonitorScriptTemplate.cs │ │ │ ├── MonitorScriptTemplate.tt │ │ │ ├── MonitorScriptTemplate1.cs │ │ │ └── ScriptAction.cs │ ├── MonitorUiExtensionMacro.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UI │ │ ├── ExtensionResourceProvider.cs │ │ ├── Resources.xaml │ │ ├── ViewModels │ │ │ ├── MacroViewModel.cs │ │ │ └── MacroViewModelFactory.cs │ │ └── Views │ │ │ ├── MacroView.xaml │ │ │ └── MacroView.xaml.cs │ └── readme.md └── MonitorUiExtensionTargetViewer │ ├── App.config │ ├── MonitorUiExtensionTargetViewer.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── ExtensionResourceProvider.cs │ └── Resources.xaml │ ├── ViewModels │ ├── ExtensionComponentOptions.cs │ ├── ExtensionComponentViewModel.cs │ └── ExtensionViewModelFactory.cs │ ├── Views │ ├── ExtensionComponentView.xaml │ └── ExtensionComponentView.xaml.cs │ └── readme.md ├── EB_GUIDE_Studio ├── AnnotationsServicePlugin │ ├── AnnotationsServicePlugin.csproj │ ├── Model │ │ ├── AnnotationData.cs │ │ ├── AnnotationDeleter.cs │ │ ├── AnnotationPluginData.cs │ │ ├── AnnotationTypeProvider.cs │ │ ├── AnnotationsMappingModule.cs │ │ ├── IAnnotationData.cs │ │ ├── IAnnotationPluginData.cs │ │ ├── TypeMemberNames.cs │ │ └── TypeNames.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service │ │ ├── AnnotationService.cs │ │ └── IAnnotationService.cs │ └── readme.md ├── AnnotationsUiPlugin │ ├── AnnotationsUiPlugin.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── View │ │ ├── AnnotationResourceProvider.cs │ │ ├── AnnotationView.xaml │ │ ├── AnnotationView.xaml.cs │ │ └── Resources.xaml │ ├── ViewModel │ │ ├── AnnotationComponentFactory.cs │ │ ├── AnnotationComponentViewModel.cs │ │ └── AnnotationViewModel.cs │ └── readme.md ├── CommandLinePlugin │ ├── CommandLinePlugin.csproj │ ├── CountEventsCommandLineAction.cs │ ├── CountEventsCommandLineOption.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── readme.md ├── EB_GUIDE_Studio_examples.sln ├── ExportStatisticsPlugin │ ├── ExportStatisticsPlugin.csproj │ ├── ExportStatisticsPrinter.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── readme.md ├── JsonImporterPlugin │ ├── Deserializer │ │ ├── IJsonFileReader.cs │ │ └── JsonFileReader.cs │ ├── ImportMenuItemProvider.cs │ ├── ImportOptions.cs │ ├── JsonImporterPlugin.csproj │ ├── MainMenuBarItemProvider.cs │ ├── Model │ │ ├── ImportModelDataResult.cs │ │ ├── JsonDpItem.cs │ │ ├── JsonEvent.cs │ │ ├── JsonEventParameter.cs │ │ └── JsonModelData.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── ExampleModel.json │ ├── Service │ │ ├── IJsonModelService.cs │ │ └── JsonModelService.cs │ └── readme.md ├── MenuActionPlugin │ ├── CustomMenuItemProvider.cs │ ├── MainMenuBarItemProvider.cs │ ├── MenuActionPlugin.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── readme.md ├── ProjectMetadataPlugin │ ├── IProjectMetadata.cs │ ├── IProjectMetadataService.cs │ ├── ProjectMetadata.cs │ ├── ProjectMetadataPlugin.csproj │ ├── ProjectMetadataService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── readme.md ├── TGAImageLoaderPlugin │ ├── AppResources.xaml │ ├── DataTypeCode.cs │ ├── Decoders │ │ ├── RgbBufferDecoder.cs │ │ ├── RgbDecoder.cs │ │ └── RgbRleDecoder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TGAImageLoaderPlugin.csproj │ ├── TgaAssetDropHandler.cs │ ├── TgaAssetFormats.cs │ ├── TgaAssetResourceProvider.cs │ ├── TgaAssetViewModel.cs │ ├── TgaAssetViewModelFactory.cs │ ├── TgaHeader.cs │ ├── TgaPathToThumbnailConverter.cs │ ├── TgaReader.cs │ ├── UnsupportedPixelFormatException.cs │ └── readme.md ├── TagFilterPlugin │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Readme.md │ ├── Resources.xaml │ ├── TagFilterPlugin.csproj │ ├── TagFilterResourceProvider.cs │ ├── VariantSupportTagItemSourceProvider.cs │ ├── VariantTagItem.cs │ ├── VariantTagItemOptions.cs │ ├── VariantTagItemSerializer.cs │ └── VariantTagItemSource.cs └── ValidationPlugin │ ├── FindItemsWithLanguageSupportValidator.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ValidationPlugin.csproj │ └── readme.md ├── LICENSE.txt └── readme.md /Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6.12.0 6 | 7 | 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("BasicExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/BasicPlugin.cpp 6 | src/RunStageImpl.h 7 | src/RunStageImpl.cpp 8 | src/Tracing.h 9 | ) 10 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/languages.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | languages(ce998b7c-428e-4465-849e-4b7986dd0710) 4 | { 5 | items: language_list [ 6 | language(2c2c7517-1226-4e89-8c3d-e9b8dd50cef7) 7 | { 8 | name: "Standard" 9 | country: "US" 10 | dialect: "en" 11 | }] 12 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/modelinterfaces/userdefined/0bce8796-116b-49ce-9e25-42f7b06fe6cc.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | model_interface(0bce8796-116b-49ce-9e25-42f7b06fe6cc) 4 | { 5 | name: "Default Model Interface" 6 | color: #00D6DEFF 7 | dp_items: dp_item_refs [] 8 | events: event_refs [] 9 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/packages/c4b6a050-5732-4f21-be5e-a366b8d98a23.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(c4b6a050-5732-4f21-be5e-a366b8d98a23) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/resources/BasicExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/BasicExample/model/resources/BasicExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/BasicExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/BasicExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/BasicExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/model/tracing.json: -------------------------------------------------------------------------------- 1 | { 2 | "gtf": 3 | { 4 | "tracing": 5 | { 6 | "Plugins": ["GtfFileOutput"], 7 | "ChannelSeverities": ["GTF_Basic_Example", "Info"], 8 | "DefaultSeverity": "None" 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/readme.md: -------------------------------------------------------------------------------- 1 | # BasicExample 2 | 3 | Shows the basic structure of an EB GUIDE GTF application. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BasicExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("BufferSwapHooksExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/BufferSwapHooks.h 6 | src/BufferSwapHooks.cpp 7 | src/BufferSwapHooksPlugin.cpp 8 | src/Tracing.h 9 | ) 10 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(81d80021-783f-4077-ad6c-a1dea2031e50) 4 | { 5 | items: context_list [ 6 | context(67b904d0-1885-4e23-b208-efcacf7367fc) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(c0c723fb-4eb3-4ebe-9a12-52e991debb13) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/packages/dc60963f-723f-4feb-87b5-05fa4f9059a2.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(dc60963f-723f-4feb-87b5-05fa4f9059a2) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/BufferSwapHooksExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/BufferSwapHooksExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(64bb046e-40d9-490c-bcf2-ab504a777fff) 4 | { 5 | items: skin_list [ 6 | skin(0b108af9-f976-4897-a23a-b013fb65d6d4) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/model/tracing.json: -------------------------------------------------------------------------------- 1 | { 2 | "gtf": 3 | { 4 | "tracing": 5 | { 6 | "Plugins": ["GtfFileOutput"], 7 | "ChannelSeverities": ["GTF_Buffer_Swap_Hooks", "Info"], 8 | "DefaultSeverity": "None" 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/readme.md: -------------------------------------------------------------------------------- 1 | # BufferSwapHooksExample 2 | 3 | Shows a simple implementation for preswap and postswap hooks that are called 4 | just before and after the framebuffers have been swapped in the renderer. 5 | 6 | For instructions see [EB GUIDE GTF examples](../../readme.md) 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "071e3013-131a-440b-bc83-490b4eb41b96" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "0b108af9-f976-4897-a23a-b013fb65d6d4" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/BufferSwapHooksExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("ConfigurationImporterExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/RunStageImpl.cpp 6 | src/RunStageImpl.h 7 | src/ConfigurationImporterPlugin.cpp 8 | ) 9 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/packages/f5806e8e-e7bb-487b-8381-e3d42d00f920.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(f5806e8e-e7bb-487b-8381-e3d42d00f920) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/resources/ConfigurationImporterExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/resources/ConfigurationImporterExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(82115b0e-9d48-403d-a218-5bf79361a339) 4 | { 5 | items: skin_list [ 6 | skin(3052906c-7677-4c86-a4dd-eb49e5167d66) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/readme.md: -------------------------------------------------------------------------------- 1 | # ConfigurationImporterExample 2 | 3 | Shows how to load an own custom configuration _.json_ files, other than the ones provided by the export. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "3052906c-7677-4c86-a4dd-eb49e5167d66" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ConfigurationImporterExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/modelinterfaces/userdefined/fc25b226-3f79-40e7-b9f3-50277c4a4111.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | model_interface(fc25b226-3f79-40e7-b9f3-50277c4a4111) 4 | { 5 | name: "Default Model Interface" 6 | color: #00D6DEFF 7 | dp_items: dp_item_refs [] 8 | events: event_refs [] 9 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/packages/3ac13d10-e3fb-4b1b-95b9-05c6c9e04235.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(3ac13d10-e3fb-4b1b-95b9-05c6c9e04235) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/CoreStageExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/CoreStageExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/CoreStageExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(62089501-aa84-4609-98bb-8c49bb6a974e) 4 | { 5 | items: skin_list [ 6 | skin(119d976e-dcdf-4db9-be5b-715b00f80c2a) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/model/tracing.json: -------------------------------------------------------------------------------- 1 | { 2 | "gtf": 3 | { 4 | "tracing": 5 | { 6 | "Plugins": ["GtfFileOutput"], 7 | "ChannelSeverities": ["GTF_Core_Stage_Example", "Info"], 8 | "DefaultSeverity": "None" 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/readme.md: -------------------------------------------------------------------------------- 1 | # CoreStageExample 2 | 3 | Shows how to use core stages in EB GUIDE GTF. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "119d976e-dcdf-4db9-be5b-715b00f80c2a" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/CoreStageExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/packages/b1cc00a0-4e1a-4ec4-a445-1e80c8a2aade.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(b1cc00a0-4e1a-4ec4-a445-1e80c8a2aade) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/DependencyResolverExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/DependencyResolverExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/DependencyResolverExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(82dfdd03-3612-436d-9e01-440bbae20da6) 4 | { 5 | items: skin_list [ 6 | skin(21a8dd3d-829f-489e-be91-f796803cf82c) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/readme.md: -------------------------------------------------------------------------------- 1 | # DependencyResolverExample 2 | 3 | Shows the dependency resolver in EB GUIDE GTF. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "21a8dd3d-829f-489e-be91-f796803cf82c" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/DependencyResolverExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/packages/a8abe445-f7c8-4fbd-83db-b22663658493.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(a8abe445-f7c8-4fbd-83db-b22663658493) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/ModelStageExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/ModelStageExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/ModelStageExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(62089501-aa84-4609-98bb-8c49bb6a974e) 4 | { 5 | items: skin_list [ 6 | skin(119d976e-dcdf-4db9-be5b-715b00f80c2a) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/model/tracing.json: -------------------------------------------------------------------------------- 1 | { 2 | "gtf": 3 | { 4 | "tracing": 5 | { 6 | "Plugins": ["GtfFileOutput"], 7 | "ChannelSeverities": ["GTF_Model_Stage_Example", "Info"], 8 | "DefaultSeverity": "None" 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/readme.md: -------------------------------------------------------------------------------- 1 | # ModelStageExample 2 | 3 | Shows how to use model stages in EB GUIDE GTF. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "119d976e-dcdf-4db9-be5b-715b00f80c2a" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/ModelStageExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("SettingsExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/RunStageImpl.cpp 6 | src/RunStageImpl.h 7 | src/SettingsPlugin.cpp 8 | src/Tracing.h 9 | ) 10 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/languages.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | languages(ce998b7c-428e-4465-849e-4b7986dd0710) 4 | { 5 | items: language_list [ 6 | language(2c2c7517-1226-4e89-8c3d-e9b8dd50cef7) 7 | { 8 | name: "Standard" 9 | country: "US" 10 | dialect: "en" 11 | }] 12 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/modelinterfaces/userdefined/3d772d4b-0a60-42c7-90d7-3f616d6ab9c5.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | model_interface(3d772d4b-0a60-42c7-90d7-3f616d6ab9c5) 4 | { 5 | name: "Default Model Interface" 6 | color: #00D6DEFF 7 | dp_items: dp_item_refs [] 8 | events: event_refs [] 9 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/packages/609b137a-3146-4d7a-ae29-0ff1dfd0681c.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(609b137a-3146-4d7a-ae29-0ff1dfd0681c) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/SettingsExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/resources/SettingsExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/SettingsExample/model/resources/SettingsExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/SettingsExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/SettingsExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(82115b0e-9d48-403d-a218-5bf79361a339) 4 | { 5 | items: skin_list [ 6 | skin(3052906c-7677-4c86-a4dd-eb49e5167d66) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/model/tracing.json: -------------------------------------------------------------------------------- 1 | { 2 | "gtf": 3 | { 4 | "tracing": 5 | { 6 | "Plugins": ["GtfFileOutput"], 7 | "ChannelSeverities": ["GTF_Settings_Example", "Info"], 8 | "DefaultSeverity": "None" 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/readme.md: -------------------------------------------------------------------------------- 1 | # SettingsExample 2 | 3 | Shows how to handle EB GUIDE GTF settings. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "3052906c-7677-4c86-a4dd-eb49e5167d66" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/SettingsExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("TraceOutputExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/CustomTraceOutput.cpp 6 | src/CustomTraceOutput.h 7 | src/CustomTraceOutputExport.cpp 8 | ) 9 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/packages/e4612a94-71de-4b44-bebb-df45726777be.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(e4612a94-71de-4b44-bebb-df45726777be) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/TraceOutputExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/TraceOutputExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/concepts/TraceOutputExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/model/tracing.json: -------------------------------------------------------------------------------- 1 | { 2 | "gtf": 3 | { 4 | "tracing": 5 | { 6 | "Plugins": ["TraceOutputExample"], 7 | "DefaultSeverity": "Info" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/readme.md: -------------------------------------------------------------------------------- 1 | # TraceOutputExample 2 | 3 | Adds own output plug-in for printing trace messages in a _.csv_ file. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/concepts/TraceOutputExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/packages/5effba37-8a1b-48be-917a-c73646acc546.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(5effba37-8a1b-48be-917a-c73646acc546) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/resources/BezierCurveExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/resources/BezierCurveExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BezierCurveExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/packages/4c24fc79-fb99-4c37-bb29-e2e767354814.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(4c24fc79-fb99-4c37-bb29-e2e767354814) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/BloomEffect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/BloomEffect.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/fonts/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/fonts/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/images/Nummer_bold_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/BloomEffect/model/resources/images/Nummer_bold_RGB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/readme.md: -------------------------------------------------------------------------------- 1 | # BloomEffect 2 | 3 | Adds a bright light effect for an image. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/BloomEffect/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/packages/3fa890d0-aeec-4fc2-b3f2-efa90b9867a4.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(3fa890d0-aeec-4fc2-b3f2-efa90b9867a4) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/CrepuscularEffect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/CrepuscularEffect.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/images/Nummer_bold_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/resources/images/Nummer_bold_RGB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/readme.md: -------------------------------------------------------------------------------- 1 | # CrepuscularEffect 2 | 3 | Adds a volumetric light scattering effect for special visual effects of the scene. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CrepuscularEffect/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(4843f3e3-d1c0-4a3f-a614-ee93af075ed5) 4 | { 5 | items: context_list [ 6 | context(55d624fc-0cdb-4b62-885e-b7b08bc6cf35) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/modelinterfaces/userdefined/0ea8e370-3566-4941-97de-4e87c1126407.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | model_interface(0ea8e370-3566-4941-97de-4e87c1126407) 4 | { 5 | name: "CustomShader" 6 | color: #00D6DEFF 7 | dp_items: dp_item_refs [] 8 | events: event_refs [] 9 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/namespaces/96c0af61-dbe3-4aa4-bb27-cefb573d6c94/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(a312bb6a-a127-4e9e-94e2-462e45753128) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/namespaces/96c0af61-dbe3-4aa4-bb27-cefb573d6c94/events.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | events(994b383d-0ef2-4c1a-bfe2-0606031ae324) 4 | { 5 | items: event_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/packages/91205a42-5985-49c4-97c7-6965fcd27f5c.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(91205a42-5985-49c4-97c7-6965fcd27f5c) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube.0010.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube.0010.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube.0011.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube.0011.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube.0020.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube.0020.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube.0021.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube.0021.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube0.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube0.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube1.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Cube1.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Sphere.0010.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Sphere.0010.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Sphere.0020.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_anim_20210223_142836/Sphere.0020.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_sphere_only_20210224_162226/Sphere.0020.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_sphere_only_20210224_162226/Sphere.0020.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_with_uv_20210920_140114/Cube1.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/3D_arrow_with_uv_20210920_140114/Cube1.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/GGX Arrow Emissive Strength Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/GGX Arrow Emissive Strength Map.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/GGX Arrow Emissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/GGX Arrow Emissive.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/GGX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/GGX.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/PBRPhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/PBRPhong.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/Phong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/Phong.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/gradient.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/warehouse.ebibl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomMaterial/model/resources/warehouse.ebibl -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(c245c44b-bebe-4b26-83a2-6eb4bfd0ebce) 4 | { 5 | items: skin_list [ 6 | skin(88bc76f6-5e96-4c5b-bfc2-65d2ec220794) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "b341e34d-70f4-4495-be30-7a372971efa9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "88bc76f6-5e96-4c5b-bfc2-65d2ec220794" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomMaterial/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/packages/65ceb984-edb1-4f9b-9a37-f67f49c0c280.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(65ceb984-edb1-4f9b-9a37-f67f49c0c280) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/fonts/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/fonts/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/Nummer_bold_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/Nummer_bold_RGB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/bar_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/bar_image.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/coloration_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/resources/images/coloration_image.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES2/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/packages/65ceb984-edb1-4f9b-9a37-f67f49c0c280.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(65ceb984-edb1-4f9b-9a37-f67f49c0c280) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/fonts/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/fonts/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/Nummer_bold_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/Nummer_bold_RGB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/bar_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/bar_image.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/coloration_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/resources/images/coloration_image.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/CustomShaderGLES3/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("DownscalingWidgetFeature") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/DownscalingFeature.h 6 | src/DownscalingFeature.cpp 7 | src/DownscalingFeaturePlugin.cpp 8 | ) 9 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/packages/bc398e99-82a0-450f-afc3-d39ab13e80a9.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(bc398e99-82a0-450f-afc3-d39ab13e80a9) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/DownscalingWidgetFeature.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/DownscalingWidgetFeature.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/images/extern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/resources/images/extern.jpg -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/DownscalingWidgetFeature/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [ 6 | dp(eaf41c79-d817-41dd-a9fb-0b0694556675) 7 | { 8 | value: 0 9 | name: "displayStatus" 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/packages/0ef8a8e9-c649-472a-a4b9-ad100a4b0c64.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(0ef8a8e9-c649-472a-a4b9-ad100a4b0c64) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/resources/ExtendedContainerWidget.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/resources/ExtendedContainerWidget.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/readme.md: -------------------------------------------------------------------------------- 1 | # ExtendedContainerWidget 2 | 3 | Adds a custom container widget with child visibility control. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ExtendedContainerWidget/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/packages/c953637b-21ed-49ed-9225-fd77a7e93d30.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(c953637b-21ed-49ed-9225-fd77a7e93d30) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/resources/FocusPolicyWidgetFeature.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/resources/FocusPolicyWidgetFeature.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/readme.md: -------------------------------------------------------------------------------- 1 | # FocusPolicyWidgetFeature 2 | 3 | Adds a custom focus policy to a widget. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusPolicyWidgetFeature/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("FocusedWidgetFeature") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/FocusedWidgetFeature.h 6 | src/FocusedWidgetFeature.cpp 7 | src/FocusedWidgetFeaturePlugin.cpp 8 | ) 9 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [ 6 | dp(ff56931d-9eca-4d00-b4c3-462c0786446d) 7 | { 8 | value: false 9 | name: "focused" 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/packages/2fd770c9-b182-476b-af1e-18cad7c3b4a9.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(2fd770c9-b182-476b-af1e-18cad7c3b4a9) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/resources/FocusedWidgetFeature.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/resources/FocusedWidgetFeature.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/readme.md: -------------------------------------------------------------------------------- 1 | # FocusedWidgetFeature 2 | 3 | Adds a custom focus reaction on rectangle widgets. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/FocusedWidgetFeature/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/packages/87d793dd-215d-4d8c-a00c-8ba3db15db87.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(87d793dd-215d-4d8c-a00c-8ba3db15db87) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/GaussianBlur.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/GaussianBlur.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/fonts/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/fonts/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/images/Nummer_bold_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/GaussianBlur/model/resources/images/Nummer_bold_RGB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/readme.md: -------------------------------------------------------------------------------- 1 | # GaussianBlur 2 | 3 | Adds a widget with Gaussian blur effect. All child widgets are affected by the blurring.\ 4 | This example also shows how to create a custom framebuffer. 5 | 6 | For instructions see [EB GUIDE GTF examples](../../readme.md) 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/GaussianBlur/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("LabelShape") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/SineLabelShape.h 6 | src/SineLabelShape.cpp 7 | src/LabelShapeAdder.h 8 | src/LabelShapeAdder.cpp 9 | src/LabelShapePlugin.cpp 10 | ) 11 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(e8e5dcb8-b626-41e6-b602-4a4cf0a02d04) 4 | { 5 | items: context_list [ 6 | context(f58f23b1-01dd-4e40-86a1-e11ce0a8cd4b) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/modelinterfaces/userdefined/1e189ae8-de69-4179-83fb-400f5849a506.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | model_interface(1e189ae8-de69-4179-83fb-400f5849a506) 4 | { 5 | name: "LabelShape" 6 | color: #00D6DEFF 7 | dp_items: dp_item_refs [] 8 | events: event_refs [] 9 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/packages/331c7b11-55eb-4df7-b7dd-c5ba3f627100.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(331c7b11-55eb-4df7-b7dd-c5ba3f627100) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/LabelShape.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/LabelShape.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/fonts/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/fonts/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/LabelShape/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(7f2d3751-174b-493c-9a20-570079b7201c) 4 | { 5 | items: skin_list [ 6 | skin(784c3761-869d-45e5-89f2-fec6b5002ecb) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "240c88e6-7a07-4caf-ae8b-5f89620fb630" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "784c3761-869d-45e5-89f2-fec6b5002ecb" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/LabelShape/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(b1c3bed8-ebb9-4178-9ac9-08fd4d954adb) 4 | { 5 | items: context_list [ 6 | context(d1d3ce17-ca36-468b-b3e4-e4bdc978b56c) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/modelinterfaces/userdefined/76fa6618-c9ac-408a-8139-7d732da79682.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | model_interface(76fa6618-c9ac-408a-8139-7d732da79682) 4 | { 5 | name: "Multisample" 6 | color: #3399FFFF 7 | dp_items: dp_item_refs [] 8 | events: event_refs [] 9 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/packages/cb2bcacf-2c00-439d-bb26-31f184d29fd1.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(cb2bcacf-2c00-439d-bb26-31f184d29fd1) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/Multisample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/Multisample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/fonts/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/fonts/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/resources/images/Nummer_bold_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/Multisample/model/resources/images/Nummer_bold_RGB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(99029ac1-b117-4dcd-8fd1-3dcd5b379168) 4 | { 5 | items: skin_list [ 6 | skin(6fd089fa-0c6c-4ed0-a3ad-54c6832f9f98) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "828c46a3-b615-49cd-9393-92624bec8185" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "6fd089fa-0c6c-4ed0-a3ad-54c6832f9f98" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/Multisample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(e8e5dcb8-b626-41e6-b602-4a4cf0a02d04) 4 | { 5 | items: context_list [ 6 | context(f58f23b1-01dd-4e40-86a1-e11ce0a8cd4b) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/PostprocessingEffectExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/PostprocessingEffectExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/Teapot_20180723_125953/Teapot0010.ebmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/Teapot_20180723_125953/Teapot0010.ebmesh -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/fonts/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/fonts/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(7f2d3751-174b-493c-9a20-570079b7201c) 4 | { 5 | items: skin_list [ 6 | skin(784c3761-869d-45e5-89f2-fec6b5002ecb) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "784c3761-869d-45e5-89f2-fec6b5002ecb" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/PostprocessingEffectExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/packages/3905b8dc-9cd0-40c1-9d24-7fd4e134a492.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(3905b8dc-9cd0-40c1-9d24-7fd4e134a492) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/RippleEffect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/RippleEffect.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/images/example.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/resources/logs/FbxImportLog_1_14_2018 5_22_08 PM.txt: -------------------------------------------------------------------------------- 1 | EB_LOGO.FBX 2 | Import successful 3 | Info: Started converting file. 4 | Info: Finished converting file successfully. 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/readme.md: -------------------------------------------------------------------------------- 1 | # RippleEffect 2 | 3 | Adds a ripple effect for special visual effects of the scene. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/RippleEffect/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("ScriptFunction") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/LoadedStageImpl.cpp 6 | src/LoadedStageImpl.h 7 | src/ScriptFunctionPlugin.cpp 8 | src/ScriptFunctionNames.h 9 | ) 10 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(0f418cea-1d3b-4278-a45e-11aa14737f17) 4 | { 5 | items: context_list [ 6 | context(148827fe-9c8c-4d03-b2aa-9eb0ca4005f2) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/packages/663138b1-0d2e-4910-aaea-8a3dcd7be664.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(663138b1-0d2e-4910-aaea-8a3dcd7be664) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/ScriptFunction.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/ScriptFunction.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/ScriptFunction/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(5c319001-3645-40e6-957d-444ff4cf47a2) 4 | { 5 | items: skin_list [ 6 | skin(bfceef72-2340-423e-835e-3d47ee38aef3) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/readme.md: -------------------------------------------------------------------------------- 1 | # ScriptFunction 2 | 3 | Adds the custom EB GUIDE Script function: _ExampleFunction\_SUM_. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "91cca09e-7dd5-4aa3-98ea-a6ee15645053" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "bfceef72-2340-423e-835e-3d47ee38aef3" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/ScriptFunction/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/packages/e32f9fef-25a3-4f10-b11a-ec370eb7e398.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(e32f9fef-25a3-4f10-b11a-ec370eb7e398) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/TGAImageLoader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/TGAImageLoader.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/compressedImage.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/compressedImage.tga -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/decompressedImage.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/decompressedImage.tga -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/home.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/icon_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/icon_base.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/icon_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/icon_events.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/icon_external_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/resources/images/icon_external_image.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(0c415d6c-f3eb-474f-819e-b23a197c0cae) 4 | { 5 | items: skin_list [ 6 | skin(05d6bb5f-20f0-4cf8-a1c2-9cab54e559ea) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "05d6bb5f-20f0-4cf8-a1c2-9cab54e559ea" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TGAImageLoader/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/packages/7ffa55e2-e146-402c-9560-f0b52994450e.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(7ffa55e2-e146-402c-9560-f0b52994450e) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/TriangleWidget.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/TriangleWidget.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_extensions/TriangleWidget/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/readme.md: -------------------------------------------------------------------------------- 1 | # TriangleWidget 2 | 3 | Adds a basic triangle-shaped widget for more design options. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_extensions/TriangleWidget/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/packages/a9209a76-2fb9-45c1-93ee-26417e9491f9.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(a9209a76-2fb9-45c1-93ee-26417e9491f9) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/ApplicationInteractionExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/ApplicationInteractionExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/app_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/app_dp.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/extern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/extern.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/home.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_base.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_datapool_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_datapool_items.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_dp.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_events.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_external_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_external_image.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_mandelbrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_mandelbrot.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_windowed_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/icon_windowed_list.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/interaction_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/interaction_dp.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/interaction_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/resources/images/interaction_events.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(0c415d6c-f3eb-474f-819e-b23a197c0cae) 4 | { 5 | items: skin_list [ 6 | skin(05d6bb5f-20f0-4cf8-a1c2-9cab54e559ea) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/readme.md: -------------------------------------------------------------------------------- 1 | # ApplicationInteractionExample 2 | 3 | Shows interaction between HMI and business logic. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "05d6bb5f-20f0-4cf8-a1c2-9cab54e559ea" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ApplicationInteractionExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Application.h" 5 | 6 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("DatapoolExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/DatapoolPlugin.cpp 6 | src/RunStageImpl.cpp 7 | src/RunStageImpl.h 8 | ) 9 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(263cc0e1-c69b-4797-8adc-d76846e08db4) 4 | { 5 | items: context_list [ 6 | context(264459bf-d885-4f6e-826d-ef94d7c41038) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/packages/55df8049-0106-439e-b924-d1c8008d0f71.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(55df8049-0106-439e-b924-d1c8008d0f71) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/DatapoolExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/DatapoolExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/DatapoolExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(cd3920cb-fabc-406e-8c45-96dc758f3b7f) 4 | { 5 | items: skin_list [ 6 | skin(ef45c58c-5d56-449f-914a-164c881fca73) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/readme.md: -------------------------------------------------------------------------------- 1 | # DatapoolExample 2 | 3 | Shows basic concept of datapool communication. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "1be60259-22d9-45ea-9022-24ff55dd06ad" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "ef45c58c-5d56-449f-914a-164c881fca73" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/DatapoolExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("EventExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/EventPlugin.cpp 6 | src/RunStageImpl.cpp 7 | src/RunStageImpl.h 8 | ) 9 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(46deb1ad-23e7-4f8b-975c-adae4b218ca9) 4 | { 5 | items: context_list [ 6 | context(e0cb619a-81f0-4a76-b849-b3c189622a3e) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(ec527ee9-030d-441d-8b41-76ea7c05fb0c) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/packages/a2537319-1b82-42c0-9da5-0cab63b29816.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(a2537319-1b82-42c0-9da5-0cab63b29816) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/resources/EventExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/EventExample/model/resources/EventExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/EventExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/EventExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/EventExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(f725d908-d2d5-4904-b3c9-89a529e19a5b) 4 | { 5 | items: skin_list [ 6 | skin(5a0e6c42-1656-4a5b-8bd5-519541f34f21) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/readme.md: -------------------------------------------------------------------------------- 1 | # EventExample 2 | 3 | Shows the concept of event communication. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "871c0f22-d9c2-46ba-a669-a5bd3a2cb2fa" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5a0e6c42-1656-4a5b-8bd5-519541f34f21" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_global.h" 5 | 6 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/EventExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | #include "group_global.h" 6 | 7 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("ExternalKeyInputExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/ExternalKeyInputPlugin.cpp 6 | src/RunningStageImpl.h 7 | src/RunningStageImpl.cpp 8 | ) 9 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(46deb1ad-23e7-4f8b-975c-adae4b218ca9) 4 | { 5 | items: context_list [ 6 | context(e0cb619a-81f0-4a76-b849-b3c189622a3e) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(ec527ee9-030d-441d-8b41-76ea7c05fb0c) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/packages/9f294324-107f-4244-a938-4a7498152618.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(9f294324-107f-4244-a938-4a7498152618) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/resources/ExternalKeyInputExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/resources/ExternalKeyInputExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(f725d908-d2d5-4904-b3c9-89a529e19a5b) 4 | { 5 | items: skin_list [ 6 | skin(5a0e6c42-1656-4a5b-8bd5-519541f34f21) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/readme.md: -------------------------------------------------------------------------------- 1 | # ExternalKeyInputExample 2 | 3 | Shows concept of key-based interaction. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5a0e6c42-1656-4a5b-8bd5-519541f34f21" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalKeyInputExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | #include "group_Key.h" 6 | 7 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("ExternalTouchInputExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/ExternalTouchInputPlugin.cpp 6 | src/RunningStageImpl.h 7 | src/RunningStageImpl.cpp 8 | ) 9 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(46deb1ad-23e7-4f8b-975c-adae4b218ca9) 4 | { 5 | items: context_list [ 6 | context(e0cb619a-81f0-4a76-b849-b3c189622a3e) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(ec527ee9-030d-441d-8b41-76ea7c05fb0c) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/packages/3b2e944e-09a0-4cbc-929e-17cb806e0d72.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(3b2e944e-09a0-4cbc-929e-17cb806e0d72) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/resources/ExternalTouchInputExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/resources/ExternalTouchInputExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(f725d908-d2d5-4904-b3c9-89a529e19a5b) 4 | { 5 | items: skin_list [ 6 | skin(5a0e6c42-1656-4a5b-8bd5-519541f34f21) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/readme.md: -------------------------------------------------------------------------------- 1 | # ExternalTouchInputExample 2 | 3 | Shows the concept of touch-based interaction. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5a0e6c42-1656-4a5b-8bd5-519541f34f21" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ExternalTouchInputExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | #include "group_Touch.h" 6 | 7 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/packages/4374bbe0-129f-4d3c-96ad-e60a99158ff7.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(4374bbe0-129f-4d3c-96ad-e60a99158ff7) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/RawImageFromMemoryExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/RawImageFromMemoryExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/app_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/app_dp.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/extern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/extern.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/home.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_base.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_datapool_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_datapool_items.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_dp.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_events.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_external_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_external_image.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_mandelbrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_mandelbrot.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_windowed_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/icon_windowed_list.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/interaction_dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/interaction_dp.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/interaction_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/resources/images/interaction_events.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(0c415d6c-f3eb-474f-819e-b23a197c0cae) 4 | { 5 | items: skin_list [ 6 | skin(05d6bb5f-20f0-4cf8-a1c2-9cab54e559ea) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "05d6bb5f-20f0-4cf8-a1c2-9cab54e559ea" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/RawImageFromMemoryExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("ScreenshotExample") 2 | gtf_add_sdk_example( 3 | SOURCES 4 | src/ScreenshotPlugin.cpp 5 | src/Screenshot.h 6 | src/Screenshot.cpp 7 | src/RunStageImpl.h 8 | src/RunStageImpl.cpp 9 | 10 | ) 11 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(48287835-5d81-44d6-bbe3-111d11b81d0a) 4 | { 5 | items: context_list [ 6 | context(94f4c807-6042-40f2-8cf5-de6145e66413) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/datapool.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | dp_items(1f4315dd-e5ac-401a-863b-24c2a6ae1c75) 4 | { 5 | items: dp_item_list [] 6 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/packages/b39186fb-d4d2-41ba-b5d7-c1f40a5e1718.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(b39186fb-d4d2-41ba-b5d7-c1f40a5e1718) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/resources/ScreenshotExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/resources/ScreenshotExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/resources/images/EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/resources/images/EB.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(16da4782-d381-4882-9fde-9062ef42b27b) 4 | { 5 | items: skin_list [ 6 | skin(5c43ad40-2341-4d82-a336-82e6bf50d6f9) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/readme.md: -------------------------------------------------------------------------------- 1 | # ScreenshotExample 2 | 3 | Shows how to capture the last renderer result. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "2c2c7517-1226-4e89-8c3d-e9b8dd50cef7" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "5c43ad40-2341-4d82-a336-82e6bf50d6f9" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/include/export/global/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #endif //GTF_INCLUDED_GLOBAL_DATAPOOL_IDENTIFIERS_H 5 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/include/export/local/datapool/items.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 3 | 4 | #include 5 | 6 | #endif //GTF_INCLUDED_LOCAL_DATAPOOL_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/ScreenshotExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project("WindowListExample") 2 | 3 | gtf_add_sdk_example( 4 | SOURCES 5 | src/RunStageImpl.cpp 6 | src/RunStageImpl.h 7 | src/WindowListPlugin.cpp 8 | ) 9 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/contexts.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | contexts(263cc0e1-c69b-4797-8adc-d76846e08db4) 4 | { 5 | items: context_list [ 6 | context(264459bf-d885-4f6e-826d-ef94d7c41038) 7 | { 8 | name: "HMI" 9 | ownsThread: false 10 | }] 11 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/packages/72d209dd-8335-45f4-a7af-e7b216c28309.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | exported_package(72d209dd-8335-45f4-a7af-e7b216c28309) 4 | { 5 | name: "default.template.package" 6 | color: #EEAA3BFF 7 | templates: template_refs [] 8 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/resources/PT_Sans_Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/WindowListExample/model/resources/PT_Sans_Narrow.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/resources/WindowListExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/WindowListExample/model/resources/WindowListExample.dll -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/resources/fonts/PT_Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/WindowListExample/model/resources/fonts/PT_Sans.ttf -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elektrobit/eb-guide-examples/b94ec197cac7449ac62934fcdae93b9b4ea2a61f/EB_GUIDE_GTF/model_interactions/WindowListExample/model/resources/images/logo.png -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/model/skins.gdata: -------------------------------------------------------------------------------- 1 | EBGUIDE 6.12.0.211022102259; 2 | 3 | skins(1d22a477-60db-42f6-859a-30e5c90956e5) 4 | { 5 | items: skin_list [ 6 | skin(b3c5b664-257e-4239-a5f3-48c75accbade) 7 | { 8 | name: "Standard" 9 | }] 10 | } -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/readme.md: -------------------------------------------------------------------------------- 1 | # WindowListExample 2 | 3 | Shows the basic concept of list handling. 4 | 5 | For instructions see [EB GUIDE GTF examples](../../readme.md) 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/src/include/export/aspects/languages.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_LANGUAGES_H 2 | #define GTF_EXPORT_ASPECTS_LANGUAGES_H 3 | 4 | //! @brief Language: Standard 5 | #define GTF_LANGUAGE_Standard "1be60259-22d9-45ea-9022-24ff55dd06ad" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_LANGUAGES_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/src/include/export/aspects/skins.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_EXPORT_ASPECTS_SKINS_H 2 | #define GTF_EXPORT_ASPECTS_SKINS_H 3 | 4 | //! @brief Skin: Standard 5 | #define GTF_SKIN_Standard "b3c5b664-257e-4239-a5f3-48c75accbade" 6 | 7 | #endif //GTF_EXPORT_ASPECTS_SKINS_H 8 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/src/include/export/global/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 3 | 4 | 5 | #endif //GTF_INCLUDED_GLOBAL_EVENTS_IDENTIFIERS_H 6 | -------------------------------------------------------------------------------- /EB_GUIDE_GTF/model_interactions/WindowListExample/src/include/export/local/events/all_events.h: -------------------------------------------------------------------------------- 1 | #ifndef GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 2 | #define GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 3 | 4 | #include "group_Default.h" 5 | 6 | #endif //GTF_INCLUDED_LOCAL_EVENTS_IDENTIFIERS_H 7 | -------------------------------------------------------------------------------- /EB_GUIDE_Monitor/MonitorUiExtensionTargetViewer/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | --------------------------------------------------------------------------------