Closed azurvii closed 1 year ago
MyForm
is only generated once in case it is not available. If you have custom implementation it will not be overwritten. I'll consider your suggestion to add a command line flag.
A command line flag -s
/ --skip-shell
will be available in QtJambi 6.5.1.
qtjambi-uic
generates 2 files for a.ui
form. e.g. if my UI widget's name isMyForm
, uic would generateMyForm
andUI_MyForm
.Could you add an option to not generate the
MyForm
? I put generated files in "generated sources", and not part of version control.UI_MyForm
is a mapping from the.ui
file, and I would not want this file in version control, or mysrc/main/
. However,MyForm
is how to use the.ui
file, and contains application logic. This is a file that needs to be in version control andsrc/main/
.MyForm
is also not a file that should be regenerated / overwritten whenever the.ui
file changes. I think it makes sense to not generateMyForm
, and let the us implement it.What do you say?