HomeSort by relevance Sort by last modified time
    Searched refs:TabView (Results 1 - 7 of 7) sorted by null

  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_window_controller.h 37 @class TabView;
81 - (TabWindowController*)detachTabToNewWindow:(TabView*)tabView;
86 - (void)insertPlaceholderForTab:(TabView*)tab
114 - (BOOL)isTabFullyVisible:(TabView*)tab;
156 - (BOOL)isTabDraggable:(NSView*)tabView;
157 - (void)setTab:(NSView*)tabView isDraggable:(BOOL)draggable;
tab_strip_controller.h 22 @class TabView;
111 TabView* placeholderTab_; // weak. Tab being dragged
135 TabView* hoveredTab_; // weak. Tab that the mouse is hovering over
212 - (void)insertPlaceholderForTab:(TabView*)tab
223 - (BOOL)isTabFullyVisible:(TabView*)tab;
tab_view.h 44 @interface TabView : BackgroundGradientView {
127 @interface TabView (TabControllerInterface)
tab_controller.h 26 @class TabView;
85 // The view associated with this controller, pre-casted as a TabView
86 - (TabView*)tabView;
88 // Closes the associated TabView by relaying the message to |target_| to
  /packages/apps/Browser/src/com/android/browser/
TabBar.java 70 private Map<Tab, TabView> mTabMap;
103 mTabMap = new HashMap<Tab, TabView>();
153 TabView tv = buildTabView(tab);
211 } else if (view instanceof TabView) {
212 final Tab tab = ((TabView) view).mTab;
226 private TabView buildTabView(Tab tab) {
227 TabView tabview = new TabView(mActivity, tab); local
228 mTabMap.put(tab, tabview);
    [all...]
TabScrollView.java 19 import com.android.browser.TabBar.TabView;
94 final TabView tv = (TabView) mContentView.getChildAt(i);
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 241 final View tabView = mTabLayout.getChildAt(position);
247 final int scrollPos = tabView.getLeft() - (getWidth() - tabView.getWidth()) / 2;
272 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) {
273 final TabView tabView = new TabView(getContext(), tab, forAdapter);
275 tabView.setBackgroundDrawable(null);
276 tabView.setLayoutParams(new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT,
279 tabView.setFocusable(true)
    [all...]

Completed in 465 milliseconds