Mercurial > hg > orthanc-stone
annotate Resources/CodeGeneration/testWasmIntegrated/DefaultLibrary.js @ 593:6bf8f881fcb5
OpenGLBasicPolylineRenderer
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 26 Apr 2019 13:04:56 +0200 |
parents | baa9e1e932db |
children | f185cfcb72a0 |
rev | line source |
---|---|
496
8b6ceae45ba0
Finished (untested) C++, html, typescript, tsc & browserify production.
bgo-osimis
parents:
diff
changeset
|
1 // this file contains the JS method you want to expose to C++ code |
8b6ceae45ba0
Finished (untested) C++, html, typescript, tsc & browserify production.
bgo-osimis
parents:
diff
changeset
|
2 |
8b6ceae45ba0
Finished (untested) C++, html, typescript, tsc & browserify production.
bgo-osimis
parents:
diff
changeset
|
3 mergeInto(LibraryManager.library, { |
8b6ceae45ba0
Finished (untested) C++, html, typescript, tsc & browserify production.
bgo-osimis
parents:
diff
changeset
|
4 // each time the Application updates its status, it may signal it through this method. i.e, to change the status of a button in the web interface |
8b6ceae45ba0
Finished (untested) C++, html, typescript, tsc & browserify production.
bgo-osimis
parents:
diff
changeset
|
5 // It needs to be put in this file so that the emscripten SDK linker knows where to find it. |
498 | 6 SendFreeTextFromCppJS: function(statusUpdateMessage) { |
496
8b6ceae45ba0
Finished (untested) C++, html, typescript, tsc & browserify production.
bgo-osimis
parents:
diff
changeset
|
7 var statusUpdateMessage_ = UTF8ToString(statusUpdateMessage); |
499 | 8 window.SendFreeTextFromCpp(statusUpdateMessage_); |
498 | 9 }, |
10 SendMessageFromCppJS: function(statusUpdateMessage) { | |
11 var statusUpdateMessage_ = UTF8ToString(statusUpdateMessage); | |
12 SendMessageFromCpp(statusUpdateMessage_); | |
496
8b6ceae45ba0
Finished (untested) C++, html, typescript, tsc & browserify production.
bgo-osimis
parents:
diff
changeset
|
13 } |
8b6ceae45ba0
Finished (untested) C++, html, typescript, tsc & browserify production.
bgo-osimis
parents:
diff
changeset
|
14 }); |
499 | 15 |