Common use of ZUI in tree-like structures is evident and intuitive. But how could it be applied to structures where children element can belong to several parent elements: like genealogical tree, or product breakdown tree, or users/groups tree? In common ZUI we can choose where to zoom in, but we have only one wayt o zoom out. In non-tree ZUI we have to point somehow where to zoom out. We have also to see where to it is possible to zoom out from here, i.e. to which parents does the item belong. Can...
Now FCStd preview works good without tunnels. Added special image to show for files saved with no-thumbnail option. May be you would want to include it into future EM releases. #%rec:emFpPlugin%# FileTypes = { ".FCStd" ".FCStd1" } Priority = 0.5 Library = "emTmpConv" Function = "emTmpConvFpPluginFunc" Properties = { { Name="OutFileEnding" Value=".png" } { Name="Command" Value=" MYTMPDIR= cleanup () { if test -n \"$MYTMPDIR\" ; then rm -f \"$MYTMPDIR/Thumbnail.png\" rmdir \"$MYTMPDIR\" fi } trap cleanup...
Thank you! Now it works OK with tunnel but I have to get too close to see content (and this is already much better than opening every file). I plan to experiment with 0.95 soon. I tried examples, they look simple and encouraging. But I have not so much experience in C++ and while could made some experiments with TreeExpansion example modification, I did not figured out some questions: 1) When children in this example are deleted: on application exit or on zoom out? 2) How can I assign some custom...
Thank you! Now it works OK with tunnel but I have to get too close to see content (and this is already much better than opening every file). I plan to experiment with 0.95 soon. I tried examples, they look simple and encouraging. But I have not so much experience in C++ and while could made some experiments with TreeExpansion example modification, I did not figured out some questions: 1) When children in this example are deleted: on application exit or on zoom out? 2) How can I assign some custom...
One of the most relevant tasks for ZUI is a scientific research, where one have to navigate asross big libraries of books and articles. But reading them is just a half. What if we could... 1) Making notes on book fields, highlighting and encircling arbitrary regions, bookmaring and linking without opening and modifying book files - keeping changes in some specific file. 2) Instantly editing plain text files and primitive graphics (eg. MS paint style). I have text editor application on my phone which...
And also between EM windows and folders...
Thank you. Trying to implement it. I modified unpack to allow second argument and added the next code block: #--------------------------------- unpack FCStd ---------------------------------- *.FCStd|*.FCStd1) if test $TrustByOption != yes && test $Trust_unzip != yes ; then echo "Scanning archive listing for dangerous paths..." { unzip -l "$ArchFile" || SetErrorHint # for testing the test: # echo "/bla" # echo "../bla" # echo "1234 /bla" # echo "1234 ../bla" # echo "1234 bla/../bla" } | { egrep -v...
1) We are discussing it. 2) A am trying to implement FCStd preview with TmpConv by making new function in emArch.sh (clone of zip unpack code extracting certain thumbnail.png from determined place of FCStd zip-archived file). And I call it from my emTmpConv_FreeCAD.emFpPlugin (clone of archive processing plugin). It works but picture is seen through "archiving tunnel". How can I show it as just png? How to apply emPng library to this extracted image? 3) This is exactly what I was looking for.