2012-08-06 16:00:25 +04:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Sanel Zukan
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-10-03 11:33:08 +04:00
|
|
|
#ifndef __TASKBAR_H__
|
|
|
|
#define __TASKBAR_H__
|
|
|
|
|
|
|
|
#include <FL/Fl_Group.H>
|
2012-05-28 14:57:50 +04:00
|
|
|
#include "Applet.h"
|
2009-10-03 11:33:08 +04:00
|
|
|
|
|
|
|
class TaskButton;
|
|
|
|
class Panel;
|
|
|
|
|
2012-05-30 14:23:27 +04:00
|
|
|
class Taskbar : public Fl_Group {
|
2009-10-03 11:33:08 +04:00
|
|
|
public:
|
|
|
|
TaskButton *curr_active, *prev_active;
|
|
|
|
Panel *panel;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Taskbar();
|
|
|
|
~Taskbar();
|
|
|
|
|
|
|
|
void create_task_buttons(void);
|
|
|
|
|
|
|
|
void resize(int X, int Y, int W, int H);
|
|
|
|
void layout_children(void);
|
|
|
|
|
|
|
|
void update_active_button(int xid = -1);
|
|
|
|
void activate_window(TaskButton *b);
|
|
|
|
void update_child_title(Window xid);
|
2010-03-10 02:38:57 +03:00
|
|
|
void update_child_icon(Window xid);
|
2009-10-03 11:33:08 +04:00
|
|
|
|
|
|
|
void panel_redraw(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|