mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
cc9f162933
* added stub `FilmsProvider` * moved dialogs to the shared folder * typo * separated `EquipmentSettingsSection` * copy * `IAPBuilder` -> `IAPListTile` * moved `Film` to resources repo * fixed films selection * untied iso and selected film * removed film from exposure pairs building * indicate push/pull * copy * Update .gitignore * fixed extreme exposure pairs reciprocity display * sync with iap changes * sync iap stub with iap changes * added reciprocity description * added workspace file * Update .gitignore
48 lines
1 KiB
Dart
48 lines
1 KiB
Dart
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
|
|
|
sealed class MeteringEvent {
|
|
const MeteringEvent();
|
|
}
|
|
|
|
class EquipmentProfileChangedEvent extends MeteringEvent {
|
|
final EquipmentProfile equipmentProfileData;
|
|
|
|
const EquipmentProfileChangedEvent(this.equipmentProfileData);
|
|
}
|
|
|
|
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});
|
|
}
|
|
|
|
class SettingsOpenedEvent extends MeteringEvent {
|
|
const SettingsOpenedEvent();
|
|
}
|
|
|
|
class SettingsClosedEvent extends MeteringEvent {
|
|
const SettingsClosedEvent();
|
|
}
|