/* 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef _UPDATE_
#define _UPDATE_

typedef struct
{
  unsigned do_broadcast_focus : 1;
  unsigned do_redecorate : 1;
  unsigned do_redecorate_transient : 1;
  unsigned do_redraw_decoration : 1;
  unsigned do_resize_window : 1;
  unsigned do_setup_focus_policy : 1;
  unsigned do_setup_frame : 1;
  unsigned do_update_frame_attributes : 1;
  unsigned do_update_icon : 1;
  unsigned do_update_icon_boxes : 1;
  unsigned do_update_icon_font : 1;
  unsigned do_update_icon_placement : 1;
  unsigned do_update_icon_title : 1;
  unsigned do_update_mini_icon : 1;
  unsigned do_update_stick : 1;
  unsigned do_update_stick_icon : 1;
  unsigned do_update_window_color : 1;
  unsigned do_update_window_color_hi : 1;
  unsigned do_update_window_font : 1;
  unsigned do_update_window_font_height : 1;
  unsigned do_update_window_grabs : 1;
  unsigned do_update_modules_flags : 1;
} update_win;

void destroy_scheduled_windows(void);
void apply_decor_change(FvwmWindow *tmp_win);
void flush_window_updates(void);

#endif /* _UPDATE_ */


syntax highlighted by Code2HTML, v. 0.9.1