Displaying 20 results from an estimated 100 matches similar to: "FXMDIChild shrinkwrap to content"
2007 Apr 27
2
mdiclient windows do not always activate on click
I just noticed that MDIClient windows do not automatically become
current when they receive a mouse click, but only do so if the click
happens inside of an enabled widget. This may very well be correct, but
if so then what is the right way to handle it, if you want a more
familiar window-manager behavior (click to focus)?
For example, if you change the mditest.rb example like so...
---
2007 May 19
3
table with no row headers
Is this the right way to turn off row headers?
table.rowHeaderMode = LAYOUT_FIX_WIDTH
table.rowHeaderWidth = 0
--
vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407
2007 Apr 26
3
FXSplitter width is 1 until created
Why is the width of an FXSplitter equal to 1 before the
FXSplitter#create method is called?
My splitter is configured to have LAYOUT_FILL_X, so wouldn''t its width
be determined before its children were created?
It''s not really a big deal, but I was configuring the split based on a
preferences file during initialize, and couldn''t make it work properly.
Doing it in
2005 Jul 31
1
Re: FXRuby on OpenBSD
On Aug 1, 2005, at 4:21 AM, brett s hallett wrote:
> I''m having some problems installing FXRuby on OpenBSD 3.7
>
> -- Note : OpenBSD supplied Ruby 1.8.1 and fox
> version /mnt/cdrom/3.7/packages/i386/fox-1.1.41.tgz
>
> If I try to install any FXRuby against these I get the error message
> " fox version is expiremental" ( something like that !) ,
2005 Dec 22
1
FxTopWindow problem
I have an fxRuby GUI app that I am having problems with. I want to bring up a help window from the main window when someone selects a help/help from the help menu. I have created a helpWindow that inherits from FXDialogBox. It has an FXMenuBar, FXStatusBar, and an FXtext which gets filled with help text from a file. When the help/help menu is selected from the main window, I make a new helpWindow,
2008 Nov 11
3
FXTextField and number of digits after decimal point
Hello,
Here''s the context:
I read a number either pure integer or float with eventually up to 12
digits after the decimal point from a YAML file.
The number is injected into a FXTextField with the following code:
@value_sel = FXDataTarget.new(@value.to_s)
@value_value = FXTextField.new(@matrix_mem_value, 20, at value_sel,
:opts =>TEXTFIELD_NORMAL|JUSTIFY_RIGHT,
2005 Aug 12
5
ANN: Interactive Fiction Mapper v0.5
Okay, I may have some questions about fxruby and probably the easiest way to ask them is by after I show a program.
Plus I am eager to show how much fun I''ve been having... this is still not fully done to call it a v1.0 release, but it is already tons of fun.
Please visit the download section of:
http://rubyforge.org/projects/ifmapper/
There you will find the following:
IFMapper
by
2006 Mar 28
11
setting widget attributes
I''m trying to set attributes of widgets in subclasses like the following.
class PersonTable < FXTable
def initialize(owner)
options = TABLE_COL_SIZEABLE
super(owner, nil, 0, options)
visibleRows = 5
...
end
end
visibleRows doesn''t get set.
However, if I do this
self.visibleRows = 5
then it does.
Shouldn''t it work without "self."?
2004 May 16
0
Fwd: Re: fork
Is there any way we can have fork execute at the point
that it''s called rather than at the top of the script?
Regards,
Dan
Note: forwarded message attached.
__________________________________
Do you Yahoo!?
SBC Yahoo! - Internet access at a great low price.
http://promo.yahoo.com/sbc/
-------------- next part --------------
An embedded message was scrubbed...
From: Joel
2008 Jun 20
2
map24 help
Hi Mapstraction Experts,
I am trying to do some shortest path routing for a project with
university of utah and uc berkeley.I am trying to use the map24 api using
the mapstraction api but i tried a lot and cant fix this error
"Map24.loadAPI is not a function".Any help on this is greatly
appreciated.This below is the code.(Note:mapstraction works excellent with
google and yahoo)
2007 Jan 18
9
QtRuby
Hello,
Has anyone tested QtRuby? I''m doing a small OpenGL application
http://www.discretizer.org and just want to know the arguments for
staying with fxruby.
This is what I have discovered:
Pros:
-Fxruby seems to have a very nice OpenGL support (FXGLViewer) which is
what I really need.
-Nice looks. No unnecessary theming support.
-Very fast and light on system resources.
Cons:
-No
2006 Oct 21
6
Window#paint patch
Attached is a patch and some extra files to fix our
ObjectPreviouslyDeleted crasher with the paint method. As discussed, it
just re-implements the method in Ruby.
I created a directory lib/wx/classes as a place to hold Ruby extensions
to the API. The attached app.rb and window.rb files should be added to
it. When this patch is applied, files in that directory are
automatically required on
2004 Jul 20
7
radiobuttons are weird in 1.2.x series
Hello all,
Run groupbox.rb example in any of the two alpha versions and
click the radiobutton in the upper right group box (those named Hilvesum 1,
Hilversum 2, etc). You''ll notice that once a radiobutton is checked,
it remains checked when some other radiobutton is checked.
What''s the reason?
Thank you.
--
Best regards,
Yuri Leikind
2015 Nov 20
2
[AArch64] bug in shrink-wrapping
Hi Arnaud,
Thanks for following up with that and sorry for the breakage.
Couple of comments:
MachineLoopInfo *MLI;
+ RegScavenger *RS;
Would it make sense to use a unique_ptr here?
That should eliminate the need of having explicit deletes.
+; RUN: llc -mtriple=aarch64-linux-gnu -o - %s
Add -enable-shrink-wrap=true and a second RUN line with -enable-shrink-wrap=false.
Then add check lines
2018 Apr 09
2
Issue with shrink wrapping
Hello,
So, I have this testcase:
void f(int n, int x[]) {
if (n < 0)
return;
int a[n];
for (int i = 0; i < n; i++)
a[i] = x[n - i - 1];
for (int i = 0; i < n; i++)
x[i] = a[i] + 1;
}
that, compiled with -O1/-Os for AArch64 and X86, generates machine code,
which
fails to properly restore the stack pointer upon function return.
2015 Nov 20
2
[AArch64] bug in shrink-wrapping
Hi Quentin,
After shrink-wrapping was enabled as default on AArch64, llc has a seg
fault when compiling the attached .ll file on AArch64.
My command is
llc -mcpu=cortex-a57 bug.ll
Best,
Haicheng
-------------- next part --------------
A non-text attachment was scrubbed...
Name: bug.ll
Type: application/octet-stream
Size: 8983 bytes
Desc: not available
URL:
2018 Apr 10
0
Issue with shrink wrapping
Hello Momchil,
(CC’ing more people that could correct me if I’m wrong)
Thanks for looking into this. More answers below:
> On 9 Apr 2018, at 17:57, Momchil Velikov via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> Hello,
>
> So, I have this testcase:
>
> void f(int n, int x[]) {
> if (n < 0)
> return;
>
> int a[n];
>
2015 Dec 10
2
Allowing virtual registers after register allocation
> On Dec 10, 2015, at 10:49 AM, Derek Schuff <dschuff at google.com> wrote:
>
>
>
> On Thu, Dec 10, 2015 at 10:13 AM Quentin Colombet <qcolombet at apple.com <mailto:qcolombet at apple.com>> wrote:
>
> I am tempted to think no, we don’t, but I don’t know the use cases.
> What post-RA passes with want to run with virtual regs?
>
> The immediate
2015 Aug 13
17
[3.7 Release] Let's fix the release notes!
Dear everyone,
The in-progress release notes for 3.7 [1,2] make it look like we
didn't do very much over the past six months. Obviously that's not the
case at all, so let's get them in shape!
If you've been thinking "I should probably add this to the release
notes at some point", now is the time :-)
I have a list below of changes that might be worth mentioning. I
2015 Dec 10
2
Allowing virtual registers after register allocation
> On Dec 10, 2015, at 9:39 AM, Hal Finkel <hfinkel at anl.gov> wrote:
>
>
>
> ----- Original Message -----
>> From: "Quentin Colombet" <qcolombet at apple.com>
>> To: "Derek Schuff" <dschuff at google.com>
>> Cc: "Hal Finkel" <hfinkel at anl.gov>, llvm-dev at lists.llvm.org
>> Sent: Wednesday, December