Update NTK.
[nondaw.git] / FL / menu_popup.C
blobafe3b95afb6aa9aebacf23e298e9f210cf142ba2
2 /*******************************************************************************/
3 /* Copyright (C) 2008 Jonathan Moore Liles                                     */
4 /*                                                                             */
5 /* This program is free software; you can redistribute it and/or modify it     */
6 /* under the terms of the GNU General Public License as published by the       */
7 /* Free Software Foundation; either version 2 of the License, or (at your      */
8 /* option) any later version.                                                  */
9 /*                                                                             */
10 /* This program is distributed in the hope that it will be useful, but WITHOUT */
11 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       */
12 /* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   */
13 /* more details.                                                               */
14 /*                                                                             */
15 /* You should have received a copy of the GNU General Public License along     */
16 /* with This program; see the file COPYING.  If not,write to the Free Software */
17 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18 /*******************************************************************************/
20 #include <FL/Fl.H>
21 #include <FL/Fl_Menu_.H>
22 #include <FL/Fl_Menu_Item.H>
24 /** popup menu and execute callback */
25 bool
26 menu_popup ( Fl_Menu_ *m, int X, int Y )
28     const Fl_Menu_Item *r = m->menu()->popup( X, Y, m->label() );
30     if ( r )
31     {
32         m->value( r );
33         if ( r->callback() )
34             r->do_callback( static_cast<Fl_Widget*>(m) );
35         else if ( m->callback() )
36             m->do_callback( static_cast<Fl_Widget*>(m), m->user_data() );
38         return true;
39     }
41     return false;
44 /** popup menu and execute callback */
45 bool
46 menu_popup ( Fl_Menu_ *m )
48     return menu_popup( m, Fl::event_x(), Fl::event_y() );
51 /** set a single callback for all items in menu.  */
52 void
53 menu_set_callback( Fl_Menu_Item *menu, void (*callback)( Fl_Widget *, void * ), void *user_data )
55     for ( int i = menu->size(); i--; )
56         if ( menu[i].label() && ! menu[i].submenu() )
57         {
58             menu[i].callback( callback );
59             menu[i].user_data( user_data );
60         }