Le lundi 18 décembre 2006 à 20:59 +0200, Hisham Mardam Bey a écrit :
> On 12/18/06, Atton Jonathan <[EMAIL PROTECTED]> wrote:
> > hello ;)
> >
> > I write a application with the ETK library. I need to add a scrollbar in
> > a text_view but my scrollbar don't appears.
> >
> > My code:
> >                 frame = etk_frame_new("hehe");
> >                         etk_container_add(ETK_CONTAINER(vbox), frame);
> >                         etk_widget_show(frame);
> >
> >                         scroll = etk_scrolled_view_new ();
> >                         etk_container_add(ETK_CONTAINER(frame), scroll);
> >                         etk_widget_show(scroll);
> >
> >                         abouttext = etk_text_view_new();
> >                         etk_widget_size_request_set(abouttext, -1, 300);
> >                                 
> > etk_object_properties_set(ETK_OBJECT(abouttext),"focusable", ETK_FALSE, 
> > NULL);
> >                                 
> > etk_textblock_text_set(ETK_TEXT_VIEW(abouttext)->textblock,text,ETK_TRUE);
> >                         etk_container_add(ETK_CONTAINER(scroll), abouttext);
> >                         etk_widget_show(abouttext);
> >
> > I don't see all my text because the text_view's size is not enough,
> > that's why I want use a scroll bar.
> >
> > Any ideas ? We can't add a scroll in a text_view atm ?
> >
> 
> Hello,
> 
> Right now, Etk's textview does not support scrolling, hopefully we
> will add it soon. Its advised that you make your textview fill and
> expand (depend on what you want). For some examples, either look at
> etk_test (the textview test in particular) in src/bin or check
> Exhibit's about dialog (exhibit_menu.c if I recall correctly). Another
> way, although not very elegant, would be to add the textview to a
> scrolledview and manually resize the textview. Feel free to hop by
> #etk for more help (=
> 
> Best regards,
> hisham / codewarrior
> 

Ok I see,
I really need this options hehe :p
Etk have a mainling list or site ? or you use this mailing list ?

I have found a bug :o, when you select a text with the mouse, the last
letter is not selected ;)

in fact I try to write a ETK gui for gaim. I use Gaim's library to write
my application.



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to