r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[View] discuss view related issues

Janeks
23-Aug-2008
[8041]
I have 64 bit
kcollins
23-Aug-2008
[8042]
I suspect that explains the segmentation fault.
Janeks
23-Aug-2008
[8043x2]
aha
Is there any way to compile rebol for 64bit linux?
kcollins
23-Aug-2008
[8045x4]
Recompile, no. The source code is not available.
However, several months ago I saw something about someone hacking 
it to work on 64 bit Linux.
I believe the Linux version of REBOL uses a libc6 shared library 
by accessing a specific file at a specific location. By putting a 
64 bit version of that file there, they managed to get it to work. 
I may not have the details quite right, but it was something like 
that.
I just tried to google for that discussion, but without success.
Janeks
23-Aug-2008
[8049]
ok
PeterWood
23-Aug-2008
[8050]
These may help:

http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-topic-detail.r?l=0&topic={308227A880B92F1C4D34586C4B0C4BDEDFF1A8DA}
Anton
24-Aug-2008
[8051]
Janeks, see linux group.
amacleod
26-Aug-2008
[8052]
When opening another  window from within a rebol app via view/new 
is there a way to insure the new window stays on top until closed 
(and perhaps keeps focus so the parent window can not be manipulated?)
Henrik
26-Aug-2008
[8053]
amacleod: use INFORM and HIDE-POPUP instead of VIEW and UNVIEW.
amacleod
26-Aug-2008
[8054]
can you use the same options available to view?
Henrik
26-Aug-2008
[8055]
they are almost the same
amacleod
26-Aug-2008
[8056]
I'm looking to hide the title bar. But I do not see how.
Henrik
26-Aug-2008
[8057x2]
but you mustn't use INFORM and UNVIEW. that will lock View up.
not sure that is possible out of the box
amacleod
26-Aug-2008
[8059]
thanks.

I thought I saw something the other day talking about keeping a window 
on top but that might have been a face on top...
Graham
26-Aug-2008
[8060]
Rebgui does that with the /parent refinement.  I think you can use 
options to remove the titlebar
amacleod
26-Aug-2008
[8061x3]
inform and show-popup do not seem to have an options refinement.
view has /parent refinement
sorry...
layout has it
Graham
26-Aug-2008
[8064x2]
don't use inform ... that will give you a modal window
no-title and no-border are options for view
amacleod
26-Aug-2008
[8066]
I want it to be modal
Graham
26-Aug-2008
[8067x3]
try this then
do [face/options: [no-title no-border]
]
amacleod
26-Aug-2008
[8070]
and use inform?
Graham
26-Aug-2008
[8071x2]
yes
hmm.  doesn't work
amacleod
26-Aug-2008
[8073]
Any idea how the /parent refinement works for layout. I can't seem 
to find the right syntax.. 
if its even relevent to what i'm trying to do...
Graham
26-Aug-2008
[8074x3]
not relevant
check how rebgui does it http://trac.geekisp.com/rebgui/browser/functions/display.r
that's the problem with Vid now ... all this stuff is hidden.
amacleod
26-Aug-2008
[8077]
I always hit a wall with vid.
Most of my gui's need more than vid gives us.
Graham
26-Aug-2008
[8078]
VID allows you to setup a basic GUI.  If you need more advanced stuff... 
you need to use View.  That is the problem that Vid3.4 in R3 is going 
to address ( I hope )
Henrik
26-Aug-2008
[8079]
INFORM is unfortunately rather nasty. I had big problems (and still 
have) trying to figure out how its feel object works for my OSX style 
drop down sheets.
Anton
26-Aug-2008
[8080]
http://anton.wildit.net.au/rebol/doc/face-options-dialect.txt
amacleod
26-Aug-2008
[8081]
Good read. Thanks Anton....
But it does not make the new window Modal.

I got what I needed using choose as you also mention in the document 
above.
amacleod
1-Sep-2008
[8082x3]
Anyone have a few examples on using choose function. I've looked 
at "word borwser" but it does not say much on the refinements...
About word browser....

I use it all the time. Its great but I wish they would have finished 
the few things they seemd to have planned...like the "Add comment" 
function. It would be great if poeple could add other examples and 
other interesting points.
I guess it would have required some kind of sign in feature and add 
too much complexity...
Graham
1-Sep-2008
[8085]
Rebol is an unfinished work ...
amacleod
1-Sep-2008
[8086x2]
and many of the tools associated with it...
On choose functio...never mind I got it to do what I needed...
amacleod
2-Sep-2008
[8088]
Is there a way to hold user data in a face. I see a data attribute 
but is htat only for information about the face or can it be used 
to store variables that can be retrieved?
ICarii
2-Sep-2008
[8089]
you can use data: to hold any user data.
amacleod
2-Sep-2008
[8090]
given data dat how do I store it in button_a and retrieve it?
dat: "Bob"
button_a: btn "hello"