package com.seewo.sdk.event;

import com.seewo.sdk.interfaces.ISDKAudioHelper;
import com.seewo.sdk.interfaces.ISDKPictureHelper;
import com.seewo.sdk.interfaces.ISDKSourceHelper;
import com.seewo.sdk.model.SDKAmsLoginStatus;
import com.seewo.sdk.model.SDKAutoLightState;
import com.seewo.sdk.model.SDKBootAnimationMode;
import com.seewo.sdk.model.SDKBootLogoMode;
import com.seewo.sdk.model.SDKBootMode;
import com.seewo.sdk.model.SDKCameraDevice;
import com.seewo.sdk.model.SDKCollectLightState;
import com.seewo.sdk.model.SDKEnergySaveState;
import com.seewo.sdk.model.SDKHotspotConfig;
import com.seewo.sdk.model.SDKHotspotState;
import com.seewo.sdk.model.SDKIrNotifyState;
import com.seewo.sdk.model.SDKMicroPhoneDevice;
import com.seewo.sdk.model.SDKPanelNeighbors;
import com.seewo.sdk.model.SDKSensor;

/* JADX INFO: loaded from: classes.dex */
public class OSEvent {

    public static class AutoLightChanged {
    }

    public static class BackLightChanged {
    }

    public static class BackLightHolderChanged {
    }

    public static class BlackBoardTouchSwitchClick {
    }

    public static class DHCPInfoChanged {
    }

    public static class FilterBlueLightChanged {
    }

    public static class FreezeScreenStateChanged {
    }

    public static class LanguageChanged {
    }

    public static class MicMuteChanged {
    }

    public static class MuteChanged {
    }

    public static class NoSignalTimeout {
    }

    public static class PowerOff {
    }

    public static class PowerOn {
    }

    public static class SaturationChanged {
    }

    public static class SetVolumeWhenAudioOutputDisabled {
    }

    public static class ShakeScreenStateChanged {
    }

    public static class SoundCardNodeChanged {
    }

    public static class SplicingInitMarginDataChanged {
    }

    public static class TouchReset {
    }

    public static class TouchWhenKeypadLockEnabled {
    }

    private OSEvent() {
    }

    public static class SourceChanged {
        public ISDKSourceHelper.SDKSourceItem sourceItem;

        private SourceChanged() {
        }

        public SourceChanged(ISDKSourceHelper.SDKSourceItem sDKSourceItem) {
            this();
            this.sourceItem = sDKSourceItem;
        }
    }

    public static class SourceStartChange {
        public String reason;
        public ISDKSourceHelper.SDKSourceItem sourceItem;

        private SourceStartChange() {
        }

        public SourceStartChange(ISDKSourceHelper.SDKSourceItem sDKSourceItem, String str) {
            this();
            this.sourceItem = sDKSourceItem;
            this.reason = str;
        }
    }

    public static class SourceChangedImmediately {
        public ISDKSourceHelper.SDKSourceItem sourceItem;

        private SourceChangedImmediately() {
        }

        public SourceChangedImmediately(ISDKSourceHelper.SDKSourceItem sDKSourceItem) {
            this();
            this.sourceItem = sDKSourceItem;
        }
    }

    public static class SourceChangedInPIP {
        public ISDKSourceHelper.SDKSourceItem sourceItem;

        private SourceChangedInPIP() {
        }

        public SourceChangedInPIP(ISDKSourceHelper.SDKSourceItem sDKSourceItem) {
            this();
            this.sourceItem = sDKSourceItem;
        }
    }

    public static class SourcePlugIn {
        public ISDKSourceHelper.SDKSourceItem sourceItem;

        private SourcePlugIn() {
        }

        public SourcePlugIn(ISDKSourceHelper.SDKSourceItem sDKSourceItem) {
            this();
            this.sourceItem = sDKSourceItem;
        }
    }

    public static class SourcePlugInSticky {
        public ISDKSourceHelper.SDKSourceItem sourceItem;

        private SourcePlugInSticky() {
        }

        public SourcePlugInSticky(ISDKSourceHelper.SDKSourceItem sDKSourceItem) {
            this();
            this.sourceItem = sDKSourceItem;
        }
    }

    public static class SourcePlugOut {
        public ISDKSourceHelper.SDKSourceItem sourceItem;

        private SourcePlugOut() {
        }

        public SourcePlugOut(ISDKSourceHelper.SDKSourceItem sDKSourceItem) {
            this();
            this.sourceItem = sDKSourceItem;
        }
    }

    public static class HidUpgradeProgressUpdated {
        public int currentPackages;
        public int totalPackages;

        private HidUpgradeProgressUpdated() {
        }

        public HidUpgradeProgressUpdated(int i, int i2) {
            this();
            this.currentPackages = i;
            this.totalPackages = i2;
        }
    }

    public static class VolumeRangeChanged {
        public int maxVolume;
        public int minVolume;

        private VolumeRangeChanged() {
        }

        public VolumeRangeChanged(int i, int i2) {
            this();
            this.minVolume = i;
            this.maxVolume = i2;
        }
    }

    public static class VolumeChanged {
        public int volume;

        public VolumeChanged() {
        }

        public VolumeChanged(int i) {
            this.volume = i;
        }
    }

    public static class SoundHeadSetHotPlug {
        public boolean mIsPlugin;

        private SoundHeadSetHotPlug() {
        }

        public SoundHeadSetHotPlug(boolean z) {
            this();
            this.mIsPlugin = z;
        }
    }

    public static class BackLightChangedByReason {
        public String reason;
        public int value;

        private BackLightChangedByReason() {
        }

        public BackLightChangedByReason(int i, String str) {
            this();
            this.value = i;
            this.reason = str;
        }
    }

    public static class BrightnessChanged {
        public int brightness;

        private BrightnessChanged() {
        }

        public BrightnessChanged(int i) {
            this();
            this.brightness = i;
        }
    }

    public static class ContrastChanged {
        public int contrast;

        private ContrastChanged() {
        }

        public ContrastChanged(int i) {
            this();
            this.contrast = i;
        }
    }

    public static class HueChanged {
        public int hue;

        private HueChanged() {
        }

        public HueChanged(int i) {
            this();
            this.hue = i;
        }
    }

    public static class SharpChanged {
        public int sharpness;

        private SharpChanged() {
        }

        public SharpChanged(int i) {
            this();
            this.sharpness = i;
        }
    }

    public static class ColorTempChanged {
        public ISDKPictureHelper.SDKColorTemp colorTemp;

        private ColorTempChanged() {
        }

        public ColorTempChanged(ISDKPictureHelper.SDKColorTemp sDKColorTemp) {
            this();
            this.colorTemp = sDKColorTemp;
        }
    }

    public static class PictureModeChanged {
        public ISDKPictureHelper.SDKPictureMode pictureMode;

        private PictureModeChanged() {
        }

        public PictureModeChanged(ISDKPictureHelper.SDKPictureMode sDKPictureMode) {
            this();
            this.pictureMode = sDKPictureMode;
        }
    }

    public static class SolutionChange {
        public ISDKPictureHelper.SDKSolution solution;

        private SolutionChange() {
        }

        public SolutionChange(ISDKPictureHelper.SDKSolution sDKSolution) {
            this();
            this.solution = sDKSolution;
        }
    }

    public static class PowerDialogShown {
        public int countTime;
        public boolean isPcOn;
        public String origin;

        public PowerDialogShown() {
        }

        public PowerDialogShown(String str) {
            this.origin = str;
        }
    }

    public static class PersonIdentification {
        public State state;

        public enum State {
            NO_FIELD,
            FAR_FIELD,
            NEAR_FIELD,
            ALL_FIELD
        }

        private PersonIdentification() {
        }

        public PersonIdentification(State state) {
            this();
            this.state = state;
        }
    }

    public static class AtvProgressUpdate {
        public int foundChannelNum;
        public int frequency;
        public int progress;

        private AtvProgressUpdate() {
        }

        public AtvProgressUpdate(int i, int i2, int i3) {
            this();
            this.frequency = i;
            this.progress = i2;
            this.foundChannelNum = i3;
        }
    }

    public static class DtvProgressUpdate {
        public int frequency;
        public int progress;

        private DtvProgressUpdate() {
        }

        public DtvProgressUpdate(int i, int i2) {
            this();
            this.frequency = i;
            this.progress = i2;
        }
    }

    public static class NoSignalSleepTimeRemaining {
        public int time;

        NoSignalSleepTimeRemaining() {
        }

        public NoSignalSleepTimeRemaining(int i) {
            this();
            this.time = i;
        }
    }

    public static class NoSignalSleepTimeChanged {
        public int time;

        NoSignalSleepTimeChanged() {
        }

        public NoSignalSleepTimeChanged(int i) {
            this();
            this.time = i;
        }
    }

    public static class SignalStateChanged {
        public boolean hasSignal;

        private SignalStateChanged() {
        }

        public SignalStateChanged(boolean z) {
            this();
            this.hasSignal = z;
        }
    }

    public static class HdmiCecDeviceChanged {
        public boolean isDeviceOn;
        public ISDKSourceHelper.SDKSourceItem sourceItem;

        private HdmiCecDeviceChanged() {
        }

        public HdmiCecDeviceChanged(boolean z) {
            this();
            this.isDeviceOn = z;
            this.sourceItem = ISDKSourceHelper.SDKSourceItem.NONE;
        }

        public HdmiCecDeviceChanged(ISDKSourceHelper.SDKSourceItem sDKSourceItem, boolean z) {
            this();
            this.sourceItem = sDKSourceItem;
            this.isDeviceOn = z;
        }
    }

    public static class HdmiCecEnableChanged {
        public boolean isEnable;

        private HdmiCecEnableChanged() {
        }

        public HdmiCecEnableChanged(boolean z) {
            this();
            this.isEnable = z;
        }
    }

    public static class HdmiPlugInOutChanged {
        public boolean isPlugin;

        private HdmiPlugInOutChanged() {
        }

        public HdmiPlugInOutChanged(boolean z) {
            this.isPlugin = z;
        }
    }

    public static class TouchStateChanged {
        public boolean isTouchEnabled;

        private TouchStateChanged() {
        }

        public TouchStateChanged(boolean z) {
            this();
            this.isTouchEnabled = z;
        }
    }

    public static class ScreenStateChanged {
        public boolean isScreenOn;
        public boolean mIsMute;

        private ScreenStateChanged() {
            this.mIsMute = true;
        }

        public ScreenStateChanged(boolean z) {
            this();
            this.isScreenOn = z;
        }

        public ScreenStateChanged(boolean z, boolean z2) {
            this();
            this.isScreenOn = z;
            this.mIsMute = z2;
        }
    }

    public static class SourceSignalChanged {
        public boolean hasSignal;
        public ISDKSourceHelper.SDKSourceItem sourceItem;

        private SourceSignalChanged() {
        }

        public SourceSignalChanged(ISDKSourceHelper.SDKSourceItem sDKSourceItem, boolean z) {
            this();
            this.sourceItem = sDKSourceItem;
            this.hasSignal = z;
        }
    }

    public static class SourceVisibleChanged {
        public ISDKSourceHelper.SDKSourceItem sourceItem;
        public boolean visible;

        private SourceVisibleChanged() {
        }

        public SourceVisibleChanged(ISDKSourceHelper.SDKSourceItem sDKSourceItem, boolean z) {
            this();
            this.sourceItem = sDKSourceItem;
            this.visible = z;
        }
    }

    public static class AllowSourceAliasChanged {
        public boolean isAllow;

        private AllowSourceAliasChanged() {
        }

        public AllowSourceAliasChanged(boolean z) {
            this();
            this.isAllow = z;
        }
    }

    public static class HalfWindowStateChanged {
        public boolean isHalfWindowEnabled;

        private HalfWindowStateChanged() {
        }

        public HalfWindowStateChanged(boolean z) {
            this();
            this.isHalfWindowEnabled = z;
        }
    }

    public static class CustomWindowStateChanged {
        public boolean isCustomWindowEnabled;

        private CustomWindowStateChanged() {
        }

        public CustomWindowStateChanged(boolean z) {
            this();
            this.isCustomWindowEnabled = z;
        }
    }

    public static class PanelNeighborsChanged {
        public SDKPanelNeighbors panelNeighbors;

        private PanelNeighborsChanged() {
        }

        public PanelNeighborsChanged(SDKPanelNeighbors sDKPanelNeighbors) {
            this();
            this.panelNeighbors = sDKPanelNeighbors;
        }
    }

    @Deprecated
    public static class SensorChanged {
        public SDKSensor sensor;
        public long timestamp;
        public float[] values;

        private SensorChanged() {
        }

        public SensorChanged(int i) {
            this();
            this.values = new float[i];
        }
    }

    public static class EyeCareStateChanged {
        public boolean isEyeCareEnabled;

        private EyeCareStateChanged() {
        }

        public EyeCareStateChanged(boolean z) {
            this();
            this.isEyeCareEnabled = z;
        }
    }

    public static class AmsAutoLogoutTimeoutChanged {
        public int timeoutInSeconds;

        private AmsAutoLogoutTimeoutChanged() {
        }

        public AmsAutoLogoutTimeoutChanged(int i) {
            this();
            this.timeoutInSeconds = i;
        }
    }

    public static class AmsLoginStatusChanged {
        public SDKAmsLoginStatus loginStatus;

        private AmsLoginStatusChanged() {
        }

        public AmsLoginStatusChanged(SDKAmsLoginStatus sDKAmsLoginStatus) {
            this();
            this.loginStatus = sDKAmsLoginStatus;
        }
    }

    public static class ActivityLaunched {
        public String className;
        public String packageName;

        private ActivityLaunched() {
        }

        public ActivityLaunched(String str, String str2) {
            this();
            this.packageName = str;
            this.className = str2;
        }
    }

    public static class WirelessMicVolumeChanged {
        public int wirelessMicVolume;

        private WirelessMicVolumeChanged() {
        }

        public WirelessMicVolumeChanged(int i) {
            this.wirelessMicVolume = i;
        }
    }

    public static class WirelessMicEnableChanged {
        public boolean wirelessMicEnable;

        private WirelessMicEnableChanged() {
        }

        public WirelessMicEnableChanged(boolean z) {
            this.wirelessMicEnable = z;
        }
    }

    public static class AudioOutputStateChanged {
        public boolean isAudioOutputEnabled;

        private AudioOutputStateChanged() {
        }

        public AudioOutputStateChanged(boolean z) {
            this();
            this.isAudioOutputEnabled = z;
        }
    }

    public static class FlickerFreeStateChanged {
        public boolean isFlickerFreeEnabled;

        private FlickerFreeStateChanged() {
        }

        public FlickerFreeStateChanged(boolean z) {
            this();
            this.isFlickerFreeEnabled = z;
        }
    }

    public static class VLauncherAppDrawerStateChanged {
        public boolean mVLauncherAppDrawerEnable;

        private VLauncherAppDrawerStateChanged() {
        }

        public VLauncherAppDrawerStateChanged(boolean z) {
            this();
            this.mVLauncherAppDrawerEnable = z;
        }
    }

    public static class BalanceVolumeChanged {
        public int mBalanceVolume;

        private BalanceVolumeChanged() {
        }

        public BalanceVolumeChanged(int i) {
            this.mBalanceVolume = i;
        }
    }

    public static class TrebleVolumeChanged {
        public int mTrebleVolume;

        private TrebleVolumeChanged() {
        }

        public TrebleVolumeChanged(int i) {
            this.mTrebleVolume = i;
        }
    }

    public static class BassVolumeChanged {
        public int mBassVolume;

        private BassVolumeChanged() {
        }

        public BassVolumeChanged(int i) {
            this.mBassVolume = i;
        }
    }

    public static class SoundModeChange {
        public ISDKAudioHelper.SDKSoundMode mSDKSoundMode;

        private SoundModeChange() {
        }

        public SoundModeChange(ISDKAudioHelper.SDKSoundMode sDKSoundMode) {
            this.mSDKSoundMode = sDKSoundMode;
        }
    }

    public static class HotspotState {
        public SDKHotspotState mHotspotState;

        private HotspotState() {
        }

        public HotspotState(SDKHotspotState sDKHotspotState) {
            this();
            this.mHotspotState = sDKHotspotState;
        }
    }

    public static class HotspotConfigChanged {
        public SDKHotspotConfig mHotspotConfig;

        private HotspotConfigChanged() {
        }

        public HotspotConfigChanged(SDKHotspotConfig sDKHotspotConfig) {
            this.mHotspotConfig = sDKHotspotConfig;
        }
    }

    public static class FakePowerOffModeChanged {
        public boolean isInFakePowerOffMode;

        private FakePowerOffModeChanged() {
        }

        public FakePowerOffModeChanged(boolean z) {
            this();
            this.isInFakePowerOffMode = z;
        }
    }

    public static class BootModeChanged {
        public SDKBootMode bootMode;

        private BootModeChanged() {
        }

        public BootModeChanged(SDKBootMode sDKBootMode) {
            this();
            this.bootMode = sDKBootMode;
        }
    }

    public static class NFCSendCardID {
        public String cardId;

        private NFCSendCardID() {
        }

        public NFCSendCardID(String str) {
            this.cardId = str;
        }
    }

    public static class ScreenRecordChanged {
        public boolean pausing;
        public String reason;
        public boolean recording;

        private ScreenRecordChanged() {
        }

        public ScreenRecordChanged(boolean z, boolean z2, String str) {
            this.recording = z;
            this.pausing = z2;
            this.reason = str;
        }

        public String toString() {
            return "ScreenRecordChanged{recording=" + this.recording + ", pausing=" + this.pausing + ", reason='" + this.reason + "'}";
        }
    }

    public static class BootLogoModeChanged {
        public SDKBootLogoMode bootLogoMode;

        private BootLogoModeChanged() {
        }

        public BootLogoModeChanged(SDKBootLogoMode sDKBootLogoMode) {
            this();
            this.bootLogoMode = sDKBootLogoMode;
        }
    }

    public static class BootAnimationModeChanged {
        public SDKBootAnimationMode bootAnimationMode;

        private BootAnimationModeChanged() {
        }

        public BootAnimationModeChanged(SDKBootAnimationMode sDKBootAnimationMode) {
            this();
            this.bootAnimationMode = sDKBootAnimationMode;
        }
    }

    public static class CameraDeviceAttached {
        public SDKCameraDevice cameraDevice;

        private CameraDeviceAttached() {
        }

        public CameraDeviceAttached(SDKCameraDevice sDKCameraDevice) {
            this();
            this.cameraDevice = sDKCameraDevice;
        }
    }

    public static class CameraDeviceDetached {
        public SDKCameraDevice cameraDevice;

        private CameraDeviceDetached() {
        }

        public CameraDeviceDetached(SDKCameraDevice sDKCameraDevice) {
            this();
            this.cameraDevice = sDKCameraDevice;
        }
    }

    public static class IrNotifyStateChanged {
        public SDKIrNotifyState state;

        private IrNotifyStateChanged() {
        }

        public IrNotifyStateChanged(SDKIrNotifyState sDKIrNotifyState) {
            this();
            this.state = sDKIrNotifyState;
        }
    }

    public static class MicDeviceAttach {
        public SDKMicroPhoneDevice mMicroPhoneDevice;

        private MicDeviceAttach() {
        }

        public MicDeviceAttach(SDKMicroPhoneDevice sDKMicroPhoneDevice) {
            this();
            this.mMicroPhoneDevice = sDKMicroPhoneDevice;
        }
    }

    public static class MicDeviceDetach {
        public SDKMicroPhoneDevice mMicroPhoneDevice;

        private MicDeviceDetach() {
        }

        public MicDeviceDetach(SDKMicroPhoneDevice sDKMicroPhoneDevice) {
            this();
            this.mMicroPhoneDevice = sDKMicroPhoneDevice;
        }
    }

    public static class CollectLightStateChanged {
        public SDKCollectLightState state;

        public CollectLightStateChanged() {
            this.state = SDKCollectLightState.CLOSED;
        }

        public CollectLightStateChanged(SDKCollectLightState sDKCollectLightState) {
            this.state = sDKCollectLightState;
        }
    }

    public static class RS232Command {
        public byte[] mBufferData;
        public Byte mMainId;
        public Byte mSingleData;
        public Byte mSubId;

        public RS232Command() {
        }

        public RS232Command(Byte b, Byte b2, Byte b3, byte[] bArr) {
            this.mMainId = b;
            this.mSubId = b2;
            this.mSingleData = b3;
            this.mBufferData = bArr;
        }
    }

    public static class AutoLightStateChanged {
        public SDKAutoLightState state;

        public AutoLightStateChanged() {
        }

        public AutoLightStateChanged(SDKAutoLightState sDKAutoLightState) {
            this.state = sDKAutoLightState;
        }
    }

    public static class EnergySaveStateChanged {
        public SDKEnergySaveState state;

        public EnergySaveStateChanged() {
        }

        public EnergySaveStateChanged(SDKEnergySaveState sDKEnergySaveState) {
            this.state = sDKEnergySaveState;
        }
    }

    public static class SmartPenState {
        public boolean isUp;
        public int smartPenId;

        public SmartPenState() {
        }

        public SmartPenState(int i, boolean z) {
            this();
            this.smartPenId = i;
            this.isUp = z;
        }
    }

    public static class PCCommand {
        public byte[] mBufferData;
        public Byte mMainId;
        public Byte mSingleData;
        public Byte mSubId;

        public PCCommand() {
        }

        public PCCommand(Byte b, Byte b2, Byte b3, byte[] bArr) {
            this.mMainId = b;
            this.mSubId = b2;
            this.mSingleData = b3;
            this.mBufferData = bArr;
        }
    }

    public static class SensorHubStateChanged {
        public boolean isPlugin;

        private SensorHubStateChanged() {
        }

        public SensorHubStateChanged(boolean z) {
            this.isPlugin = z;
        }
    }

    public static class DHCPStateChanged {
        public boolean enable;

        private DHCPStateChanged() {
        }

        public DHCPStateChanged(boolean z) {
            this.enable = z;
        }
    }

    public static class ABOTAStatusUpdate {
        public float percent;
        public int status;

        private ABOTAStatusUpdate() {
        }

        public ABOTAStatusUpdate(int i, float f) {
            this();
            this.status = i;
            this.percent = f;
        }
    }

    public static class UnknownSourceEnableChanged {
        public boolean isEnable;

        private UnknownSourceEnableChanged() {
        }

        public UnknownSourceEnableChanged(boolean z) {
            this();
            this.isEnable = z;
        }
    }

    public static class AutoSearchSignalEnableChanged {
        public boolean isEnable;

        private AutoSearchSignalEnableChanged() {
        }

        public AutoSearchSignalEnableChanged(boolean z) {
            this();
            this.isEnable = z;
        }
    }

    public static class EnergyStarEnableChanged {
        public boolean isEnable;

        private EnergyStarEnableChanged() {
        }

        public EnergyStarEnableChanged(boolean z) {
            this();
            this.isEnable = z;
        }
    }

    public static class WakeupWithSourcePluggedInEnableChanged {
        public boolean isEnable;

        private WakeupWithSourcePluggedInEnableChanged() {
        }

        public WakeupWithSourcePluggedInEnableChanged(boolean z) {
            this();
            this.isEnable = z;
        }
    }

    public static class AutoChannelSwitchChanged {
        public ISDKSourceHelper.AutoChannelSwitchItem item;

        private AutoChannelSwitchChanged() {
        }

        public AutoChannelSwitchChanged(ISDKSourceHelper.AutoChannelSwitchItem autoChannelSwitchItem) {
            this();
            this.item = autoChannelSwitchItem;
        }
    }

    public static class FakeStandbyAllowedChanged {
        public boolean isAllowed;

        private FakeStandbyAllowedChanged() {
        }

        public FakeStandbyAllowedChanged(boolean z) {
            this();
            this.isAllowed = z;
        }
    }

    public static class FakeStandbyPowerModeStatusChanged {
        public boolean status;

        private FakeStandbyPowerModeStatusChanged() {
        }

        public FakeStandbyPowerModeStatusChanged(boolean z) {
            this();
            this.status = z;
        }
    }

    public static class AppEnableStatusChanged {
        public boolean enable;
        public String packageName;

        private AppEnableStatusChanged() {
        }

        public AppEnableStatusChanged(String str, boolean z) {
            this();
            this.packageName = str;
            this.enable = z;
        }
    }
}
