modernized picsettings
This commit is contained in:
parent
4ceb46d65c
commit
63aac7f911
5 changed files with 243 additions and 915 deletions
|
|
@ -5,63 +5,63 @@ using System.Windows.Forms;
|
|||
|
||||
namespace MaddoShared;
|
||||
|
||||
public static class PicSettings
|
||||
public class PicSettings
|
||||
{
|
||||
public static string DirectorySorgente { get; set; }
|
||||
public static string DirectoryDestinazione { get; set; }
|
||||
public static string TestoFirmaStart { get; set; }
|
||||
public static string TestoFirmaStartV { get; set; }
|
||||
public static DateTime DataPartenza { get; set; }
|
||||
public static string TestoOrario { get; set; }
|
||||
public static int DimStandard { get; set; }
|
||||
public static int DimStandardMiniatura { get; set; }
|
||||
public static bool NomeData { get; set; }
|
||||
public static bool TestoNome { get; set; }
|
||||
public static bool UsaOrarioMiniatura { get; set; }
|
||||
public static bool UsaOrarioTestoApplicare { get; set; }
|
||||
public static bool UsaTempoGaraTestoApplicare { get; set; }
|
||||
public static bool UsaRotazioneAutomatica { get; set; }
|
||||
public static bool UsaForzaJpg { get; set; }
|
||||
public static int LarghezzaSmall { get; set; }
|
||||
public static int AltezzaSmall { get; set; }
|
||||
public static bool CreaMiniature { get; set; }
|
||||
public static bool AggiungiScritteMiniature { get; set; }
|
||||
public static string Suffisso { get; set; }
|
||||
public static string Codice { get; set; }
|
||||
public static int Trasparenza { get; set; }
|
||||
public static string IlFont { get; set; }
|
||||
public static bool Grassetto { get; set; }
|
||||
public static string Posizione { get; set; }
|
||||
public static string Allineamento { get; set; }
|
||||
public static int Margine { get; set; }
|
||||
public static int LogoAltezza { get; set; }
|
||||
public static int LogoLarghezza { get; set; }
|
||||
public static Color FontColoreRGB { get; set; }
|
||||
public static bool LogoAggiungi { get; set; }
|
||||
public static string LogoNomeFile { get; set; }
|
||||
public static string LogoTrasparenza { get; set; }
|
||||
public static string LogoMargine { get; set; }
|
||||
public static string LogoPosizioneH { get; set; }
|
||||
public static string LogoPosizioneV { get; set; }
|
||||
public static bool FotoGrandeDimOrigina { get; set; }
|
||||
public static int AltezzaBig { get; set; }
|
||||
public static int LarghezzaBig { get; set; }
|
||||
public static DirectoryInfo DestDir { get; set; }
|
||||
public static int DimVert { get; set; }
|
||||
public static int MargVert { get; set; }
|
||||
public static bool TestoMin { get; set; }
|
||||
public static int DimMin { get; set; }
|
||||
public static bool SecretDefault { get; set; }
|
||||
public static bool SecretBig { get; set; }
|
||||
public static bool SecretSmall { get; set; }
|
||||
public static string SecretPathSmall { get; set; }
|
||||
public static string SecretPathBig { get; set; }
|
||||
public static bool AggTempoGaraMin { get; set; }
|
||||
public static bool AggNumTempMin { get; set; }
|
||||
public static long JpegQuality { get; set; }
|
||||
public static long JpegQualityMin { get; set; }
|
||||
public string DirectorySorgente { get; set; }
|
||||
public string DirectoryDestinazione { get; set; }
|
||||
public string TestoFirmaStart { get; set; }
|
||||
public string TestoFirmaStartV { get; set; }
|
||||
public DateTime DataPartenza { get; set; }
|
||||
public string TestoOrario { get; set; }
|
||||
public int DimStandard { get; set; }
|
||||
public int DimStandardMiniatura { get; set; }
|
||||
public bool NomeData { get; set; }
|
||||
public bool TestoNome { get; set; }
|
||||
public bool UsaOrarioMiniatura { get; set; }
|
||||
public bool UsaOrarioTestoApplicare { get; set; }
|
||||
public bool UsaTempoGaraTestoApplicare { get; set; }
|
||||
public bool UsaRotazioneAutomatica { get; set; }
|
||||
public bool UsaForzaJpg { get; set; }
|
||||
public int LarghezzaSmall { get; set; }
|
||||
public int AltezzaSmall { get; set; }
|
||||
public bool CreaMiniature { get; set; }
|
||||
public bool AggiungiScritteMiniature { get; set; }
|
||||
public string Suffisso { get; set; }
|
||||
public string Codice { get; set; }
|
||||
public int Trasparenza { get; set; }
|
||||
public string IlFont { get; set; }
|
||||
public bool Grassetto { get; set; }
|
||||
public string Posizione { get; set; }
|
||||
public string Allineamento { get; set; }
|
||||
public int Margine { get; set; }
|
||||
public int LogoAltezza { get; set; }
|
||||
public int LogoLarghezza { get; set; }
|
||||
public Color FontColoreRGB { get; set; }
|
||||
public bool LogoAggiungi { get; set; }
|
||||
public string LogoNomeFile { get; set; }
|
||||
public string LogoTrasparenza { get; set; }
|
||||
public string LogoMargine { get; set; }
|
||||
public string LogoPosizioneH { get; set; }
|
||||
public string LogoPosizioneV { get; set; }
|
||||
public bool FotoGrandeDimOrigina { get; set; }
|
||||
public int AltezzaBig { get; set; }
|
||||
public int LarghezzaBig { get; set; }
|
||||
public DirectoryInfo DestDir { get; set; }
|
||||
public int DimVert { get; set; }
|
||||
public int MargVert { get; set; }
|
||||
public bool TestoMin { get; set; }
|
||||
public int DimMin { get; set; }
|
||||
public bool SecretDefault { get; set; }
|
||||
public bool SecretBig { get; set; }
|
||||
public bool SecretSmall { get; set; }
|
||||
public string SecretPathSmall { get; set; }
|
||||
public string SecretPathBig { get; set; }
|
||||
public bool AggTempoGaraMin { get; set; }
|
||||
public bool AggNumTempMin { get; set; }
|
||||
public long JpegQuality { get; set; }
|
||||
public long JpegQualityMin { get; set; }
|
||||
|
||||
public static bool FotoRuotaADestra { get; set; } = false;
|
||||
public static bool FotoRuotaASinistra { get; set; } = false;
|
||||
public static string TempMinText { get; set; } = string.Empty;
|
||||
public bool FotoRuotaADestra { get; set; } = false;
|
||||
public bool FotoRuotaASinistra { get; set; } = false;
|
||||
public string TempMinText { get; set; } = string.Empty;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue