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

World: r3wp

[!RebGUI] A lightweight alternative to VID

RebolJohn
11-Oct-2005
[2140]
I use sourceforge - winmerge for windows.  It is a gui diff tool 
that works great and is free.
Graham
11-Oct-2005
[2141]
Area field editing is still quite problematic :(  Put some text in, 
change it by putting a lot more, and then try it with a lot less. 
 The area widget gets confused and the text starts showing halfway 
down the widget.  Resetting lines-no doesn't help.
Graham
20-Oct-2005
[2142x2]
This very odd .. I have a drop-list .. and the contents of the data 
change each time I drop the list down.  It doesn't happen in Ashley's 
example tour.r, and I don't have an action associated with the drop-list.
Ahh... sussed it.  I was composing the layout block inside a function, 
and forgot to copy before passing it to the display function.
JaimeVargas
20-Oct-2005
[2144]
Gotcha
Terry
20-Oct-2005
[2145]
'sussed' -- slang " To infer or discover; figure out: Often used 
by kiwis and aussies."
yeksoon
20-Oct-2005
[2146]
'sussed'


my boss from previous employment have the same problem understanding 
this term when we used it. They are from the States. :)
Allen
20-Oct-2005
[2147x2]
I'd say your boss was a bit suss, if he hadn't sussed out the meaning.
Official Strine dictionary. http://www.macquariedictionary.com.au/dict/slang-s.html
[unknown: 9]
20-Oct-2005
[2149]
They say "sussed out" sometimes in america.  But sussed by itself 
would be odd.  There are many word pairs where one word by itself 
is never used.
Graham
20-Oct-2005
[2150]
I had better stick to proper English henceforth.
OneTom
21-Oct-2005
[2151]
hey, come on, there is no proper english exists >( its never been 
defined, its only referenced all the time. infact it cant really 
be defined. not even without serious accuracy. the language has too 
many dimensions (time, instance, coordinates, target, etc) and the 
values in this space show a great variation, just we dont wanna notice 
it. infact its not very useful to average clusters of this space. 
specifying these cluster boundaries is a constant source of problems.. 
i live in the middle of europe, at a language-wise very sepecial 
place, but i still can experience this problem easily -- if i want 
to..
Graham
21-Oct-2005
[2152]
Sorry, OneTom, it was meant as a joke.
OneTom
21-Oct-2005
[2153x3]
alright, np
i havent read back too much anyway
(too many linguist girlfriends around me... ;)
Graham
21-Oct-2005
[2156x2]
linguist = good with their tongue?
oops ... erase that!
OneTom
21-Oct-2005
[2158]
:) some r
Graham
22-Oct-2005
[2159]
Anyone know if rebgui has a dirty? flag for area/text ?
OneTom
22-Oct-2005
[2160x5]
who is responsible for fixin the regbui docs?
edit.html#section-2.5 :  edit/focus works only if i refer to it as 
ctx-rebgui/edit/focus
it should b fixed either in the doc or in the srce to have that "do" 
block properly binded (if possible.. i dont know, i cant really understand 
fully ladislavs binidology article :/ )
how can i bind actions to key combinations globally?
scenario: i have several field widgets and i'd like to change their 
contents by pressing pgup/pgdn in any of those
OneTom
23-Oct-2005
[2165]
is there anybody here at the moment who can help me develop a csv 
editor interface(, so i can easily translate the qtask interface 
to hungarian)?
Allen
23-Oct-2005
[2166]
Will a REBOL spreadsheet script help you? http://www.devx.com/opensource/Article/27454/0
OneTom
23-Oct-2005
[2167]
dont think so, because the table widget in rebgui is complete enough 
for me in itself, but will check it out
Graham
26-Oct-2005
[2168]
edit-list does not display past the border of a drop-list.
Graham
30-Oct-2005
[2169x2]
would be nice to have in the options list, a way to set the background 
colour for the slider.
Got some bug when I create a form with a radio button where the pf 
in the engage function is none.
OneTom
30-Oct-2005
[2171x2]
has the choose function of the table widget documented somewhere? 
could someone help finding it? ive just saw it in the source so far.. 
it is not documented, maybe we should open the documentation for 
the devoted ones like me who likes documenting while learning undocumented 
stuff. the wikibook comes to mind again :)
... IF it is not documented ...
Graham
30-Oct-2005
[2173]
There's no choose function in the table widget that I can see.
OneTom
30-Oct-2005
[2174]
okay, i was lost in the code, i suppose. but how can i select a row 
or rows programmatically?
Graham
30-Oct-2005
[2175]
well, you have the selected block.
OneTom
30-Oct-2005
[2176]
yeees.. and?
Graham
30-Oct-2005
[2177]
but I think Ashley has to code accessor functions to set these things.
OneTom
30-Oct-2005
[2178x2]
its copied from the data, i would think
its no use to change it. mmmm maybe im wrong and used this feature 
already :)
Graham
30-Oct-2005
[2180]
you could try using the engage function .. ie. to simulate a mouse 
click.
OneTom
30-Oct-2005
[2181x2]
but let me ask another thing meanwhile: how can i redefine the up/dn 
or pgup/pgdn keys for field widgets?
ay.. that would hurt :)
Graham
30-Oct-2005
[2183]
I'm guessing you have to trap those keys in the engage function.
OneTom
30-Oct-2005
[2184x2]
but there is already a smart engage function crafted for widgets 
having textediting capabilities
how can i extend that? what is the best practice for solving such 
situations?
Graham
30-Oct-2005
[2186]
except the cursor keys and page up/down don't work in the text editor 
as of yet.
OneTom
30-Oct-2005
[2187x3]
pardon? which works and which dont? and dont forget about undoing 
and copy/paste. keys for those operations also work
3. question: (im just inspecting rebgui-widgets.r and found this) 
foreach row picked [insert tail blk pick data row]
why is it insert tail blk instead of append blk ?