blob: 62abf3d6c3e215f29893c9fff174a54536307ca1 [file] [log] [blame]
Joe Onorato1e28f412010-12-01 09:33:36 -08001/*
Muyuan Li3b0f8922016-04-18 19:27:29 -07002 * Copyright (C) 2016 The Android Open Source Project
Joe Onorato1e28f412010-12-01 09:33:36 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
Muyuan Li3b0f8922016-04-18 19:27:29 -070014 * limitations under the License
Joe Onorato1e28f412010-12-01 09:33:36 -080015 */
16
Michael Wright0087a142013-02-05 16:29:39 -080017package com.android.systemui.settings;
Joe Onorato1e28f412010-12-01 09:33:36 -080018
Muyuan Li3b0f8922016-04-18 19:27:29 -070019public interface ToggleSlider {
20 interface Listener {
21 void onInit(ToggleSlider control);
22 void onChanged(ToggleSlider slider, boolean tracking, boolean automatic, int value,
23 boolean stopTracking);
Joe Onorato1e28f412010-12-01 09:33:36 -080024 }
25
Muyuan Li3b0f8922016-04-18 19:27:29 -070026 void setOnChangedListener(Listener l);
27 default void setChecked(boolean checked) {}
28 default boolean isChecked() { return false; }
29 void setMax(int max);
30 void setValue(int value);
Joe Onorato1e28f412010-12-01 09:33:36 -080031}