summaryrefslogtreecommitdiffstats
path: root/ash/wm/window_animations.h
blob: d6d4512466e7b67945ced80d44dc25cef6661d8a (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
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_WM_WINDOW_ANIMATIONS_H_
#define ASH_WM_WINDOW_ANIMATIONS_H_
#pragma once

#include "ash/ash_export.h"

namespace aura {
class Window;
}

namespace ash {

// A variety of canned animations for window transitions.
enum WindowVisibilityAnimationType {
  WINDOW_VISIBILITY_ANIMATION_TYPE_DEFAULT = 0, // Default. Lets the system
                                                // decide based on window type.
  WINDOW_VISIBILITY_ANIMATION_TYPE_DROP,        // Window shrinks in.
  WINDOW_VISIBILITY_ANIMATION_TYPE_VERTICAL,    // Vertical Glenimation.
  WINDOW_VISIBILITY_ANIMATION_TYPE_FADE         // Fades in/out.
};

void ASH_EXPORT SetWindowVisibilityAnimationType(
    aura::Window* window,
    WindowVisibilityAnimationType type);

namespace internal {

void AnimateOnChildWindowVisibilityChanged(aura::Window* window, bool visible);

}  // namespace internal
}  // namespace ash


#endif  // ASH_WM_WINDOW_ANIMATIONS_H_