Recent Posts

Pages: 1 ... 3 4 5 6 7 [8] 9 10
71
Development / Re: code completion breaks after changing header file
« Last post by Hyena on June 01, 2025, 08:19:57 am »
Sorry, that's too much to ask. Perhaps it would make sense to contact Antonio Rojas for this (see screenshot for e-mail). He seems to be responsible for packaging C::B on Manjaro's package manager. The package provided is still at version 20.03 anyway, so pumping it to the newest version might be a good idea.
72
Development / Re: code completion breaks after changing header file
« Last post by Pecan on May 31, 2025, 09:10:47 pm »
@Hyena

Have a look at:
https://github.com/pecanh/Clangd_client/blob/main

And read https://github.com/pecanh/Clangd_client/blob/main/HowToInstall.txt

I updated Clangd_client to accommodate the Manjaro wxMutex problem and tested the install instructions twice.

See if they work for you and let me know of any errors.

Thanks
73
Hello Karschti, here I attach a mo-file, in which ca 75% are translated to german language. Put the filte into /usr/share/codeblocks/locale/de_DE/ (under Linux).
regards Michael
74
Using Code::Blocks / Re: Code::Blocks IDE translation to German language
« Last post by Miguel Gimenez on May 30, 2025, 12:01:28 pm »
See this and this.
75
Thanks,

      It took me a little bit of poking around in the project files and testing but I got the process you described to work.  This will save me a fair amount of effort.  Thanks again.

Joe
76
Using Code::Blocks / Re: Code::Blocks IDE translation to German language
« Last post by Karschti on May 29, 2025, 05:38:36 pm »
Hello,

which is  the latest german file?
Which is the right folder to put it in?

Hope for some help.

thx
77
Plugins development / Re: a Qt plugin : QtPregenForCB => AddOnForQt
« Last post by LETARTARE on May 28, 2025, 08:08:46 pm »
- new version 4.1.5
   1- when creating a project using the wizard, validate the construction 'Qt' menus
   2- disable the menu that pops up on 'Workspace'.

New site :
https://sourceforge.net/projects/addonqtforcb/
78
AFAIK there is no automatic way, but you can do it easily. Suppose you have created MyDialog with sources MyDialog.cpp/MyDialog.h:
  - copy MyDialog.cpp/MyDialog.h to the new project folder
  - copy wxsmith/MyDialog.wxs file to the wxsmith folder in the new project folder
  - edit the project with a text editor and add the source files and the wxs

Code
<Unit filename="MyDialog.cpp" />
<Unit filename="MyDialog.h" />
<Unit filename="wxsmith/MyDialog.wxs" />
  - add in the wxsmith section the line associated to the resource, in this case:

Code
<resources>
    ...
    <wxDialog wxs="wxsmith/MyDialog.wxs" src="MyDialog.cpp" hdr="MyDialog.h" fwddecl="0" i18n="1" name="MyDialog" language="CPP" />
    ...
</resources>
You can use the original project as a guide.
79
In my efforts to learn how to use CodeBlocks I have developed a number of projects which focus on a specific set of conditions.  Some of the dialog and control configurations I would like to use in other projects.  Is it possible to extract a dialog I have built in one project and "paste" it into another project, or must the dialog be rebuilt from scratch?

Joe
80
General (but related to Code::Blocks) / Re: File Open Dialog Issue
« Last post by JoeH on May 27, 2025, 11:45:30 pm »
Sorry.  I wasn't sure which arena the issue lay in.

Joe
Pages: 1 ... 3 4 5 6 7 [8] 9 10