Home | History | Annotate | Download | only in wm

Lines Matching defs:WindowState

28 bool WindowState::IsMaximizedOrFullscreenState(ui::WindowShowState show_state) {
33 WindowState::WindowState(aura::Window* window)
62 WindowState::~WindowState() {
65 bool WindowState::HasDelegate() const {
69 void WindowState::SetDelegate(scoped_ptr<WindowStateDelegate> delegate) {
74 ui::WindowShowState WindowState::GetShowState() const {
78 bool WindowState::IsMinimized() const {
82 bool WindowState::IsMaximized() const {
86 bool WindowState::IsFullscreen() const {
90 bool WindowState::IsMaximizedOrFullscreen() const {
94 bool WindowState::IsNormalShowState() const {
99 bool WindowState::IsActive() const {
103 bool WindowState::IsDocked() const {
108 bool WindowState::IsSnapped() const {
113 bool WindowState::CanMaximize() const {
117 bool WindowState::CanMinimize() const {
130 bool WindowState::CanResize() const {
134 bool WindowState::CanActivate() const {
138 bool WindowState::CanSnap() const {
148 bool WindowState::HasRestoreBounds() const {
152 void WindowState::Maximize() {
156 void WindowState::SnapLeft(const gfx::Rect& bounds) {
160 void WindowState::SnapRight(const gfx::Rect& bounds) {
164 void WindowState::Minimize() {
168 void WindowState::Unminimize() {
175 void WindowState::Activate() {
179 void WindowState::Deactivate() {
183 void WindowState::Restore() {
187 void WindowState::ToggleMaximized() {
194 void WindowState::ToggleFullscreen() {
210 void WindowState::SetBoundsInScreen(
218 void WindowState::SaveCurrentBoundsForRestore() {
225 gfx::Rect WindowState::GetRestoreBoundsInScreen() const {
229 gfx::Rect WindowState::GetRestoreBoundsInParent() const {
234 void WindowState::SetRestoreBoundsInScreen(const gfx::Rect& bounds) {
238 void WindowState::SetRestoreBoundsInParent(const gfx::Rect& bounds) {
243 void WindowState::ClearRestoreBounds() {
247 void WindowState::SetPreAutoManageWindowBounds(
252 void WindowState::AddObserver(WindowStateObserver* observer) {
256 void WindowState::RemoveObserver(WindowStateObserver* observer) {
260 void WindowState::OnWindowPropertyChanged(aura::Window* window,
268 void WindowState::SnapWindow(WindowShowType left_or_right,
306 void WindowState::SetWindowShowType(WindowShowType new_window_show_type) {
323 WindowState* GetActiveWindowState() {
328 WindowState* GetWindowState(aura::Window* window) {
331 WindowState* settings = window->GetProperty(internal::kWindowStateKey);
333 settings = new WindowState(window);
339 const WindowState* GetWindowState(const aura::Window* window) {