summaryrefslogtreecommitdiff
path: root/src/c-window.h
blob: c7a574fb7ea42274b9c78b849f0b6909d410e235 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/* 
 * Copyright (C) 2006 Red Hat, Inc.
 * 
 * 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.
 */

#include <cm/node.h>
#include "display.h"
#include "effects.h"

#ifndef C_WINDOW_H
#define C_WINDOW_H

typedef struct _MetaCompWindow MetaCompWindow;

typedef void (* MetaCompWindowDestroy) (MetaCompWindow *window,
                                        gpointer        closure);

MetaCompWindow *meta_comp_window_new (MetaScreen *screen,
				      WsDrawable *drawable,
				      MetaCompWindowDestroy destroy,
				      gpointer data);
CmNode	       *meta_comp_window_get_node (MetaCompWindow *window);
gboolean        meta_comp_window_free (MetaCompWindow *window);
void		meta_comp_window_set_size (MetaCompWindow *window,
					   WsRectangle *size);

void		meta_comp_window_hide (MetaCompWindow *comp_window);
void		meta_comp_window_show (MetaCompWindow *comp_window);
void		meta_comp_window_refresh_attrs (MetaCompWindow *comp_window);
void		meta_comp_window_set_updates (MetaCompWindow *comp_window,
					      gboolean updates);

void		meta_comp_window_explode (MetaCompWindow *comp_window,
					  MetaEffect *effect);
void		meta_comp_window_shrink (MetaCompWindow *comp_window,
					 MetaEffect *effect);
void		meta_comp_window_unshrink (MetaCompWindow *comp_window,
					   MetaEffect *effect);
void		meta_comp_window_run_focus (MetaCompWindow *comp_window,
					    MetaEffect *effect);
void		meta_comp_window_restack (MetaCompWindow *comp_window,
					  MetaCompWindow *above);
void		meta_comp_window_freeze_stack (MetaCompWindow *comp_window);
void		meta_comp_window_thaw_stack (MetaCompWindow *comp_window);
gboolean	meta_comp_window_stack_frozen (MetaCompWindow *comp_window);
void            meta_comp_window_run_minimize (MetaCompWindow *window,
					       MetaEffect     *effect);
void	        meta_comp_window_run_unminimize (MetaCompWindow *comp_window,
						 MetaEffect     *effect);

#if 0
void		meta_comp_window_set_explode (MetaCompWindow *comp_window,
					      double	      level);
#endif

#endif