blob: 1766bb2a8821143770159e0a9ad445f66210701a [file] [log] [blame]
// 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 IOS_CHROME_BROWSER_UI_FANCY_UI_BIDI_CONTAINER_VIEW_H_
#define IOS_CHROME_BROWSER_UI_FANCY_UI_BIDI_CONTAINER_VIEW_H_
#import <UIKit/UIKit.h>
// A UIView that lays outs its subviews based on the direction of the current
// language. If the current language is RTL then during the first call to
// |layoutSubviews|, this view will flip horizontally all its subviews around
// its center axis and adjust the autoresizing masks.
@interface BidiContainerView : UIView
// Adds |subview| to the set of subviews that need to be adjusted to RTL. If the
// current language is RTL, then the next call |layoutSubviews| will flip
// |subview| horizontally around its center axis.
- (void)setSubviewNeedsAdjustmentForRTL:(UIView*)subview;
@end
#endif // IOS_CHROME_BROWSER_UI_FANCY_UI_BIDI_CONTAINER_VIEW_H_