Search found 2293 matches
- Sat Sep 12, 2020 4:51 pm
- Forum: C++ Development
- Topic: Advanced editor component
- Replies: 16
- Views: 942
Re: Advanced editor component
Late to the party but wx includes CMake support and so you can add it as whole in your build chain
- Sat Jan 25, 2020 8:19 pm
- Forum: Open Discussion
- Topic: Thanks to all members
- Replies: 1
- Views: 1581
Re: Thanks to all members
You are always welcome!
- Fri Jan 17, 2020 12:46 pm
- Forum: Compiler / Linking / IDE Related
- Topic: good and simple to use IDE for wxWidgets based applications?
- Replies: 29
- Views: 3109
Re: good and simple to use IDE for wxWidgets based applications?
The RAD, wxCrafter, was originally nagware; but it is now FOSS and comes with the IDE, CodeLite. Some of the terms, like nagware and FOSS sounds like alien language for me, so could you please explain? Simple google would have done that ;) Nagware (also known as begware, annoyware or a nagscreen) i...
- Fri Jan 17, 2020 7:20 am
- Forum: Compiler / Linking / IDE Related
- Topic: good and simple to use IDE for wxWidgets based applications?
- Replies: 29
- Views: 3109
Re: good and simple to use IDE for wxWidgets based applications?
Didn't saw that David have answered it already.
Take Dave's answer as definitive
Take Dave's answer as definitive
- Fri Jan 17, 2020 7:19 am
- Forum: Compiler / Linking / IDE Related
- Topic: good and simple to use IDE for wxWidgets based applications?
- Replies: 29
- Views: 3109
Re: good and simple to use IDE for wxWidgets based applications?
Took a look at that IDE, but looks like the RAD tool is not for free. Also is there a version of this IDE with compiler? Used to be proprietary but now comes bundled with the IDE. Which OS do you want to use with? MacOS have Clang installed with XCode tools. Linux comes with GCC. It's a time since ...
- Wed Jan 15, 2020 12:01 pm
- Forum: C++ Development
- Topic: wxwidgets flex bison
- Replies: 10
- Views: 1334
Re: wxwidgets flex bison
Or use wxSimpleJSON (self promotiondoublemax wrote: ↑Mon Jan 13, 2020 6:59 pmIn any case you'll probably have to serialize the data somehow. I'd choose JSON for that. Here's a small header-only JSON implementation:
https://github.com/nbsdx/SimpleJSON/

- Wed Jan 15, 2020 12:00 pm
- Forum: C++ Development
- Topic: wxwidgets flex bison
- Replies: 10
- Views: 1334
Re: wxwidgets flex bison
Depends on how complex is the final result. I don't know the code so I can't say with precise!PierSimonTilma wrote: ↑Mon Jan 13, 2020 6:29 pm13-01-2020
Hello evstevemd,
Integration of the flex/bison console app.(C) in the wxWidgets app (C++)
is for me unknown territory. It is probably much more then a copy
and paste operation.
- Wed Jan 15, 2020 11:58 am
- Forum: Compiler / Linking / IDE Related
- Topic: good and simple to use IDE for wxWidgets based applications?
- Replies: 29
- Views: 3109
Re: good and simple to use IDE for wxWidgets based applications?
I think you do not want "good" and "simple". Maybe you want a quick and easy RAD tool. Tim S. RAD tool no meter how easy, without IDE and compiler is of no use for me. So to be more precise, I need IDE with compiler and included RAD tool. You know the best, that my english is really bad, so see no ...
- Mon Jan 13, 2020 8:36 am
- Forum: C++ Development
- Topic: wxwidgets flex bison
- Replies: 10
- Views: 1334
Re: wxwidgets flex bison
I would go wild and suggest that you put your code in a wxWidgets app. Since Flex/Bison is simple C then you can avoid headache of IPC by making it a monolithic app. Assumptions here is, you wrote it!
- Fri Dec 20, 2019 1:23 pm
- Forum: Compiler / Linking / IDE Related
- Topic: good and simple to use IDE for wxWidgets based applications?
- Replies: 29
- Views: 3109
Re: good and simple to use IDE for wxWidgets based applications?
Hi, However even with all that small disadvantages CodeBlocks was still the best posible solution, but since 2 years there are no CodeBlocks releases, which means at least for me it´s dead. This is not entirely true. C::B Nighly are constantly being built. See this forum link . Dunno why they do not...
- Thu Dec 19, 2019 10:40 am
- Forum: C++ Development
- Topic: Disabling toolbar button
- Replies: 3
- Views: 532
Re: Disabling toolbar button
Hi, Hi, What do you mean by "global instance"? The button is dynamically added to the toolbar. Its just a visual appearance that does not match disabled state - I would expect it to be greyed out whereas it just not clickable. Thank you. I mean something along these lines class Frame : public wxFram...
- Fri Dec 13, 2019 2:18 pm
- Forum: C++ Development
- Topic: Disabling toolbar button
- Replies: 3
- Views: 532
Re: Disabling toolbar button
What about keeping global instance of the button and call Disable() on it?
- Tue Dec 10, 2019 6:45 pm
- Forum: C++ Development
- Topic: wxStyledTextCtrl Looses events when inside panel
- Replies: 3
- Views: 469
Re: wxStyledTextCtrl Looses events when inside panel
So I did bind common functionalities to MainFrame and manually call CanCopy/Copy() et al from MainFrame handler.
That solves my issue albeit hackish way!
That solves my issue albeit hackish way!
- Tue Dec 10, 2019 5:10 pm
- Forum: C++ Development
- Topic: wxStyledTextCtrl Looses events when inside panel
- Replies: 3
- Views: 469
Re: wxStyledTextCtrl Looses events when inside panel
Is the wxAuiNotebook part mandatory for this to happen? Or does it also happen if you put the wxSTC in any wxPanel? Have not tested with wxPanel only, but tested: wxSTC-> wxPanel -> wxAUINB = Not working wxSTC-> wxAUINB = working Another addition info is, wxAuiBook is the immediate Child of wxFrame...
- Tue Dec 10, 2019 4:05 pm
- Forum: C++ Development
- Topic: wxStyledTextCtrl Looses events when inside panel
- Replies: 3
- Views: 469
wxStyledTextCtrl Looses events when inside panel
I have a problem that I cannot understand the source of it very well. I have wxAuiNotebook with wxSTC and it works fine. I can do Ctrl+C/V/X and it will work fine. But it I move wxSTC into the wxPanel and then insert the panel to wxAuiNotebook I loose ability to use Keyboard to Copy for example (Ctr...