nimakro
04/20/2020, 5:59 AMDustyn
04/20/2020, 9:29 AMthanerian
04/20/2020, 12:12 PMthanerian
04/21/2020, 7:52 AM-icon-color
property using css DSL of tornadofxPedro González
04/21/2020, 8:29 AMDustyn
04/21/2020, 8:50 AMthanerian
04/21/2020, 12:25 PMDustyn
04/21/2020, 1:39 PMPedro González
04/21/2020, 2:36 PMthanerian
04/21/2020, 2:58 PMbrian
04/22/2020, 10:09 AMthanerian
04/22/2020, 1:54 PMPedro González
04/22/2020, 3:09 PMLilly
04/23/2020, 12:19 AMDustyn
04/23/2020, 8:47 AMValV
04/23/2020, 2:15 PMjre/lib/amd64/libavplugin-53.so
jre/lib/amd64/libavplugin-54.so
jre/lib/amd64/libavplugin-55.so
jre/lib/amd64/libavplugin-56.so
jre/lib/amd64/libavplugin-57.so
jre/lib/amd64/libavplugin-ffmpeg-56.so
jre/lib/amd64/libavplugin-ffmpeg-57.so
jre/lib/amd64/libbci.so
jre/lib/amd64/libdcpr.so
jre/lib/amd64/libdeploy.so
jre/lib/amd64/libglassgtk2.so
jre/lib/amd64/libglassgtk3.so
jre/lib/amd64/libglib-lite.so
jre/lib/amd64/libjavafx_font_t2k.so
jre/lib/amd64/libjfr.so
jre/lib/amd64/libjpeg.so
jre/lib/amd64/liblcms.so
jre/lib/amd64/libnpjp2.so
jre/lib/amd64/libresource.so
jre/lib/amd64/libt2k.so
Looks like incomplete JavaFX installation (I'm running OpenJFX)?Dustyn
04/24/2020, 3:26 PMDominaezzz
04/24/2020, 4:04 PMDustyn
04/25/2020, 4:11 PMselectionModel.select(TreeItem(treeNodeViewModel.item))
does not seelct the item .. the item itself has an autogenerated UUID on which the equals method checks against - or should.
My TreeView itself is a fragment and i open the dock via
val master = find<ProjectStructureFragment>()
val detail = find<ProjectStructureEditorView>()
workspace.dock(MasterDetailView(master,detail))
And because i use no where any scope - i should not need to use scope right? its everywhere the "default scope" i think
In the MasterDetailView is again a Fragment actually which root is a splitpane and will add the two arguments
It seems to me somehow i am not able to select the node again.. but if i got the implementation right, javafx will try to find the node based on the TreeNode.value
But wenn i select Entry A in one Dock and Entry B in another, the selected values in the docks are saved when i go back and forth - so somehow it remembers the selectionState - but not from the ItemViewModel ?Dustyn
04/25/2020, 7:46 PMclass MasterDetailView(master: UIComponent, detail: UIComponent) : Fragment() {..}
i want to initate via the find method - i tried the following but that does not work like i expect it to work.. what am i missing?
val master = find<ProjectStructureFragment>()
val detail = find<ProjectStructureEditorView>()
workspace.dock(find<MasterDetailView>("master" to master, "detail" to detail))
Thanks in advancePedro González
04/27/2020, 9:17 AMDominaezzz
04/27/2020, 2:23 PMthanerian
04/27/2020, 3:44 PMVinicius Carvalho
04/27/2020, 9:56 PMVinicius Carvalho
04/28/2020, 12:36 PMlaunch<TornadoApplication>()
give compilation error, as if my TornadoApplication class was not of type javafx.application.Application, even when I extend the App super class. Any ideas on why is this happening? On OpenJDK 13Dustyn
04/28/2020, 1:56 PMDominik wuttke
04/30/2020, 12:05 AMGabriel Sanmartin
04/30/2020, 8:43 AMVinicius Carvalho
04/30/2020, 9:41 PMcellFormat
is removing the graphics, if I remove that section I get the images for the category level, but then toString is called for EmulatorDownload
types. Is there another way to customize the cellFormat to use either text
or graphic
?Vinicius Carvalho
04/30/2020, 10:40 PMNodePrinter
(I'm horrible naming things) that either use toString or a custom (T) -> String
function. For some items I override that callback to print the version property, others that are plain string with the image I let the TreeView print them with the graphic and text
class NodePrinter<T>(val node: T, val callback: (T) -> String = { it.toString()}){
override fun toString(): String {
return callback(node)
}
}
Vinicius Carvalho
04/30/2020, 10:40 PMNodePrinter
(I'm horrible naming things) that either use toString or a custom (T) -> String
function. For some items I override that callback to print the version property, others that are plain string with the image I let the TreeView print them with the graphic and text
class NodePrinter<T>(val node: T, val callback: (T) -> String = { it.toString()}){
override fun toString(): String {
return callback(node)
}
}
Dustyn
05/01/2020, 3:52 AMVinicius Carvalho
05/01/2020, 11:51 AMcellFormat {
text = nodePrinter.displayName()
}
The images will stop showing. I could not find a way (not without a lot of effort at least) to mix text and graphic depending on the item being processedDustyn
05/02/2020, 4:02 AMVinicius Carvalho
05/03/2020, 12:14 AMDustyn
05/03/2020, 11:10 AMVinicius Carvalho
05/03/2020, 4:03 PM