07-09-2021, 09:48 PM
(This post was last modified: 07-09-2021, 09:49 PM by remkonoteboom.)
I have added the Review widget into the TACTIC 4.8 source code.
https://github.com/Southpaw-TACTIC/TACTI...b3941adb09
There is nothing connected to it, but you can access it with a custom layout:
We should discuss where it should go in the VFX plugin UI.
There are a number flags.
search_keys can be a list of comma separate search_keys or a JSON list
custom_status has a number of modes which have to look at the code to see what they can do.
There are some issues.
1. At the moment, it only opens at a width of 800px. There is no good reason for this, of course, but I will have to look at why this is hard coded at the moment.
2. It is not clear based on the custom_status values where note actually goes. Some work or suggestions are needed to make this better.
3. The drawing mechanism is functional but if you go to scribble too fast, it does miss. I think this can be improved, but it does work.
The code is at: <TACTIC_INSTALL_DIR>/src/tactic/ui/tools/review_wdg.py
https://github.com/Southpaw-TACTIC/TACTI...b3941adb09
There is nothing connected to it, but you can access it with a custom layout:
Code:
<element>
<display class="tactic.ui.tools.ReviewWdg">
<search_keys>sthpw/snapshot?code=SNAPSHOT00000438</search_keys>
</display>
</element>
We should discuss where it should go in the VFX plugin UI.
There are a number flags.
search_keys can be a list of comma separate search_keys or a JSON list
custom_status has a number of modes which have to look at the code to see what they can do.
There are some issues.
1. At the moment, it only opens at a width of 800px. There is no good reason for this, of course, but I will have to look at why this is hard coded at the moment.
2. It is not clear based on the custom_status values where note actually goes. Some work or suggestions are needed to make this better.
3. The drawing mechanism is functional but if you go to scribble too fast, it does miss. I think this can be improved, but it does work.
The code is at: <TACTIC_INSTALL_DIR>/src/tactic/ui/tools/review_wdg.py