|
Using a contrib library I compiled wxWidgets, everything went fine, I did make on the main structure. I then did make on the contrib folder under the folder I compiled that configuration to. How do you link a contrib library with a regular wxWidgets project? I'm using Netbeans and GCC/MinGW on Linux/Windows. -- "But shun profa... 21 Apr 2008 22:09
show child dialog / hide parent (toplevel) dialog, and keep app icon in taskbar Dear all I am testing a simple dialog base app, but encounter some basic problem, please give me some direction. I create a top level dialog to process some user configuration info, and then use these parameters to create another (child) dialog, and I hope the original dialog can be hide after the child dialog... 20 Apr 2008 21:58
blit and BufferedPaintDC Is it possible to use blit with a double buffered paint dc ?I have the following function wxBitmap WorkspaceView::getScreenShot(wxDC& dc) { wxSize screenSize = dc.GetSize(); wxBitmap screenBitmap(screenSize.GetWidth(), screenSize.GetHeight()); wxMemoryDC memDC; memDC.SelectObject(screenBitmap); ... 22 Apr 2008 03:57
wxLocale "cannot set locale" on the basis of the example in the wxWidget book I set up a sngle-selection wxListbox with English, French and Hungarian elements, and the event handler below: void PixName::OnListbox1Selected( wxCommandEvent& event ) { if (m_locale != NULL) delete m_locale; int Rank = lb_Languages->GetSelection(); ... 20 Apr 2008 16:23
wxSplitterWindow gravity? Hello, i'd like to set the position of the splitter at the middle of the wxSplitterWindow, and have it constantly there unless the user moves the sash "by hand". current code uses gravity only to 'grow' the sides, and as such if the user enlarges by odd amounts (for example on XP, if content is displayed whil... 20 Apr 2008 10:48
How do you use __WXFUNCTION__? I'm trying to port some code that used __func__ to identify the current function, to GCC that uses something else, so I'm trying to use __WXFUNCTION__ as documented here: http://www.lpthe.jussieu.fr/~zeitlin/wxWindows/docs/wxwin_miscellany.html#wxfunction This version compiles, unlike all of my other attempts... 21 Apr 2008 07:29
wxString threadsafe? Hi all, I've found an old discussion from 2002 on wx-dev essentially saying that wxString is not thread safe, i.e. I cannot share a wxString between threads. Is this still true? I am using AddPendingEvent to post a wxString object from one thread to another and was under the impression that this is a safe ... 22 Apr 2008 08:56
License manager Hi, How should i implement license keys and such. Based on allowing features in combination with date/version . Is there some wxWidgets code available to that? And how is the approach in general? I found this, which looks oke, but did not try it: http://www.interactive-studios.net/products/qlm.htm Next i... 18 Apr 2008 05:13
Question about developing portable applications I've got a quick question about developing a portable applications. By portable I mean like portable-apps, can run without being installed and without 'touching' user account folders. What is the best way of doing this in wxWidgets. In my application I currently always create a file configuration and use wxS... 18 Apr 2008 08:37
wxWindow without application class On Thu, 17 Apr 2008 21:39:08 -0300 Rômulo Fernandes <romulo.fernandes(a)gmail.com> wrote: RF> Is there a workaround to use a wxWindow without an application class RF> (wxApp) ? Yes, but you still need to initialize the library. Please search the list archives for wxInitialize (or wxInitializer), you'll certainl... 17 Apr 2008 22:05 |