Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Using Code::Blocks / code blocks and keyboard shortcuts
« Last post by p001 on Yesterday at 07:22:48 pm »
Hello!

I did not find a topic with a version number about which I will write a question.

We have:
1. Kubuntu 24.10 distribution;
2. codeblocks 13046;
3. The keyboard layout is switched (language is changed) using the key combination Shift+Ctrl;

Problem:
Pressing Shift+Ctrl cancels the previous action (similar to Ctrl+z) and changes the language.
If you use a different keyboard shortcut to change the language (meta+space), then there is no cancellation of the action in codeblocks.

Question:
Is this a bug or is it the case for everyone?
2
Using Code::Blocks / Insert special chars
« Last post by Elena on Yesterday at 06:57:23 pm »
Sorry if this seems a stupid question, but isn't there any button or menu to insert special chars, as in most word processors ? For example the tilde, which is missing on italian keyboards, or the copyright char. Opening Windows character map tool every time is impractical, other than having always been buggy and poorly made.
In case really there isn't one in CB I will issue a fearure request :)
Thx
3
Nightly builds / Re: The 15 March 2025 build (13634) is out.
« Last post by ThierryD on Yesterday at 05:20:59 pm »
Last try with another distibution configured into WSL2 on Windows 11 24H2 (64 bit).

New unsuccess to install last nigthly with PPA of Xaviou (only previous nigthly can be installed).

BUT, resolution of screen seem to be correct with this configuration.

Thank's.
4
Help / Re: Codeblocks and wxwidgets 3.3 under Windows
« Last post by Miguel Gimenez on March 25, 2025, 06:21:21 pm »
Fixed in r13642, thank you for reporting and testing.
5
Help / Re: Codeblocks and wxwidgets 3.3 under Windows
« Last post by gd_on on March 25, 2025, 06:06:01 pm »
With that patch, it's effectively OK now. Thanks
6
Help / Re: Codeblocks and wxwidgets 3.3 under Windows
« Last post by Miguel Gimenez on March 25, 2025, 05:23:09 pm »
There are only two calls to SetPageToolTip():
  - one is in a loop with well defined range (projectmanagerui.cpp:2199)
  - other uses the result of wxAuiNotebook::GetPageIndex() (editorbase.cpp:169)

Chenging the second part to this
Code
    if (nb)
    {
        const int idx = nb->GetPageIndex(this);
        if (idx != wxNOT_FOUND)
        {
            nb->SetPageToolTip(idx, toolTip);
            Manager::Get()->GetEditorManager()->MarkReadOnly(idx, IsReadOnly() || (fname.FileExists() && !wxFile::Access(fname.GetFullPath(), wxFile::write)) );
        }
    }
should fix the issue.
7
Help / Codeblocks and wxwidgets 3.3 under Windows
« Last post by gd_on on March 25, 2025, 04:00:30 pm »
As wxWidgets 3.3.0 will be released next month (due date April 15th), I'm trying to compile C::B (last svn 13640) with wxwidgets 3.3.0. Compilation and link under Windows 24H2 with Msys2/mingW64 is OK. When I open C::B, it's OK too. But when I open a project, I obtain several wxCHECK_MSG (one by opened tab containing source code) coming from src/aui/auibook.cpp at line 2592, in SetPageToolTip : apparently something wrong with page_idx (invalid page index). Recently, there has been many changes in auibook.cpp. May be it needs some adjustments in C::B for wxWidgets 3.3 (no such problems with wxWidgets 3.2.6) !
8
General (but related to Code::Blocks) / Re: Code::Blocks and FreeBASIC?
« Last post by chameleon on March 24, 2025, 05:52:30 pm »
I also use C++ for 2 decades, but it would be nice to see something like that.
I think it is not very difficult because debugger is gdb and only the compiler is fbc32 or fbc64 (based on gcc).
Of course code completion is not necessery.
Syntax highlighting is not mandatory.
9
Nightly builds / Re: The 15 March 2025 build (13634) is out.
« Last post by dkulp on March 24, 2025, 04:38:39 pm »
Mac version still will not start.   Crashes.

10
Hello, Mikhail!
The mistake was that I accidentally checked the wrong box in the Debug settings. I visited your website, as I understand it, you are actively using Code Blocks. I would like to be able to visit your website and communicate directly (if possible).Hello, Mikhail!
The mistake was that I accidentally checked the wrong box in the Debug settings. I visited your website, as I understand it, you are actively using Code Blocks. I would like to be able to visit your website and communicate directly (if possible).
Pages: [1] 2 3 4 5 6 ... 10