mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 23:40:41 +00:00
14bac950cf
proper folders for models unified _screen_ folder filenames
35 lines
822 B
Dart
35 lines
822 B
Dart
import 'package:lightmeter/data/models/photography_values/iso_value.dart';
|
|
import 'package:lightmeter/data/models/photography_values/nd_value.dart';
|
|
import 'package:lightmeter/data/models/photography_values/photography_value.dart';
|
|
|
|
abstract class MeteringEvent {
|
|
const MeteringEvent();
|
|
}
|
|
|
|
class StopTypeChangedEvent extends MeteringEvent {
|
|
final StopType stopType;
|
|
|
|
const StopTypeChangedEvent(this.stopType);
|
|
}
|
|
|
|
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;
|
|
|
|
const MeasuredEvent(this.ev100);
|
|
}
|