Search found 15844 matches
- Thu Apr 22, 2021 9:06 pm
- Forum: C++ Development
- Topic: wxScrolledWindow do not scroll to focused wxTextCtrl
- Replies: 11
- Views: 157
Re: wxScrolledWindow do not scroll to focused wxTextCtrl
1. My program do not create new line if next row present. Yours do. Yes, that's a logical bug which should be easy to fix. 2. My Main Issue Is : If you are at last visible row - And you press Enter - Then cursor goes to next line's first text field - which is just beyond the visible port - But scro...
- Thu Apr 22, 2021 4:59 pm
- Forum: C++ Development
- Topic: wxScrolledWindow do not scroll to focused wxTextCtrl
- Replies: 11
- Views: 157
Re: wxScrolledWindow do not scroll to focused wxTextCtrl
I rewrote your code a bit, this worked for me:
- Thu Apr 22, 2021 1:58 pm
- Forum: C++ Development
- Topic: wxScrolledWindow do not scroll to focused wxTextCtrl
- Replies: 11
- Views: 157
Re: wxScrolledWindow do not scroll to focused wxTextCtrl
Can you post some compilable code that shows the problem?
- Thu Apr 22, 2021 11:55 am
- Forum: C++ Development
- Topic: Best way to draw non-antialiased image with alpha support?
- Replies: 2
- Views: 38
Re: Best way to draw non-antialiased image with alpha support?
Create a wxBitmap with explicit depth of 32.
Use wxPixelData to manipulate the wxBitmap data. https://docs.wxwidgets.org/trunk/classw ... _data.html
Use a "normal" wxDC and SetUserScale() to scale the bitmap while drawing.
Use wxPixelData to manipulate the wxBitmap data. https://docs.wxwidgets.org/trunk/classw ... _data.html
Use a "normal" wxDC and SetUserScale() to scale the bitmap while drawing.
- Thu Apr 22, 2021 11:54 am
- Forum: C++ Development
- Topic: Copying folders to the clipboard
- Replies: 2
- Views: 37
Re: Copying folders to the clipboard
Are you saying that you tried wxFileDataObject and it does not work with folders?
- Thu Apr 22, 2021 10:10 am
- Forum: C++ Development
- Topic: wxScrolledWindow do not scroll to focused wxTextCtrl
- Replies: 11
- Views: 157
Re: wxScrolledWindow do not scroll to focused wxTextCtrl
Code: Select all
txt->GetRect().GetX()
- Wed Apr 21, 2021 4:21 pm
- Forum: General Development
- Topic: Run wx projects on embedded board
- Replies: 4
- Views: 52
Re: Run wx projects on embedded board
OK, how about other embedded systems? If it runs Linux with GTK or X11, there is a good chance, wxWidgets will build on it. There is also wxDFB (FB for framebuffer) which displays a Gui by writing directly into the framebuffer of the graphics card (without running GTK, X11 or similar), but i don't ...
- Wed Apr 21, 2021 1:11 pm
- Forum: General Development
- Topic: Run wx projects on embedded board
- Replies: 4
- Views: 52
Re: Run wx projects on embedded board
If you're talking about a Raspi with GUI (GTK or X11), it definitely works.
- Tue Apr 20, 2021 4:50 pm
- Forum: General Development
- Topic: How to contribute to the wxwidgets C++ Project?
- Replies: 4
- Views: 71
Re: How to contribute to the wxwidgets C++ Project?
Unfortunately all these sites have their own user management, the accounts are not shared among them.
- Tue Apr 20, 2021 4:11 pm
- Forum: General Development
- Topic: How to contribute to the wxwidgets C++ Project?
- Replies: 4
- Views: 71
Re: How to contribute to the wxwidgets C++ Project?
In general it's to good starting point to check the list of open bugs and try to fix one. http://trac.wxwidgets.org/ You can also check recent Google Summer of Code projects and project ideas: https://www.wxwidgets.org/gsoc/projects/ Some of them might already be implemented by now. Before you start...
- Tue Apr 20, 2021 1:56 pm
- Forum: C++ Development
- Topic: size of elements
- Replies: 5
- Views: 123
- Mon Apr 19, 2021 8:03 pm
- Forum: C++ Development
- Topic: size of elements
- Replies: 5
- Views: 123
Re: size of elements
I think this is a good introduction to understand the basic concept behind sizers:
http://neume.sourceforge.net/sizerdemo/
http://neume.sourceforge.net/sizerdemo/
- Mon Apr 19, 2021 6:11 pm
- Forum: C++ Development
- Topic: How to efficiently create wxBitmap from std::vector<std::vector<wxColour>>
- Replies: 2
- Views: 63
Re: How to efficiently create wxBitmap from std::vector<std::vector<wxColour>>
Use wxPixelData to write directly into the bitmap, without the vectors: https://docs.wxwidgets.org/trunk/classwx_pixel_data.html As you're just writing into memory, it's safe from multiple threads. But you must destroy the wxPixelData instance before you use the bitmap for any other operation, like ...
- Sun Apr 18, 2021 8:57 pm
- Forum: Component Writing
- Topic: Creating a custom LED indicator
- Replies: 10
- Views: 247
Re: Creating a custom LED indicator
Pass as "style" to the wxWindow ctor.
And must not have the "dc.Clear();" in the paint event handler.
Code: Select all
Led::Led(wxWindow *parent, wxWindowID id, wxPoint Position, int Size, char color)
: wxWindow(parent, id, Position, wxSize(Size,Size), wxTRANSPARENT_WINDOW )
- Sun Apr 18, 2021 8:28 am
- Forum: C++ Development
- Topic: wxEVT_CHAR works, wxEVT_KEY_UP does not
- Replies: 7
- Views: 136