4a06163710
Fri May 26 16:48:29 2006 Søren Sandmann <sandmann@redhat.com> * src/effects.c (meta_effect_run_unminimize): Run an unminimize effect * src/window.c (meta_window_unminimize): Store a "was_minimized" boolean in the window. * src/window.c (meta_window_show): If the window was minimized, run an unminimize animation. * src/c-window.c (meta_comp_window_run_unminimize): Add an unminimize animation, running the minimize one in reverse.
72 lines
2.6 KiB
C
72 lines
2.6 KiB
C
/*
|
|
* 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
|
|
|