First  |  Prev |  Next  |  Last
Pages: 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
Re[2]: Alphacolor in wxPen definition
On Thu, 07 Sep 2006 10:54:53 -0300 Ian Britten <britten(a)caris.com> wrote: IB> My Utopian hope is that I can (for example) simply define a colour IB> with a 50% alpha, and then simply drawing a Polygon with that Colour IB> set into a Brush, would get the result that I would expect - Namely, IB> a partially transpa... 8 Sep 2006 03:30
Subclassing wxWidgets controls in an XRC
Hello! I'm trying to create a subclass of wxStaticBox. I have a group of controls and event functions that go with it, but I don't want to have to keep manually copying the code to the various places it is used. I've tried subclassing wxStaticBox, but I can't get my own initialization functions to be c... 7 Sep 2006 12:38
Changing focus\activation between wxTopLevelWindows
All, I'm working on the Xara Xtreme project (xaraxtreme.org) and have hit a problem with implement our keyboard focus rules. We have the concept of galleries which are non-modal windows (i.e. derived from wxTopLevelWindow), which contain a list of possible attributes. Out focus handling rules say that these ... 9 Sep 2006 19:39
Manifest problems
wxMSW 2.7.0-1 Visual C++ 2005 Express Edition I've compiled the wxWidgets library and there is a wx.manifest file in the include\wx\msw directory. I've compiled a project (which I converted from Visual C++ 6 and which compiled and ran fine under it) and the compilation seems to go well under Visual C++ 2005 E... 15 Sep 2006 06:31
wxWidgets and string & iostream
Hello, I have just written the following small code which has the following declaration: wxString xxxx = "TEST"; and i am going to print it out on the following way: std::cout << "xxxx= " << xxxx << endl; There is not problem with compilation or linking but during execution i se segmentation fault + ... 6 Sep 2006 11:00
Onpaint madness
Hi, I'm having troubles with onpaint. XPSP2, wxMSW 2.7.0-1. I'm getting a zillion OnPaint messages with no luck in trynig to handle them. My abbreviated code is at the end. Basically I'm trying to get a wxTimer to periodically poll the USB every second and draw stuff on the screen. If there is no new data the... 5 Sep 2006 15:51
Re[2]: from DLL events
On Fri, 01 Sep 2006 12:41:14 -0500 bray(a)sent.com wrote: I see what your saying about synchronizing the two. However, I was curiors about why wx needs to be used as a dll for this to work. What is wrong with statically linking? The fact that you get two copies of the library compiled with different setti... 1 Sep 2006 18:43
Status of wxDataViewControl?
Hello, in the "roadmap", this is mentioned as the first topic under "high prority", even with a native implementation for GTK and the Mac. :-) Does this mean it's going to be included in the next 2.x release? Presumably, on the Mac, this is going to be implemented using the outlineview? TIA, Sincerel... 4 Sep 2006 10:34
from DLL events
Hello: I wish use wxWidgets from DLLs. I used this code: class wxNoneAppA : public wxApp { public: virtual bool OnInit() { return true; } }; IMPLEMENT_APP_NO_MAIN( wxNoneAppA ) Then call wxInitialize() when it loads. It works fine by itself (not used in a wxApp). However, when I load from a wxAp... 2 Sep 2006 06:13
Changing toolbar bitmap at runtime
Hi all, I'm updating the bitmap on a toolbar tool at runtime as follows: wxBitmap bitmap(...); wxToolBarToolBase *tool = toolbar->RemoveTool(ID_OF_THE_TOOL); tool->SetNormalBitmap(bitmap); toolbar->AddTool(tool); Realize(); GetParent()->Layout(); This works pretty well, ... 2 Sep 2006 19:27
First  |  Prev |  Next  |  Last
Pages: 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452