Hello,
i missing the option to create the project in a separate directory on the wxNewProjectDialog.
This is at all the other create project dialogs available.
For this reason, i have implement this at my local svn checkout. Here is the patch to adding this.
It would be nice if you could implement this in the main version.
Missing option on the wxNewProjectDialog
-
- CodeLite Enthusiast
- Posts: 12
- Joined: Thu Mar 05, 2009 3:25 pm
- Contact:
Missing option on the wxNewProjectDialog
You do not have the required permissions to view the files attached to this post.
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Missing option on the wxNewProjectDialog
I will have a look at it tomorrow and if it is OK I will probably will commit it
Eran
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Enthusiast
- Posts: 12
- Joined: Thu Mar 05, 2009 3:25 pm
- Contact:
Re: Missing option on the wxNewProjectDialog
OK, i hope is it ok. Thanx...
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Missing option on the wxNewProjectDialog
Committed.
Btw, did u update the UI using form builder? if so, please send me the update form builder form
Eran
Btw, did u update the UI using form builder? if so, please send me the update form builder form
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Enthusiast
- Posts: 12
- Joined: Thu Mar 05, 2009 3:25 pm
- Contact:
Re: Missing option on the wxNewProjectDialog
Thanx!eranif wrote:Committed.
No, i have dont use formbuilder to update the UI. I have adding direct the code for UI in the .h and .cpp file.eranif wrote:Btw, did u update the UI using form builder? if so, please send me the update form builder form
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Missing option on the wxNewProjectDialog
This is not good, since it is hard to change the UI this way. Using the form builder files (trunk/formbuilder/) is the best way to do it for easy UI layout changes additions, I will update the fbp file.guenni81 wrote:No, i have dont use formbuilder to update the UI. I have adding direct the code for UI in the .h and .cpp file.
In the future I will probably insist that the patch will include the fbp file modified as well - it is easier for my maintainance.
Eran
Make sure you have read the HOW TO POST thread
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Missing option on the wxNewProjectDialog
I updated the .fbp file (NewWxProjectBase.fbp file) and it is now committed to SVN.eranif wrote:This is not good, since it is hard to change the UI this way. Using the form builder files (trunk/formbuilder/) is the best way to do it for easy UI layout changes additions, I will update the fbp file.guenni81 wrote:No, i have dont use formbuilder to update the UI. I have adding direct the code for UI in the .h and .cpp file.
In the future I will probably insist that the patch will include the fbp file modified as well - it is easier for my maintainance.
Eran
Also here is a small inside info: files which has "base" in their name are usually files which are auto generated by wxFB, so changes made to them manually, will probably get lost next time I will generate the them
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Enthusiast
- Posts: 12
- Joined: Thu Mar 05, 2009 3:25 pm
- Contact:
Re: Missing option on the wxNewProjectDialog
OK, i will it to consider at the future.