2004-10-14 14:41:05 +00:00
|
|
|
/*
|
|
|
|
|
* Window Maker window manager
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1997-2004 Alfredo K. Kojima
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
2010-10-08 01:32:11 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-10-14 14:41:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _SWITCHPANEL_H_
|
|
|
|
|
#define _SWITCHPANEL_H_
|
|
|
|
|
|
|
|
|
|
typedef struct SwitchPanel WSwitchPanel;
|
|
|
|
|
|
2009-12-09 21:04:29 +01:00
|
|
|
WSwitchPanel *wInitSwitchPanel(WScreen *scr, WWindow *curwin, Bool class_only);
|
2004-10-14 14:41:05 +00:00
|
|
|
|
|
|
|
|
void wSwitchPanelDestroy(WSwitchPanel *panel);
|
|
|
|
|
|
2013-04-22 14:03:14 +01:00
|
|
|
WWindow *wSwitchPanelSelectNext(WSwitchPanel *panel, int back, int ignore_minimized, Bool class_only);
|
2004-10-19 01:53:11 +00:00
|
|
|
WWindow *wSwitchPanelSelectFirst(WSwitchPanel *panel, int back);
|
2004-10-14 14:41:05 +00:00
|
|
|
|
|
|
|
|
WWindow *wSwitchPanelHandleEvent(WSwitchPanel *panel, XEvent *event);
|
|
|
|
|
|
2004-10-20 03:31:14 +00:00
|
|
|
Window wSwitchPanelGetWindow(WSwitchPanel *swpanel);
|
|
|
|
|
|
2004-10-14 14:41:05 +00:00
|
|
|
#endif /* _SWITCHPANEL_H_ */
|