Description:
Discussions related to wxWindows framework.
|
|
|
wxMac bitmap problem
|
| |
Hi, I am using wxMac 2.8.8 I have a wxBitmap that is fine if I display it (DrawBitmap) but if I use SaveFile it creates a blank (black) image. I also used ConvertToImage and then saved which also craetes a blank image, I used GetData (from converted image in wxImage) and the data is all 0s. The bitmap is created by Selecting it into a memoryDC and Drawing on to it.... more »
|
|
Idea behind return codes in wxMessageBox?
|
| |
Does anyone know what the idea is behind the wxMessageBox function returning codes like wxYES /wxNO / wxCANCEL instead of wxID_YES / wxID_NO / wxID_CANCEL? This makes it harder to use if you use it in combination with another dialog box (say, one where you ask if the user wants to save) and use a global variable for both return values. Since... more »
|
|
wxFileDialog limitations
|
| |
Hi, I ran into problems when trying to select *many* files at once with wxFileDialog. I'm using version 2.8.9 on 32bit windows. The 'File name:' input field is limited to a length of 2^15 characters. Is it possible to change this? I had a look at the source but it seems none of it is actually used because wxUSE_FILEDLG isn't set.... more »
|
|
How to refresh the list in Linux.
|
| |
Hi All, I build a list control which derived from wxHtmlListBox. There are 100 items in the list. When I press Key Down in keyboard continuely, all the list will be fully filled by just one item untill I release the key. This will not appear in Win32 but Linux. How can I fix it? This will also appear in the wxWidgets//Samples//htlbox.... more »
|
|
wx-users mailing list and this newsgroup
|
| |
Since wx-users was moved to Google Groups, it looks like this newsgroup has become obsolete, as there's no longer a gateway between the mailing list and the newsgroup. I recommend that readers of this group migrate to this Gmane newsgroup: Server: news.gmane.org Newsgroup: gmane.comp.lib.wxwindows.gener al... more »
|
|
Problems with WXK_DELETE and WXK_NUMPAD_DELETE
|
| |
Hi all, I'm trying to catch WXK_DELETE and WXK_NUMPAD_DELETE keypress events when they happen "inside" a wxComboBox. I wrote an event handler called by EVT_CHAR(), but switch(pEvent.m_keyCode) { case WXK_BACK : case WXK_DELETE : case WXK_NUMPAD_DELETE : deleteProc();... more »
|
|
Behavior of HTML Help window
|
| |
When I build and run on Windows XP the HTML Help sample of wxWidgets 2.8.9 located in C:\wxMSW-2.8.9\samples\html\he lp\, the appearance of the resulting help window does not match the options stated for the wxHtmlHelpController constructor at [link].... more »
|
|
wxWidgets and exception safety, i.e. std::bad_alloc
|
| |
I'm wondering, how wxWidgets treats exception safety. The last discussion I found about it is quite old, so I think it's worth to reopen the subject. For example: ...wxFrame* f = ...; wxMenuBar* menuBar = new wxMenuBar; wxMenu* menu = new wxMenu; menu->Append( ID_1, _("Item1") ); funCall(); menuBar->Append( menu, _("&Menu1") );... more »
|
|
3.0, wxString, and STL algorithms
|
| |
Hi, Since wxString (in wxWidgets 3.0) is based on std::basic_string, can I use stl algorithms on wxString? For example, I'd like to use copy_backward() on a wxString. Gerald
|
|
|