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

  /external/chromium_org/chrome/browser/ui/views/panels/
panel_view.cc 103 explicit NativePanelTestingViews(PanelView* panel_view);
126 PanelView* panel_view_;
129 NativePanelTestingViews::NativePanelTestingViews(PanelView* panel_view)
258 return new PanelView(panel, bounds, always_on_top);
265 PanelView::PanelView(Panel* panel, const gfx::Rect& bounds, bool always_on_top)
338 PanelView::~PanelView() {
341 void PanelView::ShowPanel() {
346 void PanelView::ShowPanelInactive()
    [all...]
panel_frame_view.h 13 class PanelView;
32 explicit PanelFrameView(PanelView* panel_view);
110 PanelView* panel_view_;
panel_view.h 28 class PanelView : public NativePanel,
39 PanelView(Panel* panel, const gfx::Rect& bounds, bool always_on_top);
40 virtual ~PanelView();
251 DISALLOW_COPY_AND_ASSIGN(PanelView);
panel_stack_view.cc 228 static_cast<PanelView*>(panel->native_panel())->set_cached_bounds_directly(
405 PanelView* panel_view = static_cast<PanelView*>(panel->native_panel());
464 static_cast<PanelView*>(panel->native_panel())->window();
565 static_cast<PanelView*>(panel->native_panel())->window()));
panel_view_browsertest.cc 30 PanelView* GetPanelView(Panel* panel) const {
31 return static_cast<PanelView*>(panel->native_panel());
panel_frame_view.cc 242 PanelFrameView::PanelFrameView(PanelView* panel_view)
316 PanelView::kResizeInsideBoundsSize - BorderThickness();
415 point, size(), PanelView::kResizeInsideBoundsSize, resizability);
777 mouse_location, size(), PanelView::kResizeInsideBoundsSize, resizability);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java 41 ArrayList<PanelView> mPanels = new ArrayList<PanelView>();
42 PanelView mTouchingPanel;
62 public void addPanel(PanelView pv) {
77 if (v != null && v instanceof PanelView) {
78 addPanel((PanelView) v);
87 public PanelView selectPanelForTouch(MotionEvent touch) {
109 final PanelView panel = selectPanelForTouch(event);
136 // called from PanelView when self-expanding, too
137 public void startOpeningPanel(PanelView panel)
    [all...]
PanelHolder.java 44 public int getPanelIndex(PanelView pv) {
47 final PanelView v = (PanelView) getChildAt(i);
53 public void setSelectedPanel(PanelView pv) {
PhoneStatusBarView.java 37 PanelView mLastFullyOpenedPanel = null;
38 PanelView mNotificationPanel;
67 public void addPanel(PanelView pv) {
95 public PanelView selectPanelForTouch(MotionEvent touch) {
123 public void onPanelFullyOpened(PanelView openPanel) {
147 public void onTrackingStarted(PanelView panel) {
160 public void onTrackingStopped(PanelView panel, boolean expand) {
177 public void panelExpansionChanged(PanelView panel, float frac, boolean expanded) {
PanelView.java 45 public abstract class PanelView extends FrameLayout {
47 public static final String TAG = PanelView.class.getSimpleName();
177 public PanelView(Context context, AttributeSet attrs) {
381 mBar.onTrackingStopped(PanelView.this, expand);
388 mBar.onTrackingStarted(PanelView.this);
    [all...]
NotificationPanelView.java 56 public class NotificationPanelView extends PanelView implements
100 * If set, the ongoing touch gesture might both trigger the expansion in {@link PanelView} and
    [all...]

Completed in 145 milliseconds