package com.seewo.sdk.event;

import com.seewo.sdk.interfaces.r;

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

    public static class Booted {
    }

    public static class Booting {
    }

    public static class Finish {
    }

    public static class FunctionKeyPressed {
        public KeyEventType keyEvent;

        private FunctionKeyPressed() {
        }

        public FunctionKeyPressed(KeyEventType keyEventType) {
            this();
            this.keyEvent = keyEventType;
        }
    }

    public enum KeyEventType {
        SHORT_PRESS,
        LONG_PRESS
    }

    public static class Lock {
    }

    public static class LockKeyPressed {
        public KeyEventType keyEvent;

        private LockKeyPressed() {
        }

        public LockKeyPressed(KeyEventType keyEventType) {
            this();
            this.keyEvent = keyEventType;
        }
    }

    public static class Paused {
    }

    public static class PowerOff {
    }

    public static class PowerStateChanged {
        public r state;

        private PowerStateChanged() {
        }

        public PowerStateChanged(r rVar) {
            this();
            this.state = rVar;
        }
    }

    public static class RecorderStateChanged {
        public boolean isLocked;
        public r state;

        private RecorderStateChanged() {
        }

        public RecorderStateChanged(r rVar, boolean z) {
            this();
            this.state = rVar;
            this.isLocked = z;
        }
    }

    public static class Started {
    }

    public static class Unlock {
    }

    private VideoRecorderEvent() {
    }
}
