Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

demo of a tree interface

 [1/9] from: alain:goye:free at: 3-May-2004 22:27


Hi all, I made this little demo of a tree interface similar to TreePad (TM) - in case it interests someone: http://alain.goye.free.fr/rebol/NoteReb.r Please send me any comments you may have. Alain G.

 [2/9] from: maximo:meteorstudios at: 3-May-2004 17:24


very neat ! -MAx --- You can either be part of the problem or part of the solution, but in the end, being part of the problem is much more fun.

 [3/9] from: alain:goye:free at: 4-May-2004 9:59


Thank you! Actually there are still bugs, and I am working to improve it. Alain.

 [4/9] from: alekk:hipopotam at: 4-May-2004 10:52


----- Original Message ----- From: "Alain Goyé" <[alain--goye--free--fr]> To: <[rebol-list--rebol--com]> Sent: Monday, May 03, 2004 10:27 PM Subject: [REBOL] demo of a tree interface
> Hi all, > > I made this little demo of a tree interface similar to TreePad (TM) - in
case it interests someone:
> http://alain.goye.free.fr/rebol/NoteReb.r > > Please send me any comments you may have. > > Alain G.
Great! Thanks for it! Some time ago i made a function to "read and write" treepad files into rebol objects - because I extensively use it. If You want, I can send it to You. regards Aleksander Kielbratowski

 [5/9] from: jvargas:whywire at: 4-May-2004 18:01


Very Nice! Only problem I see is that it uses some keys that are not available in other platforms or keyboards; ie. insert. Maybe a different key combination will be more portable. Cheers, Jaime -- The best way to predict the future is to invent it -- Alan Kay On May 4, 2004, at 3:59 AM, Alain Goyé wrote:

 [6/9] from: alain:goye:free at: 15-May-2004 10:05


Jaime, I tried to follow your advice and replace the "insert" key with "Ctrl + i" A strange bug happens (is it REBOL or my machine?): The Ctrl + i combination returns the "tab" key code ( #"^-" ) : So the new version (http://alain.goye.free.fr/rebol/NoteReb.r) still uses the same keys but it's easy to change. New features: resize, search, import/export from/to TreePad ( thanks Aleksander ! ) ...and new bugs. Alain.

 [7/9] from: apwing:zonnet:nl at: 15-May-2004 11:44


Hi Alain, have you thought about adding import / export for KeyNote http://www.tranglos.com/free/index.html ? Met vriendelijke groet / with kind regards, Arie van Wingerden http://home.zonnet.nl/rebolution/

 [8/9] from: greggirwin:mindspring at: 15-May-2004 10:41


Hi Alain, AG> I tried to follow your advice and replace the "insert" key with "Ctrl + i" AG> A strange bug happens (is it REBOL or my machine?): AG> The Ctrl + i combination returns the "tab" key code ( #"^-" ) : It's REBOL. You need to use events, where you can see if the ctrl key is pressed, to differentiate between keycodes that map to the same value. Kind of a pain, especially when defining hot-keys for faces. -- Gregg

 [9/9] from: alain:goye:free at: 17-May-2004 20:41


Thank you Gregg for the precision about capturing keystrokes, and Thank you Arie for the idea to look at KeyNote, which I did'nt know about. It looks nice. But just now I am lacking time. NoteReb will stand by for a while, unless someone else wants to carry on... Alain.