Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
56 views

Windev application's window components getting distorted while minimising and maximising. Anchoring was used for these actions, hence the components are getting distorted. Gets corrected at the end of ...
Agasthya Harekal's user avatar
2 votes
0 answers
48 views

I’d like to know whether it’s possible to change the background color of a wxButton when the mouse is hovering over it. On Windows, I tried handling the enter/leave window events, but it seems the ...
Reza's user avatar
  • 4,089
0 votes
2 answers
80 views

I would like to fire a wxWidgets custom event from outside of wxFrame or wxApp. How do I do this? Background I have a wxGauge (progress bar) that I want to update from my Model (which is not part of ...
Thomas Matthews's user avatar
0 votes
1 answer
261 views

Please, how can I install wxpython on Fedora os? I have tried installing it but I got the following error. Thank you in advance for your answer. I have the C++ compiler installed on my computer but I ...
Oluwatosin Durodola's user avatar
0 votes
0 answers
71 views

I created this C++ class for my wxWidgets app. The bitmap and image are both transparent. #include <wx/wx.h> #include <wx/image.h> class PouCharacter : public wxWindow { public: ...
stavratum's user avatar
0 votes
0 answers
70 views

I have two related questions: I am on a Linux Mint OS and trying to install wxWidgets from vcpkg and having problems. Has anyone achieved to install wxWidgets from vcpkg on Linux? Are there ...
macroland's user avatar
  • 1,053
1 vote
1 answer
69 views

I created a dialog (on the stack) inside a panel when a user clicks a button. auto* btn_search_patient = new wxButton(panel, wxID_ANY, "Search"); btn_search_patient->Bind(wxEVT_BUTTON, [&...
gagiuntoli's user avatar
0 votes
0 answers
79 views

my wxWidgets application has multiple C++ projects (one executable and all the other static libraries). I am using Visual Studio 2022 with a solution having Debug and Release configurations only for ...
Kérdezösködő Indián's user avatar
-1 votes
1 answer
141 views

I am trying to build wxPython (version 4.2. 4a1) from source for python 3.12.3 using wxWidgets (version 3.2. 7. 1) and SIP (version 6.11. 0) in a Docker container based on Ubuntu 24.04. The build ...
user2943111's user avatar
1 vote
2 answers
87 views

I'm trying to use the wx.FileDialog class to select the name of a file. I don't want to open it. This is a minimal example of what I'm trying to do: import wx if __name__ == '__main__': app = wx....
Anton Lahti's user avatar
1 vote
2 answers
81 views

In my wxWidgets application, I do: Disable all "User" widgets. Create a thread to read, parse and store data from a file. I want to send a message (event?) to the main application from the ...
Thomas Matthews's user avatar
0 votes
2 answers
85 views

I built wxWidgets in Windows with cmake cmake -G "MinGW Makefiles" /path/to/wxWidgets/ -DwxBUILD_SAMPLES=ALL cmake --build . Now I got a lot of output files in folders build\samples\...
joinow's user avatar
  • 7
-1 votes
2 answers
182 views

I implemented a C++ rendering software. Users are allowed to import image files inside it. I want my software to support any possible language in the world. Right now importing for example a Chinese ...
TheChamp's user avatar
1 vote
0 answers
100 views

I am encountering issues with the rendering of wxWidgets examples that make use of wxGLCanvas, code that had worked correctly under possibly previous version of wxWidgets and associated libraries, but ...
Shaqmeister's user avatar
4 votes
1 answer
201 views

I am working on a C++ application that uses many DLLs. I am migrating the application to build with the Windows 10 SDK. After I thought I had successfully rebuilt all DLLs and the EXE to use the ...
Shane Bishop's user avatar
  • 5,052
-1 votes
1 answer
70 views

I am creating a GUI using wxWidgets in C++, however one issue I am having is the buttons won't load properly when I use a wxStaticBitmap background. I have moved the code everywhere in different ...
Calax's user avatar
  • 91
0 votes
0 answers
85 views

This piece of code is part of one of my wxFrames for a sign up page. I am trying to run some Python code from C++ in order to switch frames, depending on the output of the Python file. (I use this: ...
Calax's user avatar
  • 91
-1 votes
2 answers
136 views

I'm using Visual studio 2017 on a x86 machine, app is for 32bit. wxWidgets version 3.1.2; I have duplicated a project under another folder to serve as base of a new one, and, once removed all that is ...
JLB85's user avatar
  • 17
0 votes
0 answers
124 views

I'm trying to compile the wxWidgets grid sample application in Visual Studio Code using Mingw64. So far I haven't been successful despite intensive search for potential root causes and solutions. The ...
Ultra Junkie's user avatar
0 votes
1 answer
131 views

I am trying to detect a double-click on a tab in wxAuiNotebook in wxWidgets (C++). However, I can't find any event in the wxAuiNotebook event system that corresponds to this action. In wxPython, there ...
Harold Finch's user avatar
1 vote
1 answer
96 views

I'm working on a wxWidgets application and trying to add a checkbox to a wxPropertyGrid. I attempted to use wxBoolProperty, but this property appears as a dropdown (combo box) instead of a checkbox. ...
Harold Finch's user avatar
1 vote
1 answer
161 views

I'm currently developing a wxWidgets application for Windows 10/11 that is supposed to generate a file. This file is security sensitive so minimizing the copies on disk is ideal. As a result, I want ...
dylanweber's user avatar
0 votes
0 answers
131 views

I'm on windows trying to build a project from github with cmake that requires wxwidgets. I followed the directions located here https://docs.wxwidgets.org/3.2.5/overview_cmake.html for building with ...
RYAN RYTEL's user avatar
0 votes
1 answer
300 views

I have written a chart application all using wxDC and its subclasses. However, I realized wxGraphicsContext offers truly superior advantages to wxDC but has its own ecosystem and this is very much ...
macroland's user avatar
  • 1,053
0 votes
1 answer
90 views

In modern wxwidgets using c++, I am trying to transfer information between two wxPanels using a custom event - but it seems I just can't get it right. I get various compiler errors, that I don't ...
Ronen Chriki's user avatar
0 votes
0 answers
92 views

Having such a simple wxFrame: ... wxFrame* mainFrame = new wxFrame(NULL, wxID_ANY, "main frame", wxPoint(10, 20), wxSize(150, 100), wxICONIZE); mainFrame->SetBackgroundColour(wxColor(80, ...
Dario101's user avatar
2 votes
0 answers
79 views

I'm trying to create a simple wxButton button which do have semi-transparent background. There is thy code I'm using: ... m_sizer = new wxBoxSizer(wxVERTICAL); m_pngLoader = new wxPNGHandler(); ...
Dario101's user avatar
0 votes
1 answer
80 views

As the title says - how to disable wxGrid selected (by mouse) cell highlighting like on the attached image. I've tried using the SetCellHighlightColour method but it does NOTHING! There is still this ...
Dario101's user avatar
0 votes
1 answer
708 views

I am using MinGW64 together with Codelite and have just downloaded the latest GNU GCC version packages 14.1 and 14.2. For 14.1 I found 2 packages (UCRT and MSVCRT), for 14.2 I got only the UCRT ...
Ultra Junkie's user avatar
0 votes
2 answers
127 views

Using the very simple wxFrame example form the official wxWidgets site I'd like to set the created window position jut to the very upper left screen corner so I've added the simple frame->...
Dario101's user avatar
0 votes
1 answer
95 views

How can I make the wxGrid instance draggable? That is the wxGrid is embedded on the main wxFrame. By default one can move the whole app window by clicking on the title bar and just dragg. How to make ...
Dario101's user avatar
0 votes
1 answer
180 views

Using wxwidgets in C++, I am trying to bind an event in one class to functions in different classes. Here is a minimal reproducable example: #include <wx/wx.h> #include <wx/notebook.h> #...
Ronen Chriki's user avatar
0 votes
1 answer
87 views

I have an application using wxWidgets, and I'm using the built-in wxLogging to print messages with wxLogError(msg). Essentially, I want to have a macro that takes all my wxLogError calls and adds the ...
Jonathan wheadon's user avatar
0 votes
1 answer
124 views

I am trying to make a Snake game. I am able to get the window opened but have had no luck in drawing the grid on to the window. // Snake.h #pragma once #include <wx/wx.h> #include <stdio.h>...
user26867085's user avatar
-1 votes
1 answer
179 views

I am using wxWebRequest to download a very small (1 KB) text file from the server with the following code: auto WebRequest = wxWebSession::GetDefault().CreateRequest(this, "https://www.pebytes....
macroland's user avatar
  • 1,053
0 votes
2 answers
398 views

I have tried everything from wxWiki to chatGPT and nothing solves my issue, please note that I do not need an alternative solution, and want to understand what I am missing in this implementation. ...
Rahul Raman's user avatar
0 votes
1 answer
123 views

I am writing a code for a GUI in c++ using wxwidgets. In the GUI I have an input panel that recieves information from the user, and an output panel that displays the results of a numeric simulation ...
Ronen Chriki's user avatar
0 votes
1 answer
348 views

I'm currently learning wxWidgets that I'm finding quite flexible so far. However, when I move to wxFormBuilder in order to create more complex UI, it becomes painful. Let me give you a quick example ...
piquesel's user avatar
  • 159
-1 votes
1 answer
115 views

Let's say I have a button on my Frame inside a panel, and I have a static text inside a panel on the same level of the panel where the button is. How can I modify let's say the background colour or ...
Luca Vieceli's user avatar
0 votes
2 answers
84 views

I am using Visual Studio 2022 Here is the code for the mainframe. #include "MainFrame.h" #include <wx/wx.h> MainFrame::MainFrame(const wxString& title) : wxFrame(nullptr, wxID_ANY,...
Calax's user avatar
  • 91
0 votes
1 answer
53 views

My program has a wx.grid.Grid that has a selection mode of GridSelectRows. When the user clicks on it, the entire row is selected, which is what I want. However, the cell on which the user has ...
Sue D. Nymme's user avatar
1 vote
0 answers
71 views

I installed vcpkg and then ran the command vcpkg install wxwidgets. This has successfully installed wxwidgets. To test it, I have the following files: wxsample.cpp class MyApp : public wxApp { public: ...
macroland's user avatar
  • 1,053
0 votes
1 answer
35 views

I created a custom event to pass Card class in the event : #include "card.hpp" class CardEvent: public wxEvent { public: CardEvent(wxEventType eventType, int winid, const Card &...
Infofly's user avatar
-1 votes
1 answer
213 views

how to get WxWidgets IntelliSense for Linux VScode. i was able successfully compile WxWidgets. i added '/home/udan/Documents/Libraries/wxWidgets/include' to include path, but that doesn't seems to ...
Udan Jayanith's user avatar
-1 votes
1 answer
59 views

I have a plot created using wxMathplot library, at initial lunch the plot works perfect, but when I resize the window it stucks and the laptop freezes until I restart it, before the freeze, I noticed ...
Hzine's user avatar
  • 123
0 votes
0 answers
60 views

I am coming from MFC and are currently about to verify wxWidgets. The following code compiles under ucrt64 and runs on a Windows 10 system. My expectation is that the main windows has a size of ...
Steffen's user avatar
0 votes
1 answer
72 views

HDevEngine (Propietary software) is an interpreter for running Programs from a Skripting language in C++. This engine can also Run Pop-Up windows to show the results. I want to avoid the HDevEngine to ...
juanlg's user avatar
  • 3
0 votes
0 answers
201 views

I am facing a frustrating issue when trying to compile a C++ project using wxWidgets, CMake, and MSYS2 on Windows. Although CMake configures the project correctly and finds all the necessary libraries,...
ClynnJDev's user avatar
0 votes
1 answer
93 views

I tried to use wxAutoExcel library to read/write excel files in my wxWidgets app, I built the library from source in the link https://github.com/PBfordev/wxAutoExcel, when including the header in my ...
Hzine's user avatar
  • 123
-1 votes
2 answers
264 views

i can compile c++ file using visual studio, but i wanna compile it using Mingw(gcc / g++). Note: i don't know much about wxWidgets when i run gcc main.cpp -I C:\wxWidgets-3.2.5\include\msvc -I C:\...
Udan Jayanith's user avatar

1
2 3 4 5
86