// Copyright (c) 2010 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. #import #import "chrome/browser/cocoa/styled_text_field_cell.h" #include "base/scoped_nsobject.h" #include "chrome/browser/cocoa/location_bar_view_mac.h" class ExtensionAction; // Holds a |LocationBarImageView| and its current rect. Do not keep references // to this object, only use it directly after calling |-layedOutIcons:|. @interface AutocompleteTextFieldIcon : NSObject { // The frame rect of |view_|. NSRect rect_; // weak, owned by LocationBarViewMac. LocationBarViewMac::LocationBarImageView* view_; } // Returns a new AutocompleteTextFieldIcon object. + (AutocompleteTextFieldIcon*) iconWithRect:(NSRect)rect view:(LocationBarViewMac::LocationBarImageView*)view; @property(assign, nonatomic) NSRect rect; @property(assign, nonatomic) LocationBarViewMac::LocationBarImageView* view; @end // AutocompleteTextFieldCell extends StyledTextFieldCell to provide support for // certain decorations to be applied to the field. These are the search hint // ("Type to search" on the right-hand side), the keyword hint ("Press [Tab] to // search Engine" on the right-hand side), and keyword mode ("Search Engine:" in // a button-like token on the left-hand side). @interface AutocompleteTextFieldCell : StyledTextFieldCell { @private // Set if there is a string to display in a rounded rect on the // left-hand side of the field. Exclusive WRT |hintString_|. scoped_nsobject keywordString_; // Set if there is a string to display as a hint on the right-hand // side of the field. Exclusive WRT |keywordString_|; scoped_nsobject hintString_; // View showing the state of the SSL connection. Owned by the location bar. // Display is exclusive WRT the |hintString_| and |keywordString_|. // This may be NULL during testing. LocationBarViewMac::SecurityImageView* security_image_view_; // List of views showing visible Page Actions. Owned by the location bar. // Display is exclusive WRT the |hintString_| and |keywordString_|. // This may be NULL during testing. LocationBarViewMac::PageActionViewList* page_action_views_; // List of content blocked icons. This may be NULL during testing. LocationBarViewMac::ContentSettingViews* content_setting_views_; } // Chooses |partialString| if |width| won't fit |fullString|. Strings // must be non-nil. - (void)setKeywordString:(NSString*)fullString partialString:(NSString*)partialString availableWidth:(CGFloat)width; // Chooses |anImage| only if all pieces won't fit w/in |width|. // Inputs must be non-nil. - (void)setKeywordHintPrefix:(NSString*)prefixString image:(NSImage*)anImage suffix:(NSString*)suffixString availableWidth:(CGFloat)width; // Suppresses hint entirely if |aString| won't fit w/in |width|. // String must be non-nil. - (void)setSearchHintString:(NSString*)aString availableWidth:(CGFloat)width; - (void)clearKeywordAndHint; - (void)setSecurityImageView:(LocationBarViewMac::SecurityImageView*)view; - (void)setPageActionViewList:(LocationBarViewMac::PageActionViewList*)list; - (void)setContentSettingViewsList: (LocationBarViewMac::ContentSettingViews*)views; // Returns an array of the visible AutocompleteTextFieldIcon objects. Returns // only visible icons. - (NSArray*)layedOutIcons:(NSRect)cellFrame; // Returns the portion of the cell to use for displaying the Page Action icon // at the given index. May be NSZeroRect if the index's action is not visible. // This does a linear walk over all page actions, so do not call this in a loop // to get the position of all page actions. Use |-layedOutIcons:| instead in that // case. - (NSRect)pageActionFrameForIndex:(size_t)index inFrame:(NSRect)cellFrame; @end // Internal methods here exposed for unit testing. @interface AutocompleteTextFieldCell (UnitTesting) @property(readonly) NSAttributedString* keywordString; @property(readonly) NSAttributedString* hintString; @property(readonly) NSAttributedString* hintIconLabel; // Returns the total number of installed Page Actions, visible or not. - (size_t)pageActionCount; // Returns the portion of the cell to use for displaying the security (SSL lock) // icon, leaving space for its label if any. - (NSRect)securityImageFrameForFrame:(NSRect)cellFrame; @end