mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
e001c153fb
* [Android] wip * implemented `VolumeEventsService` * implemented `VolumeKeysListener` (wip) * Added screenshots links * [Android] nullable typo * implemented `VolumeKeysNotifier` * deinitialize camera when on Settings screen * disable volume handling when on Settings screen * used "platform" package to mock `isAndroid` * init/deinit camera on settings open * allow volume action override only on metering screen * lints * cleanup * await dispose * tests * reduced `SwitchListTile.contentPadding` * fixed tests * removed `VolumeAction.zoom` * added social preview * typo * fixed `CameraContainerBloc` tests * added `Stream.empty()` tests
57 lines
1.3 KiB
Dart
57 lines
1.3 KiB
Dart
abstract class MeteringCommunicationEvent {
|
|
const MeteringCommunicationEvent();
|
|
}
|
|
|
|
abstract class SourceEvent extends MeteringCommunicationEvent {
|
|
const SourceEvent();
|
|
}
|
|
|
|
abstract class ScreenEvent extends MeteringCommunicationEvent {
|
|
const ScreenEvent();
|
|
}
|
|
|
|
class MeasureEvent extends ScreenEvent {
|
|
const MeasureEvent();
|
|
}
|
|
|
|
abstract class MeasuredEvent extends SourceEvent {
|
|
final double? ev100;
|
|
|
|
const MeasuredEvent(this.ev100);
|
|
}
|
|
|
|
class MeteringInProgressEvent extends MeasuredEvent {
|
|
const MeteringInProgressEvent(super.ev100);
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(this, other)) return true;
|
|
if (other.runtimeType != runtimeType) return false;
|
|
return other is MeteringInProgressEvent && other.ev100 == ev100;
|
|
}
|
|
|
|
@override
|
|
int get hashCode => Object.hash(ev100, runtimeType);
|
|
}
|
|
|
|
class MeteringEndedEvent extends MeasuredEvent {
|
|
const MeteringEndedEvent(super.ev100);
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(this, other)) return true;
|
|
if (other.runtimeType != runtimeType) return false;
|
|
return other is MeteringEndedEvent && other.ev100 == ev100;
|
|
}
|
|
|
|
@override
|
|
int get hashCode => Object.hash(ev100, runtimeType);
|
|
}
|
|
|
|
class SettingsOpenedEvent extends ScreenEvent {
|
|
const SettingsOpenedEvent();
|
|
}
|
|
|
|
class SettingsClosedEvent extends ScreenEvent {
|
|
const SettingsClosedEvent();
|
|
}
|