merriam_ is now known as merriam
Kinners has joined #ocaml
lament has quit ["PROSECUTORS WILL BE TRANSGRESSICUTED."]
foxen5 has joined #ocaml
Smerdyakov has joined #ocaml
<
Smerdyakov>
Anyone happen to know how I can get SML/NJ loaded into gdb? =)
<
whee>
use a real language with a real debugger :)
<
Smerdyakov>
Eh, I'm trying to find where something crashes in a C library, actually.
<
Kinners>
you can always attach to a program while its running
<
Smerdyakov>
I found out the right command line params and got it a-workin'.
<
Smerdyakov>
Is there anything like Concurrent ML available for Caml?
<
Smerdyakov>
Anyone know?
<
Kinners>
there's a threads lib, I don't know how it compares to Concurrent ML
lament has joined #ocaml
graydon has left #ocaml []
<
Smerdyakov>
steele, hooray. Is there garbage collection of threads waiting on sychronous events that will never be triggered, as well?
<
steele>
didn't see something like that yet
<
steele>
i just used it with one main thread waiting for events and others threads only sending events
graydon has joined #ocaml
Zadeh has joined #ocaml
Zadeh_ has quit [Read error: 104 (Connection reset by peer)]
Smerdyakov has left #ocaml []
asquii has joined #ocaml
docelic has quit [Read error: 110 (Connection timed out)]
asqui has quit [Connection timed out]
asquii is now known as asqui
Kinners has quit ["leaving"]
skylan has quit [Read error: 110 (Connection timed out)]
notkoza2 has quit [Read error: 110 (Connection timed out)]
skylan has joined #ocaml
notkoza2 has joined #ocaml
skylan has quit ["Reconnecting"]
skylan has joined #ocaml
skylan has quit ["O_O"]
systems has joined #ocaml
lament has quit ["PROSECUTORS WILL BE TRANSGRESSICUTED."]
skylan has joined #ocaml
systems has left #ocaml []
mattam_ has quit ["leaving"]
systems has joined #ocaml
systems has left #ocaml []
whee has quit ["Leaving"]
notkoza2 has quit []
skylan has quit ["Reconnecting"]
skylan has joined #ocaml
graydon has quit ["xchat exiting.."]
docelic has joined #ocaml
rox has quit [Connection timed out]
rox has joined #ocaml
<
docelic>
eo rox ")
docelic is now known as docelic|away
mattam has joined #ocaml
docelic|away is now known as docelic
lament has joined #ocaml
xmkl has quit [Read error: 60 (Operation timed out)]
docelic has quit ["work"]
rox has quit [Read error: 60 (Operation timed out)]
rox has joined #ocaml
xmkl has joined #ocaml
asqui has quit [Read error: 104 (Connection reset by peer)]
asqui has joined #ocaml
lament has quit ["PROSECUTORS WILL BE TRANSGRESSICUTED."]
skylan has quit [Read error: 104 (Connection reset by peer)]
skylan has joined #ocaml
docelic has joined #ocaml
docelic has quit [Operation timed out]
docelic has joined #ocaml
docelic has quit ["Client Exiting"]
rox has quit [Read error: 110 (Connection timed out)]
rox has joined #ocaml
lus|wazze has joined #ocaml
<
lus|wazze>
what is the gui library to use these days BESIDES labltk / lablgtk ?
<
aleksi>
lus, is lablgtk good one?
<
lus|wazze>
lus is a clan
<
lus|wazze>
my name is wazze
lus|wazze is now known as MegaWatS
<
MegaWatS>
so maybe that is better :>
<
MegaWatS>
ok on to your question
<
MegaWatS>
gtk is pretty decent
<
MegaWatS>
but on windows it has some problems
<
MegaWatS>
e.g. with fonts, I haven`t been able to get lablgtk to render extended characters on windows
<
MegaWatS>
while I`m at it does anybody here know what`s the best way in lablgtk to do a simple text display window?
<
steele>
MegaWatS: did you try the gtk2 alpha? it uses unicode for all strings
<
MegaWatS>
no I didn`t
<
MegaWatS>
I didn`t even know such a thing exists :)
<
steele>
it's "still in early development" but the examples all work fine here on unix
docelic has joined #ocaml
<
MegaWatS>
well I will look at it when I have the time :)
<
MegaWatS>
either way that is not my problem here and now
<
MegaWatS>
that was a different project
<
MegaWatS>
right now I`m just looking for the best way to put a text display box
<
steele>
what about using a label?
<
MegaWatS>
I want a text-display box
<
MegaWatS>
ie like in a shell window
<
MegaWatS>
to dispay messages from the scripting language
<
MegaWatS>
und provide a repl
<
MegaWatS>
and even
<
steele>
you need text entry and read-only messages in one window?
<
MegaWatS>
my application will be set up like this:
<
MegaWatS>
a main window
<
MegaWatS>
most of the space is taken up by the major drawing area where the data is displayed
<
MegaWatS>
to the left of that is a panel for some buttons
<
MegaWatS>
below that is supposed to be a terminal-like text output window
<
MegaWatS>
where the scripting language puts its messages
<
MegaWatS>
ideally, then you could also enter expressions and commands there to be directly executed
<
MegaWatS>
in a previous application I simply used a GEdit which was disabled for editing
<
MegaWatS>
and pasted the text at the end each time
<
steele>
that's what i would have suggested
<
MegaWatS>
but that doesn`t work out too well for various reasons
<
MegaWatS>
so I`m looking for a better way
<
MegaWatS>
I`m thinking of using a list-box maybe
<
steele>
that doesn't handle mixing input and output good
<
MegaWatS>
the input should`t be a problem
<
steele>
or you would have to do it like the caml toplevel in emacs
<
MegaWatS>
I can simply put a text entry box below the output display
<
steele>
yeah i mean in the same widget
<
MegaWatS>
that would neatly separate the command nput and results display as well
graydon has joined #ocaml
MegaWatS has quit ["GAH-moak"]
docelic is now known as nudedude
whee has joined #ocaml
matkor has joined #ocaml
karryall has quit []
gehel has quit [Read error: 110 (Connection timed out)]
lament has joined #ocaml
mrvn has joined #ocaml
<
mrvn>
anyone know how to debug an already running ocaml prog?
<
mrvn>
Kann mal bitte wer "telnet mrvn.homeip.nt 4662" versuchen.
rox has quit [Read error: 60 (Operation timed out)]
gehel has joined #ocaml
matkor has quit ["Client Exiting"]
Kinners has joined #ocaml
nudedude has quit [Remote closed the connection]
Yurik has joined #ocaml