Cool :) Thanks for the advice :) I hope it's directly on the top of xlib, not of Xt; i will take a look!<div><br></div><div>Cheers<br><br><div class="gmail_quote">2013/2/3 Robert Heller <span dir="ltr"><<a href="mailto:heller@deepsoft.com" target="_blank">heller@deepsoft.com</a>></span><br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">At Sun, 3 Feb 2013 19:35:41 -0200 Gabriel Duarte <<a href="mailto:confusosk8@gmail.com">confusosk8@gmail.com</a>> wrote:<br>


<br>
><br>
><br>
> Hello!<br>
> No, you didn't get the ideia. I do no want to use a toolkit, I'm writing a<br>
> toolkit. It's an exercise and for fun, not something professional like<br>
> GTK+, Qt or TK. I have already used GTK+ and Qt, even FLTK for my projects,<br>
> so using them is not the big deal. I just asked here for someone who had<br>
> some experience building this kind of stuff and because I'm not so<br>
> experienced to Xlib.<br>
><br>
> Build a text input box is challenging and because of this I asked for some<br>
> advices of how to write it, not use an already done from some other toolkit.<br>
><br>
> Thank you anyway :) I will try this week to build some sketch of the text<br>
> input box :)<br>
<br>
</div>One thought: The widgets in Tcl/Tk are layered right on top of XLib --<br>
so looking at the source code for Tk might prove very enlightening...<br>
<div class="HOEnZb"><div class="h5"><br>
> Cheers<br>
><br>
> 2013/2/2 Robert Heller <<a href="mailto:heller@deepsoft.com">heller@deepsoft.com</a>><br>
><br>
> > At Sat, 02 Feb 2013 14:02:04 -0800 Alan Coopersmith <<br>
> > <a href="mailto:alan.coopersmith@oracle.com">alan.coopersmith@oracle.com</a>> wrote:<br>
> ><br>
> > ><br>
> > > On 02/ 2/13 01:56 PM, Gabriel Duarte wrote:<br>
> > > > I already got window and button widgets working, and now I would like<br>
> > > > to write a text input box, but I have no idea how to start. If someone<br>
> > out<br>
> > > > there have advices, example code, etc etc, I would be very glad.<br>
> > ><br>
> > > The best advice we can give you is to use an existing toolkit.<br>
> > > Correctly handling all the different languages, writing systems,<br>
> > > accessibility helpers, etc. is a multi-year project to write, debug,<br>
> > > and make useful, and one that people have already done for you.<br>
> ><br>
> > And if you are too impatient for that, just use Tcl/Tk.  Tcl is a basic<br>
> > scripting language that comes with a basic GUI toolkit.  One that you<br>
> > can play with *interactively*.  Once you have Tcl/Tk installed (under<br>
> > Linux it is just a matter of<br>
> ><br>
> > # Red Hat flavored (RHEL, CentOS, Scientific Linux, Fedora)<br>
> > yum install tcl tk<br>
> > # Debian flavored (Debian, Ubuntu, Mint, etc.)<br>
> > apt-get install tcl tk<br>
> ><br>
> > ), you can do this ('%'=shell prompt):<br>
> ><br>
> > % wish<br>
> > pack [entry .e]<br>
> ><br>
> > and presto, a text input box.<br>
> ><br>
> > A slightly more exciting example:<br>
> ><br>
> > % wish<br>
> > pack [entry .e] -side left<br>
> > pack [buttom .b \<br>
> >         -text "Hit me" \<br>
> >         -command {puts "You entered: '[.e cget -text]'"}] -side right<br>
> ><br>
> > The packages *should* come with man pages.  Also: visit<br>
> > <a href="http://wiki.tcl.tk/" target="_blank">http://wiki.tcl.tk/</a> for lots of fun stuff.<br>
> ><br>
> > ><br>
> ><br>
> > --<br>
> > Robert Heller             -- <a href="tel:978-544-6933" value="+559785446933">978-544-6933</a> / <a href="mailto:heller@deepsoft.com">heller@deepsoft.com</a><br>
> > Deepwoods Software        -- <a href="http://www.deepsoft.com/" target="_blank">http://www.deepsoft.com/</a><br>
> > ()  ascii ribbon campaign -- against html e-mail<br>
> > /\  <a href="http://www.asciiribbon.org" target="_blank">www.asciiribbon.org</a>   -- against proprietary attachments<br>
> ><br>
> ><br>
> ><br>
> ><br>
><br>
><br>
<br>
--<br>
Robert Heller             -- <a href="tel:978-544-6933" value="+559785446933">978-544-6933</a> / <a href="mailto:heller@deepsoft.com">heller@deepsoft.com</a><br>
Deepwoods Software        -- <a href="http://www.deepsoft.com/" target="_blank">http://www.deepsoft.com/</a><br>
()  ascii ribbon campaign -- against html e-mail<br>
/\  <a href="http://www.asciiribbon.org" target="_blank">www.asciiribbon.org</a>   -- against proprietary attachments<br>
<br>
<br>
<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div>Gabriel Duarte</div>Linux User #471185<br>Rio de Janeiro / RJ<br><a href="http://genericdev.wordpress.com/" target="_blank">http://genericdev.wordpress.com/</a><br>


</div>