mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
5c27f726c5
* wip * added start/stop button * animated timeline * fixed timer stop state * added reset button (wip) * added `onExposurePairTap` callback * integrated `TimerScreen` to navigation * separated `TimerTimeline` * fixed timeline flickering * added milliseconds to timer * synchronized timeline with actual timer * reused `BottomControlsBar` * fixed default scaffold background color * moved center button size to the bar itself * display selected exposure pair on timer screen * separated reusable `AnimatedCircluarButton` * release camera when timer is opened * added `TimerInteractor` * added `TimerBloc` test * fixed hours parsing * added scenarios for timer golden test * adjusted timer timeline colors * show iso & nd values on timer screen * automatically close timer screen after timeout * added timer autostart * reverted theme changes * updated goldens * typo * removed timer screen auto-dismiss * increased timer vibration duration * replaced outlined locks * increased 1/3 values font size
57 lines
1.4 KiB
Dart
57 lines
1.4 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 ScreenOnTopOpenedEvent extends ScreenEvent {
|
|
const ScreenOnTopOpenedEvent();
|
|
}
|
|
|
|
class ScreenOnTopClosedEvent extends ScreenEvent {
|
|
const ScreenOnTopClosedEvent();
|
|
}
|