Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Plugins development => Topic started by: luckyzhangwei on November 18, 2009, 04:27:15 am

Title: can i use other language to develop the plugin?
Post by: luckyzhangwei on November 18, 2009, 04:27:15 am
hi , i am not very familiar with wxwidgets.
but i am familiar with qt.
can i use qt to develop the plugin and then use it in the codeblocks?
Title: Re: can i use other language to develop the plugin?
Post by: oBFusCATed on November 18, 2009, 01:38:24 pm
Probably no...
But you can make a script plugin... see the wiki
Title: Re: can i use other language to develop the plugin?
Post by: MortenMacFly on November 18, 2009, 02:05:22 pm
can i use qt to develop the plugin and then use it in the codeblocks?
If you separate UI code from the actual "computational" code and write yourself a wrapper to transfer the data, then: yes. However - the plugins main part has to follow the C::B framework (SDK) which already uses wxWidgets stuff, like wxString. But this is far less complex... obviously. ;-)