mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
be0617a99c
* added `Film` model with reciprocity formulas * added `FeaturesConfig` * added film picker * unused import * get ISO and ND from equipment profile * udpate iso on film changed * typo
46 lines
998 B
Dart
46 lines
998 B
Dart
import 'package:lightmeter/data/models/film.dart';
|
|
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
|
|
abstract class MeteringEvent {
|
|
const MeteringEvent();
|
|
}
|
|
|
|
class StopTypeChangedEvent extends MeteringEvent {
|
|
final StopType stopType;
|
|
|
|
const StopTypeChangedEvent(this.stopType);
|
|
}
|
|
|
|
class EquipmentProfileChangedEvent extends MeteringEvent {
|
|
final EquipmentProfileData equipmentProfileData;
|
|
|
|
const EquipmentProfileChangedEvent(this.equipmentProfileData);
|
|
}
|
|
|
|
class FilmChangedEvent extends MeteringEvent {
|
|
final Film data;
|
|
|
|
const FilmChangedEvent(this.data);
|
|
}
|
|
|
|
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);
|
|
}
|