Displaying 4 results from an estimated 4 matches for "wxclientdc".
Did you mean:
clientdc
2007 Apr 29
0
[ wxruby-Bugs-10438 ] ClientDC segfault on exit
...e ()
#1 0x98bc5f78 in CGContextRestoreGState ()
#2 0x036d8a74 in wxMacCoreGraphicsContext::SetNativeContext(CGContext*) ()
#3 0x036d7e70 in wxMacCoreGraphicsContext::~wxMacCoreGraphicsContext() ()
#4 0x034cea44 in wxDC::~wxDC() ()
#5 0x034cdc6c in wxWindowDC::~wxWindowDC() ()
#6 0x034ce24c in wxClientDC::~wxClientDC() ()
#7 0x030c63ec in SwigDirector_wxClientDC::~SwigDirector_wxClientDC() ()
#8 0x0001f018 in rb_gc_call_finalizer_at_exit () at gc.c:1928
#9 0x000048f8 in ruby_finalize_1 () at eval.c:1548
#10 0x00004a50 in ruby_cleanup (ex=0) at eval.c:1582
#11 0x00004c10 in ruby_stop (ex=-2357985...
2007 May 07
1
[ wxruby-Bugs-10662 ] ClientDC paint not being shown on OS X with 2.8
Bugs item #10662, was opened at 2007-05-07 19:55
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=10662&group_id=35
Category: Incorrect behavior
Group: None
Status: Open
Resolution: None
Priority: 4
Submitted By: Alex Fenton (brokentoy)
Assigned to: Alex Fenton (brokentoy)
Summary: ClientDC paint not being shown on OS X with 2.8
Initial Comment:
2007 Apr 29
0
[983] branches/wxruby2/wxwidgets_282: Make Window#paint work both inside and outside a paint event handler,
.../span><span class="cx"> %import "include/wxDC.h"
</span><span class="cx"> %import "include/wxWindowDC.h"
</span><span class="cx"> %import "include/wxPaintDC.h"
</span><ins>+%import "include/wxClientDC.h"
</ins><span class="cx">
</span><span class="cx">
</span><span class="cx"> %include "include/wxWindow.h"
</span><span class="lines">@@ -147,13 +148,21 @@
</span><span class="cx&q...
2007 Apr 29
0
[991] branches/wxruby2/wxwidgets_282/doc/textile: Update documentation for painting methods and WindowDC subclasses
...0 UTC (rev 990)
+++ branches/wxruby2/wxwidgets_282/doc/textile/clientdc.txtl        2007-04-29 16:33:41 UTC (rev 991)
</span><span class="lines">@@ -1,15 +1,13 @@
</span><span class="cx"> h1(#wxclientdc). Wx::ClientDC
</span><span class="cx">
</span><del>-A ClientDC must be constructed if an application wishes to paint on the
-client area of a window from outside an *OnPaint* event.
-This should normally be constructed as a temporary stack object; don''t...