Enlightenment CVS committal Author : andreas Project : e17 Module : proto
Dir : e17/proto/eflpp/src/evas Modified Files: eflpp_evas.cpp eflpp_evas.h Log Message: - improved EsmartTextEntry and example - abstract EvasEsmart class that eases Esmart object creation - New EvasEsmartGroup with sample implementation of the EvasEsmart class (not complete) =================================================================== RCS file: /cvs/e/e17/proto/eflpp/src/evas/eflpp_evas.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- eflpp_evas.cpp 3 Jul 2007 22:42:36 -0000 1.1 +++ eflpp_evas.cpp 10 Jul 2007 21:38:10 -0000 1.2 @@ -399,10 +399,10 @@ hide(); } -void EvasObject::setFocus() +void EvasObject::setFocus( bool focus ) { - Dout( dc::notice, *this << " setFocus" ); - evas_object_focus_set( o, true ); + Dout( dc::notice, *this << " setFocus:" << focus ); + evas_object_focus_set( o, focus ); } bool EvasObject::hasFocus() const =================================================================== RCS file: /cvs/e/e17/proto/eflpp/src/evas/eflpp_evas.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- eflpp_evas.h 3 Jul 2007 22:42:36 -0000 1.1 +++ eflpp_evas.h 10 Jul 2007 21:38:10 -0000 1.2 @@ -154,7 +154,7 @@ virtual void setVisible( bool visibility ); /* Focus */ - virtual void setFocus(); + virtual void setFocus( bool focus ); virtual bool hasFocus() const; /* Events */ ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs