Displaying 3 results from an estimated 3 matches for "recalcsize".
Did you mean:
recalcsizes
2008 Jan 08
28
1.9.3 release, rakefile
Hi
I''d like to put out a 1.9.3 release perhaps later this week/weekend. If
you have a chance to test the build and samples esp with latest
rubygems, please do.
There are still some bugs on the list, and samples to do, but this
should address all the build/install probs that have come up. And it
would be good to get some testing and feedback on some of the new classes.
A note on the
2006 Apr 25
1
Re: -fvirtual and compactdefaultargs (was StaticBoxSizer bug?)
...darcs
repository going but I really don''t recall now whether that''s up and
running (anyone?).
> How do people feel about adding -fvirtual to swig_options in
> rake/rakewx.rb to eliminate redundant wrapper generation? I
> raise this question because prior to declaring RecalcSize() in the
> wxStaticBoxSizer.h, the wrapper generated for it in StaticBoxSizer.cpp
> was a redundant version of what was generated for BoxSizer. Also, how
> about using %feature("compactdefaultargs") across the board (putting it
> in common.i) to reduce the library size? It s...
2007 Jan 25
0
[854] trunk/wxruby2/swig/classes: Add support for GridBagSizer
...+
+
+ // Return the sizer item that has a matching user data (it only compares
+ // pointer values) or NULL if not found. (non-recursive)
+ wxGBSizerItem* FindItemWithData(const wxObject* userData);
+
+
+ // These are what make the sizer do size calculations and layout
+ virtual void RecalcSizes();
+ virtual wxSize CalcMin();
+
+ // Look at all items and see if any intersect (or would overlap) the given
+ // item. Returns true if so, false if there would be no overlap. If an
+ // excludeItem is given then it will not be checked for intersection, for
+ // example it may be...