|
From: Foster B. <fos...@us...> - 2006-01-24 19:39:28
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/future/widgets/sources/fltk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12473/adobe-source/adobe/future/widgets/sources/fltk Modified Files: display.cpp Log Message: moved win/ directories to win32/ to anticipate a possible widgets port for WPF; added a 'mini-sheet' to Eve so you can save UI state information (what tab is currently selected) without mucking up your Adam model; started the modal_dialog_interface, an API that'll be used to direct a modal dialog interaction between the user and the application (it's still in its infancy); other misc bug fixes Index: display.cpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/future/widgets/sources/fltk/display.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** display.cpp 7 Nov 2005 18:08:58 -0000 1.2 --- display.cpp 24 Jan 2006 19:38:47 -0000 1.3 *************** *** 65,68 **** --- 65,74 ---- /****************************************************************************************************/ + template <> + fltk::Widget* unwrap_display_token<fltk::Widget*, adobe::display_t::position_t>(adobe::display_t::position_t& position) + { return (boost::any_cast<view_wrap>(position)).ref_m; } + + /****************************************************************************************************/ + display_t::display_t() : object_m(new implementation_t()) {} display_t::~display_t() |