mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
74d0a7101c
* removed redundant `UserPreferencesService` from `MeteringBloc` * wip * post-merge fixes * `MeasureEvent` tests * `MeasureEvent` tests revision * `MeasureEvent` tests added timeout * added stubs for other `MeteringBloc` events * rewritten `MeteringBloc` logic * wip * `IsoChangedEvent` tests * refined `IsoChangedEvent` tests * `NdChangedEvent` tests * `FilmChangedEvent` tests * `MeteringCommunicationBloc` tests * added test run to ci * overriden `==` for `MeasuredState` * `LuxMeteringEvent` tests * refined `LuxMeteringEvent` tests * rename * wip * wip * `InitializeEvent`/`DeinitializeEvent` tests * clamp minZoomLevel * fixed `MeteringCommunicationBloc` tests * wip * `ZoomChangedEvent` tests * `ExposureOffsetChangedEvent`/`ExposureOffsetResetEvent` tests * renamed test groups * added test coverage script * improved `CameraContainerBloc` test coverage * `EquipmentProfileChangedEvent` tests * verify response vibration * fixed running all tests * `MeteringCommunicationBloc` equality tests * `CameraContainerBloc` equality tests * removed generated code from coverage
47 lines
1 KiB
Dart
47 lines
1 KiB
Dart
import 'package:lightmeter/data/models/film.dart';
|
|
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
|
|
sealed class MeteringEvent {
|
|
const MeteringEvent();
|
|
}
|
|
|
|
class EquipmentProfileChangedEvent extends MeteringEvent {
|
|
final EquipmentProfileData equipmentProfileData;
|
|
|
|
const EquipmentProfileChangedEvent(this.equipmentProfileData);
|
|
}
|
|
|
|
class FilmChangedEvent extends MeteringEvent {
|
|
final Film film;
|
|
|
|
const FilmChangedEvent(this.film);
|
|
}
|
|
|
|
class IsoChangedEvent extends MeteringEvent {
|
|
final IsoValue isoValue;
|
|
|
|
const IsoChangedEvent(this.isoValue);
|
|
}
|
|
|
|
class NdChangedEvent extends MeteringEvent {
|
|
final NdValue ndValue;
|
|
|
|
const NdChangedEvent(this.ndValue);
|
|
}
|
|
|
|
class MeasureEvent extends MeteringEvent {
|
|
const MeasureEvent();
|
|
}
|
|
|
|
class MeasuredEvent extends MeteringEvent {
|
|
final double ev100;
|
|
final bool isMetering;
|
|
|
|
const MeasuredEvent(this.ev100, {required this.isMetering});
|
|
}
|
|
|
|
class MeasureErrorEvent extends MeteringEvent {
|
|
final bool isMetering;
|
|
|
|
const MeasureErrorEvent({required this.isMetering});
|
|
}
|