Home | History | Annotate | Download | only in testingcamera2

Lines Matching refs:pane

47     public void addPane(ControlPane pane) {
48 boolean added = mActivePanes.add(pane);
51 if (listener.getFilterType().isInstance(pane)) {
52 listener.onPaneAdded(pane);
57 public void removePane(ControlPane pane) {
58 boolean existed = mActivePanes.remove(pane);
61 if (listener.getFilterType().isInstance(pane)) {
62 listener.onPaneRemoved(pane);
69 for (ControlPane pane : mActivePanes ) {
70 if (paneClass.isInstance(pane)) {
71 filteredPanes.add(paneClass.cast(pane));
81 for (ControlPane pane: mActivePanes ) {
82 pane.notifyPaneEvent(sourcePane, event);
94 for (ControlPane pane: mActivePanes ) {
95 pane.onOrientationChange(orientation);
122 public abstract void onPaneAdded(ControlPane pane);
123 public abstract void onPaneRemoved(ControlPane pane);