trunk 20080912
[gitenigma.git] / src / setup_window.cpp
blob3f495f52fa18660f1f988e87da8e572053fa5180
1 /*
2 * setup_window.cpp
4 * Copyright (C) 2003 Andreas Monzner <ghostrider@tuxbox.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * $Id: setup_window.cpp,v 1.4 2008/01/05 13:47:16 dbluelle Exp $
23 #include <setup_window.h>
25 Signal2<void,eSetupWindow*,int*> eSetupWindow::setupHook;
27 eSetupWindow::eSetupWindow( const char *title, int entries, int width )
28 :eListBoxWindow<eListBoxEntryMenu>(title, entries, width, true)
30 list.setFlags(eListBoxBase::flagHasShortcuts);
32 int eSetupWindow::eventHandler(const eWidgetEvent &event)
34 switch (event.type)
36 case eWidgetEvent::evtAction:
37 if (list.eventHandlerShortcuts(event))
38 return 1;
39 else if (event.action == &i_cursorActions->cancel)
40 close(0);
41 else
42 break;
43 return 1;
44 default:
45 break;
47 return eWindow::eventHandler(event);