discord-jadx/app/src/main/java/com/discord/widgets/voice/controls/VoiceControlsOutputSelector...

34 lines
1.0 KiB
Java

package com.discord.widgets.voice.controls;
import androidx.annotation.DrawableRes;
/* compiled from: VoiceControlsOutputSelectorState.kt */
public enum VoiceControlsOutputSelectorState {
SPEAKER_ON(2131231964, true, false),
SPEAKER_OFF(2131231966, false, false),
BLUETOOTH_ON_AND_MORE(2131231965, true, true),
SPEAKER_ON_AND_MORE(2131231964, true, true),
SPEAKER_OFF_AND_MORE(2131231966, false, true);
private final int audioOutputIconRes;
private final boolean isButtonActive;
private final boolean showMoreOptions;
private VoiceControlsOutputSelectorState(@DrawableRes int i, boolean z2, boolean z3) {
this.audioOutputIconRes = i;
this.isButtonActive = z2;
this.showMoreOptions = z3;
}
public final int getAudioOutputIconRes() {
return this.audioOutputIconRes;
}
public final boolean getShowMoreOptions() {
return this.showMoreOptions;
}
public final boolean isButtonActive() {
return this.isButtonActive;
}
}