From d27c49f2156c27a1b84e7cdf185df1b4d3714525 Mon Sep 17 00:00:00 2001 From: Olivier Rogier Date: Sun, 25 Aug 2019 09:40:15 +0200 Subject: [PATCH 1/4] Add current day color parameter --- Project/App.config | 3 + Project/Dependencies/Calendar.NET/Calendar.cs | 2 +- Project/Hebrew Calendar (vs2017).csproj | 4 + Project/Properties/AssemblyInfo.cs | 4 +- Project/Properties/Settings.Designer.cs | 12 + Project/Properties/Settings.settings | 3 + Project/Source/Classes/SettingsHelper.cs | 4 +- Project/Source/Forms/MainForm.Designer.cs | 2 +- Project/Source/Forms/MainForm.resx | 70 +- Project/Source/Forms/PreferencesForm.cs | 9 +- .../Source/Forms/PreferencesForm.designer.cs | 113 +- .../Source/Forms/PreferencesForm.fr-FR.resx | 229 ++ Project/Source/Forms/PreferencesForm.resx | 1841 ++++++++++------- README.md | 4 + Setup/OrdisoftwareHebrewCalendarSetup.iss | 2 +- 15 files changed, 1498 insertions(+), 804 deletions(-) create mode 100644 Project/Source/Forms/PreferencesForm.fr-FR.resx diff --git a/Project/App.config b/Project/App.config index ce4c34d6c..7de1af6b1 100644 --- a/Project/App.config +++ b/Project/App.config @@ -128,6 +128,9 @@ True + + DarkRed + diff --git a/Project/Dependencies/Calendar.NET/Calendar.cs b/Project/Dependencies/Calendar.NET/Calendar.cs index 3ffa82f14..321d09082 100644 --- a/Project/Dependencies/Calendar.NET/Calendar.cs +++ b/Project/Dependencies/Calendar.NET/Calendar.cs @@ -979,7 +979,7 @@ private void RenderMonthCalendar(PaintEventArgs e) { //ORDISOFTWARE MODIF BEGIN //g.DrawString(counter.ToString(CultureInfo.InvariantCulture), _todayFont, Brushes.Black, xStart + 5, yStart + 2); - g.DrawString(counter.ToString(CultureInfo.InvariantCulture), _todayFont, Brushes.DarkRed, xStart + 5, yStart + 2); + g.DrawString(counter.ToString(CultureInfo.InvariantCulture), _todayFont, new SolidBrush(Program.Settings.CurrentDayColor), xStart + 5, yStart + 2); //ORDISOFTWARE MODIF END } else diff --git a/Project/Hebrew Calendar (vs2017).csproj b/Project/Hebrew Calendar (vs2017).csproj index ad4e728e7..7dbd91e02 100644 --- a/Project/Hebrew Calendar (vs2017).csproj +++ b/Project/Hebrew Calendar (vs2017).csproj @@ -275,6 +275,9 @@ MainForm.cs + + PreferencesForm.cs + PreferencesForm.cs @@ -292,6 +295,7 @@ MainForm.cs + Designer PreferencesForm.cs diff --git a/Project/Properties/AssemblyInfo.cs b/Project/Properties/AssemblyInfo.cs index 07f8936dd..3bcf9888f 100644 --- a/Project/Properties/AssemblyInfo.cs +++ b/Project/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut // en utilisant '*', comme indiqué ci-dessous : // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.9.0.0")] -[assembly: AssemblyFileVersion("1.9.0.0")] +[assembly: AssemblyVersion("1.10.0.0")] +[assembly: AssemblyFileVersion("1.10.0.0")] diff --git a/Project/Properties/Settings.Designer.cs b/Project/Properties/Settings.Designer.cs index d5f28fb39..c8bf7cbc7 100644 --- a/Project/Properties/Settings.Designer.cs +++ b/Project/Properties/Settings.Designer.cs @@ -500,5 +500,17 @@ public bool UpgradeRequired { this["UpgradeRequired"] = value; } } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("DarkRed")] + public global::System.Drawing.Color CurrentDayColor { + get { + return ((global::System.Drawing.Color)(this["CurrentDayColor"])); + } + set { + this["CurrentDayColor"] = value; + } + } } } diff --git a/Project/Properties/Settings.settings b/Project/Properties/Settings.settings index 3875ffa6b..12a4180ec 100644 --- a/Project/Properties/Settings.settings +++ b/Project/Properties/Settings.settings @@ -127,5 +127,8 @@ True + + DarkRed + \ No newline at end of file diff --git a/Project/Source/Classes/SettingsHelper.cs b/Project/Source/Classes/SettingsHelper.cs index eaa108990..53461324c 100644 --- a/Project/Source/Classes/SettingsHelper.cs +++ b/Project/Source/Classes/SettingsHelper.cs @@ -11,7 +11,7 @@ /// You may add additional accurate notices of copyright ownership. /// /// 2016-04 -/// 2016-04 +/// 2019-08 using System; using System.Windows.Forms; using Ordisoftware.HebrewCalendar.Properties; @@ -84,6 +84,7 @@ static internal void Retrieve(this Settings settings) PreferencesForm.Instance.PanelBottomColor.BackColor = settings.NavigateBottomColor; PreferencesForm.Instance.PanelTextColor.BackColor = settings.TextColor; PreferencesForm.Instance.PanelBackColor.BackColor = settings.TextBackground; + PreferencesForm.Instance.PanelCurrentDayColor.BackColor = settings.CurrentDayColor; } /// @@ -115,6 +116,7 @@ static internal void Store(this Settings settings) settings.NavigateBottomColor = PreferencesForm.Instance.PanelBottomColor.BackColor; settings.TextColor = PreferencesForm.Instance.PanelTextColor.BackColor; settings.TextBackground = PreferencesForm.Instance.PanelBackColor.BackColor; + settings.CurrentDayColor = PreferencesForm.Instance.PanelCurrentDayColor.BackColor; settings.Save(); } diff --git a/Project/Source/Forms/MainForm.Designer.cs b/Project/Source/Forms/MainForm.Designer.cs index f1b35f67e..2ca1586e6 100644 --- a/Project/Source/Forms/MainForm.Designer.cs +++ b/Project/Source/Forms/MainForm.Designer.cs @@ -1155,12 +1155,12 @@ private void InitializeComponent() private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13; - private Calendar.NET.Calendar CalendarMonth; private System.Windows.Forms.ToolStripButton ActionPrint; private System.Windows.Forms.PrintDialog PrintDialog; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.Timer TimerReminder; private System.Windows.Forms.ToolStripButton ActionCheckUpdate; + internal Calendar.NET.Calendar CalendarMonth; } } diff --git a/Project/Source/Forms/MainForm.resx b/Project/Source/Forms/MainForm.resx index 9e69cf008..25e3a8c2a 100644 --- a/Project/Source/Forms/MainForm.resx +++ b/Project/Source/Forms/MainForm.resx @@ -265,7 +265,7 @@ CalendarMonth - Calendar.NET.Calendar, Ordisoftware.HebrewCalendar, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null + Calendar.NET.Calendar, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null PanelViewMonth @@ -1244,36 +1244,36 @@ iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAbCSURBVFhH7VZ5UNRlGAaLjimNMnWyYxorlQ4bc6SDTCtn - spq0Rhwtl6JcEkIOc4kFVnYXFuRaEBAXOZb7llPSVkCEZRGQBQRh1ay0BuQUdJqpaZqe3vdbs2FGUhvs - r96ZZ3b2+32/73nf5z2+n83/Ns1mp1AohuXyAAQEBPStW7fO/sr6f2J2fn5+A8UlZdgs+QRuUnf4+8vh - 5ub2BD2ztW65dWYnl/tf0CWnwdTcAomLK9w+94DnNh+wGlKpdCHtuWVO3Obj41MWn7AH+sxctB03Y4t0 - K7y8t2OHzB/+8kBORz/tu8O6fXpNkMfFJ6K2vgHHWtrQfaIHX3h6Q+YnR2BQMHYGqxGsVGP7dt903m99 - bXrsauR1RD4yMopGYzMujo+LyIMUSqhCNNCERSAiWktOqCgVrivovWlJxe2+Xl7liXt0qG8wYmh4BIND - w/jGUItz589Dl5IGlVqDXZHRiI6JAyvEjnKR0rt3Wo/49zbD3d39s726fag+aMDAwAVcGBzCMClw5KgR - 3T29ONrQgLDwSGjj4hGfmIQk2puSpidntPDw8Picz7AedfM2gw74VJecIqIdvDAkIh8eGca3Z79DTe0R - NB9rRf/AACJJ9sQkHZJJjbT0TGRm5yI3vxCUtl/onLutx92cCfIYbSwO19UL2Zl4ZHQUvX2ncbimTqSD - 66C/fwClZRXYl5KOjKwc5OQWIL+omNYqkbgnCVu2uG6g826qFmZ4enp+GhUdg/qjjUJuJmYnzB1dqKO1 - RuMx6oLjaG1rh+XUGVo/AX1GNvIKisDDqbS8ElXVB1F14Gts27bNSGfecC3YOjs7P8n5a2hsIuIxjI4R - yAkTtV1Do4lkbxP9z850dvXgZK9FpKSSCEtKy1FRVU318g0MpFJjUzO0pOLSpUvnXzn/H81WIpE8GRcb - ByNNuNGxi6LNuPBYalNzKxG3XyXmAuyznMap09+ir89C6x0i6kOGGtGqnCKeF5lZ2aBCVtD5/zgXBPnu - +Hgh7djFcYxPTOD7H86JyFtaj08itlwh7qXfThpGnAqzuQsNRpMg5+hZhfLKAygsKYW3t3cTcUxZjII8 - IXGPNXKS/dLlS0RwRsjdbu68JnHHFeIm0zFRK0za0nYcXx8yYD8VZUFRCbJzCkRh7twZDOKZ8ra8U6VS - iyiHRkYwMT6BnpMWkeeOzslST0XM0ZZVVAmw9Nk5+UhNz8BeauGERB2UNBmJZ46VbrLZhYaE9puon8eo - 2MZJ+hPdJ2HuPDGZuO/UlMQsc/H+MtH36dQJ+sxsGA7XiqEUGRWLsF2RpICSHZhrpfzb7DShmv5WivQi - RT0yPCZI2IGbJdZn5tAQSkcCjesoGscMfqZWh0EeoKBbUn7VAVufHcrXPpF6LwsJjT7fbu7G+KXLNF4H - RZ6ZkPuaW+v6xEVEnEfEekEcExtP0UYhRLMLqtBwupzCxUgODNo5yYG7zCnz0L5vHkzVEbj882849+NP - gvCGiGnICOKsfOhSc7A7KQPRcTqERWiJNIwupVBxHQcpguDr63t269atxo0bN6YuWLDgTeK+nx14oCFh - PoYsxWjJfQfn+i/Bcvq7axAbYaitR/Whw6igaba/tBJ5hSXIyC7AvrRsaONTkBT+MbJkNlDKN//q4bPD - slkiyVu9enWgg4ODC/G8TniFsIywmDCPID5S5saolH8M9BbhQOgdMJvK0dVzBm3tHeJi4elXc+QoDhqO - oOJgLfZXGpCqzyXCvVCHx0IWpBz8+DPvuvfXu6YV7LBBLiHsIye8unAOky4h8DfhIwQmfIAwi8D9f3UI - PRji9rC+Sj0D5cE2MKStRVvnKTQ1t4nbrai4hG61ZGob5R8GpT1U65dgw9srk+1nz15L775BeJXAUb2Y - 52eLXD9yQLIKH7y04ANaYzKOksmmvHzufX31ex8Wq+2h950LzYfPQSnbPvilTNa1adOmAkdHR8+ZM2e+ - S/vW1GgegWqTE/ydH43WedpHZX05qyxPNqu7KPBuFMrtkC+3Rf5X5IDLSrisclhH79wuGK5jdoTHIyTL - oZQ6/O76xj1R9H8lwZHwLD8jPERYVBq0ECWKp5Djtwip3k8jxWsxtNJl0G55AZGuL0PjskqQKyVOE7T/ - UcINfQOyNLMJLKMT4a8C4TF5D4Ed5D1zvlq/vEnjsoKIVkC52fFXxXrHszLnF7uka5bkub/1fKHT0/M9 - 31z6mBft5bM43zd853OeuCX4JS6Qa30yzSQ8Q2B1OPerCOzwcsLzBAcCFxxHzuew49NqnE92guc3DxD+ - ZaL7CLzOjl+34P63yWZj8ycFUFSi2YR+tgAAAABJRU5ErkJggg== + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAbCSURBVFhH7VZ7UNRVFAaLrCmNMnWyxzRmJlY65kgPMq2c + yWrKGnHUXIx0SQh5mEsssLIsLMjDBQFxkcfyfstT1FZAhGURkAUEYdWstAbkKeg0U9M0fZ1z12yYkdQG + +6sz883O3t/93e+c7zzuz+p/m2SzUSgUg3K5H/z8/HrWrFlje339PzEbHx+fvsKiEmySfAYXqSt8feVw + cXF5lp5ZW7bcPbORy30vaxNTYGxsgsTJGS5fuMF9uxdYDalUOp/23DUn7vHy8iqJjdsHXXo2Wk6ZsFW6 + DR6eO7BT5gtfuT+no5f23WfZPrkmyGNi41FdW4eTTS3oPN2FL909IfORwz8gELsCVQhUqrBjh3cq77e8 + Njl2I/IaIh8aGka9oRFXRkdF5AEKJYKC1VCHhiM8SkNOBFEqnJfTe5OSinu9PTxK4/dpUVtnwMDgEPoH + BvGNvhoXL12CNikFQSo1dkdEIWpPDFghdpSLlN6dajni39sUV1fXLfu1B1B5RI++vsu43D+AQVLg+AkD + Oru6caKuDqFhEdDExCI2PgEJtDcpRUfOaODm5vYFn2E56s5tCh3wuTYxSUTbf3lARD44NIhvL3yHqurj + aDzZjN6+PkSQ7PEJWiSSGimp6UjPzEZ2bj4obb/QOQ9YjrszE+R7NNE4VlMrZGfioeFhdPecw7GqGpEO + roPe3j4Ul5ThQFIq0jKykJWdh9yCQlorR/y+BGzd6ryOzrujWpji7u7+eWTUHtSeqBdyMzE7YWrrQA2t + 1RtOUhecQnNLK8xnz9P6aejSMpGTVwAeTsWl5aioPIKKQ4exfft2A51527Vg7ejoOI/zV1ffQMQjGB4h + kBNGaru6eiPJ3iL6n51p7+jCmW6zSEk5ERYVl6KsopLq5RvoSaX6hkZoSMUlS5bMuX7+P5q1RCKZFxMd + AwNNuOGRK6LNuPBYamNjMxG33iDmAuwxn8PZc9+ip8dM620i6qP6KtGqnCKeF+kZmaBCVtD5/zgXBPne + 2Fgh7ciVUYyOjeH7Hy6KyJuaT40jNl8n7qbfdhpGnAqTqQN1BqMg5+hZhdLyQ8gvKoanp2cDcUxYjII8 + Ln6fJXKS/eq1q0RwXsjdamq/KXHbdeIG40lRK0za1HIKh4/qcZCKMq+gCJlZeaIwd+0KBPFMeFtODQpS + iSgHhoYwNjqGrjNmkee29vFST0TM0ZaUVQiw9JlZuUhOTcN+auG4eC2UNBmJZ6aFbrzZhASH9Bqpn0eo + 2EZJ+tOdZ2BqPz2euOfshMQsc+HBEtH3qdQJuvRM6I9Vi6EUERmN0N0RpICSHZhlofzbbNQh6t5mivQK + RT00OCJI2IE7JdalZ9EQSkUcjetIGscMfqZShULup6BbUn7DAWuvnco3P5N6Lg0OibrUaurE6NVrNF77 + RZ6ZkPuaW+vWxAVEnEPEOkG8JzqWoo1EsHo3gkLC6HIKEyPZP2DXOAfuNyXNRuuB2TBWhuPaz7/h4o8/ + CcLbIqYhI4gzcqFNzsLehDRExWgRGq4h0lC6lELEdRygCIC3t/eFbdu2GdavX588d+7cd4j7EXbg0bq4 + ORgwF6Ip+31c7L0K87nvbkJsgL66FpVHj6GMptnB4nLk5BchLTMPB1IyoYlNQkLYZmTIrKCUb/rVzWun + eZNEkrNq1Sp/Ozs7J+J5i/A6YSlhAWE2QXykzIpSKv/o6y7AoZD7YDKWoqPrPFpa28TFwtOv6vgJHNEf + R9mRahws1yNZl02E+6EKi4YsQNm/eYtnzcdrnVPydlohmxD6qQPemD+TSRcR+JvwSQITPkqYTuD+vzGE + Hgt2eUJXoZqC0kAr6FM+Qkv7WTQ0tojbraCwiG61RGob5R96pS2C1i7CuvdWJNrOmPERvfs24Q0CR/VK + jo81sn3IAclKfPLq3E9ojck4Siab8PJ56K1VH24sVNlC5z0L6o0vQSnb0f+VTNaxYcOGPHt7e/dp06Z9 + QPtWV6mfRNAGB/g6PhWldbeNzPhqekmObHpngf8DyJfbIFdujdyvyQGnFXBaabeG3rlXMNzCbAjPhEuW + QSm1+9357Qcj6f8Kgj3hRX5GeJzwfHHAfBQpnkOWz/NI9lyIJI8F0EiXQrP1ZUQ4vwa100pBrpQ4jNH+ + pwi39Q3I0swgsIwOhL8KhMfkgwR2kPfM/Hrtsga103IiWg7lJvtfFWvtL8gcX+mQrl6U4/ru4nyHhXPc + 31nytAft5bM437d953OeuCX4JS6Qm30yTSO8QGB1OPcrCezwMsJigh2BC44j53PY8Uk1zic7wfObBwj/ + MtHDBF5nx29ZcP/beLOy+hP8OlSgu+mriQAAAABJRU5ErkJggg== @@ -2334,7 +2334,7 @@ LunisolarCalendar - Ordisoftware.HebrewCalendar.Data.LunisolarCalendar, Ordisoftware.HebrewCalendar, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null + Ordisoftware.HebrewCalendar.Data.LunisolarCalendar, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null bindingNavigatorCountItem @@ -2694,19 +2694,19 @@ LunisolarDaysTableAdapter - Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.LunisolarDaysTableAdapter, Ordisoftware.HebrewCalendar, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null + Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.LunisolarDaysTableAdapter, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null TableAdapterManager - Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.TableAdapterManager, Ordisoftware.HebrewCalendar, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null + Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.TableAdapterManager, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null ReportTableAdapter - Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.ReportTableAdapter, Ordisoftware.HebrewCalendar, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null + Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.ReportTableAdapter, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null MainForm diff --git a/Project/Source/Forms/PreferencesForm.cs b/Project/Source/Forms/PreferencesForm.cs index 3289e7b8f..353d5e97f 100644 --- a/Project/Source/Forms/PreferencesForm.cs +++ b/Project/Source/Forms/PreferencesForm.cs @@ -11,7 +11,7 @@ /// You may add additional accurate notices of copyright ownership. /// /// 2016-04 -/// 2019-01 +/// 2019-08 using System; using System.Drawing; using System.Drawing.Text; @@ -359,6 +359,13 @@ private class TorahEventItem } + private void PanelCurrentDayColor_MouseClick(object sender, MouseEventArgs e) + { + DialogColor.Color = PanelCurrentDayColor.BackColor; + if ( DialogColor.ShowDialog() == DialogResult.Cancel ) return; + PanelCurrentDayColor.BackColor = DialogColor.Color; + + } } } diff --git a/Project/Source/Forms/PreferencesForm.designer.cs b/Project/Source/Forms/PreferencesForm.designer.cs index 569032eb7..a30ab5ef0 100644 --- a/Project/Source/Forms/PreferencesForm.designer.cs +++ b/Project/Source/Forms/PreferencesForm.designer.cs @@ -35,7 +35,6 @@ private void InitializeComponent() this.DialogColor = new System.Windows.Forms.ColorDialog(); this.ButtonClose = new System.Windows.Forms.Button(); this.EditFontName = new System.Windows.Forms.ComboBox(); - this.BindingSettings = new System.Windows.Forms.BindingSource(this.components); this.LabelShabatDay = new System.Windows.Forms.Label(); this.EditFontSize = new System.Windows.Forms.NumericUpDown(); this.LabelFontSize = new System.Windows.Forms.Label(); @@ -73,9 +72,15 @@ private void InitializeComponent() this.LabelTimerInterval = new System.Windows.Forms.Label(); this.EditTimerEnabled = new System.Windows.Forms.CheckBox(); this.EditShowMonthDayToolTip = new System.Windows.Forms.CheckBox(); + this.GroupBoxCalendar = new System.Windows.Forms.GroupBox(); + this.linkLabel1 = new System.Windows.Forms.LinkLabel(); + this.linkLabel2 = new System.Windows.Forms.LinkLabel(); + this.label1 = new System.Windows.Forms.Label(); + this.linkLabel3 = new System.Windows.Forms.LinkLabel(); + this.PanelCurrentDayColor = new System.Windows.Forms.Panel(); + this.BindingSettings = new System.Windows.Forms.BindingSource(this.components); GPSLatitudeLabel = new System.Windows.Forms.Label(); GPSLongitudeLabel = new System.Windows.Forms.Label(); - ((System.ComponentModel.ISupportInitialize)(this.BindingSettings)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.EditFontSize)).BeginInit(); this.PanelButtons.SuspendLayout(); this.GroupBoxGPS.SuspendLayout(); @@ -85,6 +90,8 @@ private void InitializeComponent() this.GroupBoxTrayIcon.SuspendLayout(); this.GroupBoxReminder.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.EditTimerInterval)).BeginInit(); + this.GroupBoxCalendar.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.BindingSettings)).BeginInit(); this.SuspendLayout(); // // GPSLatitudeLabel @@ -110,17 +117,13 @@ private void InitializeComponent() // // EditFontName // - resources.ApplyResources(this.EditFontName, "EditFontName"); this.EditFontName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BindingSettings, "FontName", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.EditFontName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.EditFontName.FormattingEnabled = true; + resources.ApplyResources(this.EditFontName, "EditFontName"); this.EditFontName.Name = "EditFontName"; this.EditFontName.SelectedIndexChanged += new System.EventHandler(this.EitFontName_Changed); // - // BindingSettings - // - this.BindingSettings.DataSource = typeof(System.Configuration.ApplicationSettingsBase); - // // LabelShabatDay // resources.ApplyResources(this.LabelShabatDay, "LabelShabatDay"); @@ -128,8 +131,8 @@ private void InitializeComponent() // // EditFontSize // - resources.ApplyResources(this.EditFontSize, "EditFontSize"); this.EditFontSize.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.BindingSettings, "FontSize", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); + resources.ApplyResources(this.EditFontSize, "EditFontSize"); this.EditFontSize.Maximum = new decimal(new int[] { 32, 0, @@ -155,9 +158,9 @@ private void InitializeComponent() // // PanelBackColor // - resources.ApplyResources(this.PanelBackColor, "PanelBackColor"); this.PanelBackColor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(250))))); this.PanelBackColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.PanelBackColor, "PanelBackColor"); this.PanelBackColor.Name = "PanelBackColor"; this.PanelBackColor.Click += new System.EventHandler(this.PanelBackColor_Click); // @@ -168,9 +171,9 @@ private void InitializeComponent() // // EditShabatDay // - resources.ApplyResources(this.EditShabatDay, "EditShabatDay"); this.EditShabatDay.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.EditShabatDay.FormattingEnabled = true; + resources.ApplyResources(this.EditShabatDay, "EditShabatDay"); this.EditShabatDay.Name = "EditShabatDay"; // // LabelFontName @@ -180,9 +183,9 @@ private void InitializeComponent() // // PanelTextColor // - resources.ApplyResources(this.PanelTextColor, "PanelTextColor"); this.PanelTextColor.BackColor = System.Drawing.Color.Black; this.PanelTextColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.PanelTextColor, "PanelTextColor"); this.PanelTextColor.Name = "PanelTextColor"; this.PanelTextColor.Click += new System.EventHandler(this.PanelTextColor_Click); // @@ -193,20 +196,20 @@ private void InitializeComponent() // // GPSLatitudeTextBox // - resources.ApplyResources(this.GPSLatitudeTextBox, "GPSLatitudeTextBox"); this.GPSLatitudeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BindingSettings, "Latitude", true)); + resources.ApplyResources(this.GPSLatitudeTextBox, "GPSLatitudeTextBox"); this.GPSLatitudeTextBox.Name = "GPSLatitudeTextBox"; // // GPSLongitudeTextBox // - resources.ApplyResources(this.GPSLongitudeTextBox, "GPSLongitudeTextBox"); this.GPSLongitudeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BindingSettings, "Longitude", true)); + resources.ApplyResources(this.GPSLongitudeTextBox, "GPSLongitudeTextBox"); this.GPSLongitudeTextBox.Name = "GPSLongitudeTextBox"; // // PanelButtons // - resources.ApplyResources(this.PanelButtons, "PanelButtons"); this.PanelButtons.Controls.Add(this.ButtonClose); + resources.ApplyResources(this.PanelButtons, "PanelButtons"); this.PanelButtons.Name = "PanelButtons"; // // ActionUsePersonalShabat @@ -219,17 +222,16 @@ private void InitializeComponent() // // GroupBoxGPS // - resources.ApplyResources(this.GroupBoxGPS, "GroupBoxGPS"); this.GroupBoxGPS.Controls.Add(this.GPSLatitudeTextBox); this.GroupBoxGPS.Controls.Add(GPSLatitudeLabel); this.GroupBoxGPS.Controls.Add(this.GPSLongitudeTextBox); this.GroupBoxGPS.Controls.Add(GPSLongitudeLabel); + resources.ApplyResources(this.GroupBoxGPS, "GroupBoxGPS"); this.GroupBoxGPS.Name = "GroupBoxGPS"; this.GroupBoxGPS.TabStop = false; // // GroupBoxText // - resources.ApplyResources(this.GroupBoxText, "GroupBoxText"); this.GroupBoxText.Controls.Add(this.LabelFontName); this.GroupBoxText.Controls.Add(this.LabelBackColor); this.GroupBoxText.Controls.Add(this.PanelTextColor); @@ -238,21 +240,21 @@ private void InitializeComponent() this.GroupBoxText.Controls.Add(this.PanelBackColor); this.GroupBoxText.Controls.Add(this.LabelFontSize); this.GroupBoxText.Controls.Add(this.EditFontSize); + resources.ApplyResources(this.GroupBoxText, "GroupBoxText"); this.GroupBoxText.Name = "GroupBoxText"; this.GroupBoxText.TabStop = false; // // BroupBoxShabat // - resources.ApplyResources(this.BroupBoxShabat, "BroupBoxShabat"); this.BroupBoxShabat.Controls.Add(this.EditShabatDay); this.BroupBoxShabat.Controls.Add(this.ActionUsePersonalShabat); this.BroupBoxShabat.Controls.Add(this.LabelShabatDay); + resources.ApplyResources(this.BroupBoxShabat, "BroupBoxShabat"); this.BroupBoxShabat.Name = "BroupBoxShabat"; this.BroupBoxShabat.TabStop = false; // // GroupBoxNavigation // - resources.ApplyResources(this.GroupBoxNavigation, "GroupBoxNavigation"); this.GroupBoxNavigation.Controls.Add(this.ActionUseBlackAndWhiteColors); this.GroupBoxNavigation.Controls.Add(this.ActionUseDefaultColors); this.GroupBoxNavigation.Controls.Add(this.LabelTopColor); @@ -262,6 +264,7 @@ private void InitializeComponent() this.GroupBoxNavigation.Controls.Add(this.PanelMiddleColor); this.GroupBoxNavigation.Controls.Add(this.labelBottomColor); this.GroupBoxNavigation.Controls.Add(this.LabelMiddleColor); + resources.ApplyResources(this.GroupBoxNavigation, "GroupBoxNavigation"); this.GroupBoxNavigation.Name = "GroupBoxNavigation"; this.GroupBoxNavigation.TabStop = false; // @@ -296,25 +299,25 @@ private void InitializeComponent() // // PanelTopColor // - resources.ApplyResources(this.PanelTopColor, "PanelTopColor"); this.PanelTopColor.BackColor = System.Drawing.Color.LemonChiffon; this.PanelTopColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.PanelTopColor, "PanelTopColor"); this.PanelTopColor.Name = "PanelTopColor"; this.PanelTopColor.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PanelTopColor_MouseClick); // // PanelBottomColor // - resources.ApplyResources(this.PanelBottomColor, "PanelBottomColor"); this.PanelBottomColor.BackColor = System.Drawing.Color.Honeydew; this.PanelBottomColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.PanelBottomColor, "PanelBottomColor"); this.PanelBottomColor.Name = "PanelBottomColor"; this.PanelBottomColor.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PanelBottomColor_MouseClick); // // PanelMiddleColor // - resources.ApplyResources(this.PanelMiddleColor, "PanelMiddleColor"); this.PanelMiddleColor.BackColor = System.Drawing.Color.AliceBlue; this.PanelMiddleColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.PanelMiddleColor, "PanelMiddleColor"); this.PanelMiddleColor.Name = "PanelMiddleColor"; this.PanelMiddleColor.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PanelMiddleColor_MouseClick); // @@ -330,9 +333,9 @@ private void InitializeComponent() // // GroupBoxTrayIcon // - resources.ApplyResources(this.GroupBoxTrayIcon, "GroupBoxTrayIcon"); this.GroupBoxTrayIcon.Controls.Add(this.RadioButtonNavigationForm); this.GroupBoxTrayIcon.Controls.Add(this.RadioButtonMainForm); + resources.ApplyResources(this.GroupBoxTrayIcon, "GroupBoxTrayIcon"); this.GroupBoxTrayIcon.Name = "GroupBoxTrayIcon"; this.GroupBoxTrayIcon.TabStop = false; // @@ -359,12 +362,12 @@ private void InitializeComponent() // // GroupBoxReminder // - resources.ApplyResources(this.GroupBoxReminder, "GroupBoxReminder"); this.GroupBoxReminder.Controls.Add(this.EditRemindShabat); this.GroupBoxReminder.Controls.Add(this.EditEvents); this.GroupBoxReminder.Controls.Add(this.EditTimerInterval); this.GroupBoxReminder.Controls.Add(this.LabelTimerInterval); this.GroupBoxReminder.Controls.Add(this.EditTimerEnabled); + resources.ApplyResources(this.GroupBoxReminder, "GroupBoxReminder"); this.GroupBoxReminder.Name = "GroupBoxReminder"; this.GroupBoxReminder.TabStop = false; // @@ -377,15 +380,15 @@ private void InitializeComponent() // // EditEvents // - resources.ApplyResources(this.EditEvents, "EditEvents"); this.EditEvents.CheckOnClick = true; this.EditEvents.FormattingEnabled = true; + resources.ApplyResources(this.EditEvents, "EditEvents"); this.EditEvents.Name = "EditEvents"; // // EditTimerInterval // - resources.ApplyResources(this.EditTimerInterval, "EditTimerInterval"); this.EditTimerInterval.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.BindingSettings, "ReminderInterval", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); + resources.ApplyResources(this.EditTimerInterval, "EditTimerInterval"); this.EditTimerInterval.Maximum = new decimal(new int[] { 90, 0, @@ -412,6 +415,55 @@ private void InitializeComponent() this.EditShowMonthDayToolTip.Name = "EditShowMonthDayToolTip"; this.EditShowMonthDayToolTip.UseVisualStyleBackColor = true; // + // GroupBoxCalendar + // + this.GroupBoxCalendar.Controls.Add(this.linkLabel1); + this.GroupBoxCalendar.Controls.Add(this.linkLabel2); + this.GroupBoxCalendar.Controls.Add(this.label1); + this.GroupBoxCalendar.Controls.Add(this.linkLabel3); + this.GroupBoxCalendar.Controls.Add(this.PanelCurrentDayColor); + resources.ApplyResources(this.GroupBoxCalendar, "GroupBoxCalendar"); + this.GroupBoxCalendar.Name = "GroupBoxCalendar"; + this.GroupBoxCalendar.TabStop = false; + // + // linkLabel1 + // + resources.ApplyResources(this.linkLabel1, "linkLabel1"); + this.linkLabel1.LinkColor = System.Drawing.Color.Blue; + this.linkLabel1.Name = "linkLabel1"; + this.linkLabel1.TabStop = true; + // + // linkLabel2 + // + resources.ApplyResources(this.linkLabel2, "linkLabel2"); + this.linkLabel2.LinkColor = System.Drawing.Color.Blue; + this.linkLabel2.Name = "linkLabel2"; + this.linkLabel2.TabStop = true; + // + // label1 + // + resources.ApplyResources(this.label1, "label1"); + this.label1.Name = "label1"; + // + // linkLabel3 + // + resources.ApplyResources(this.linkLabel3, "linkLabel3"); + this.linkLabel3.LinkColor = System.Drawing.Color.Blue; + this.linkLabel3.Name = "linkLabel3"; + this.linkLabel3.TabStop = true; + // + // PanelCurrentDayColor + // + this.PanelCurrentDayColor.BackColor = System.Drawing.Color.DarkRed; + this.PanelCurrentDayColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.PanelCurrentDayColor, "PanelCurrentDayColor"); + this.PanelCurrentDayColor.Name = "PanelCurrentDayColor"; + this.PanelCurrentDayColor.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PanelCurrentDayColor_MouseClick); + // + // BindingSettings + // + this.BindingSettings.DataSource = typeof(System.Configuration.ApplicationSettingsBase); + // // PreferencesForm // this.AcceptButton = this.ButtonClose; @@ -423,6 +475,7 @@ private void InitializeComponent() this.Controls.Add(this.GroupBoxReminder); this.Controls.Add(this.GroupBoxTrayIcon); this.Controls.Add(this.GroupBoxText); + this.Controls.Add(this.GroupBoxCalendar); this.Controls.Add(this.GroupBoxNavigation); this.Controls.Add(this.BroupBoxShabat); this.Controls.Add(this.GroupBoxGPS); @@ -434,7 +487,6 @@ private void InitializeComponent() this.ShowInTaskbar = false; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PreferencesForm_FormClosing); this.Shown += new System.EventHandler(this.PreferencesForm_Shown); - ((System.ComponentModel.ISupportInitialize)(this.BindingSettings)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.EditFontSize)).EndInit(); this.PanelButtons.ResumeLayout(false); this.GroupBoxGPS.ResumeLayout(false); @@ -450,6 +502,9 @@ private void InitializeComponent() this.GroupBoxReminder.ResumeLayout(false); this.GroupBoxReminder.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.EditTimerInterval)).EndInit(); + this.GroupBoxCalendar.ResumeLayout(false); + this.GroupBoxCalendar.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.BindingSettings)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); @@ -497,5 +552,11 @@ private void InitializeComponent() private System.Windows.Forms.CheckBox EditRemindShabat; private System.Windows.Forms.CheckBox EditShowMonthDayToolTip; private System.Windows.Forms.LinkLabel ActionUseBlackAndWhiteColors; + private System.Windows.Forms.GroupBox GroupBoxCalendar; + private System.Windows.Forms.LinkLabel linkLabel1; + private System.Windows.Forms.LinkLabel linkLabel2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.LinkLabel linkLabel3; + internal System.Windows.Forms.Panel PanelCurrentDayColor; } } \ No newline at end of file diff --git a/Project/Source/Forms/PreferencesForm.fr-FR.resx b/Project/Source/Forms/PreferencesForm.fr-FR.resx new file mode 100644 index 000000000..d74a52dad --- /dev/null +++ b/Project/Source/Forms/PreferencesForm.fr-FR.resx @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 19, 52 + + + 181, 52 + + + 36, 13 + + + Police + + + 244, 50 + + + 241, 31 + + + 34, 13 + + + Texte + + + 302, 50 + + + 299, 31 + + + 31, 13 + + + Fond + + + 368, 90 + + + 30, 13 + + + Haut + + + 25, 13 + + + Bas + + + 34, 13 + + + Milieu + + + 142, 13 + + + Utiliser couleurs noir et blanc + + + 112, 13 + + + Utiliser couleurs pastel + + + 59, 13 + + + Jour actuel + + + 122, 13 + + + Utiliser couleurs système + + + Calendrier + + + + AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADMAAAAzAAAAMwAAADMAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhrcP9sbW7/bW1u/2xtbv9oa3D/AAAAAAAA + AAAAAAAAAAAAAAAAAAAHBQE1AAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAM2dpbv8AAAAzAAAAMwAA + ADMAAAAzAAAAMwAAADMAAAAzypY2/9+sSP/bpkH/26ZA/9umP//fqD//5aw+/+6yP/9bYGj/7rI//+Ws + Pv/fqD//26Y//9umQf/cqEb/1KE7/6lxF///////////////////////////////////////U1VZ//// + /////////////////////////////9unRf+qcRT//////////////////////////////////////1BR + Uv/////////////////////////////////apUD/qnEU///////QlTD/0Zg4/9KZOv/RmDj/0ZUv//// + //9QUVL/////////////////////////////////2qQ//6pyFf//////0po6/9SfRf/VoUj/1Z9F/9Sb + Ov//////UlNU///////5+fj/9vb1//b29f/29/f//////9qlP/+qchX//////9KXM//Umzz/1Z0+/9Sc + PP/VmTT/+Pv//1RVVv/29fT/7ezr/+vq6f/q6un/6enq///////apT//q3MW///////f4+3/4OXw/+Hm + 8f/h5fD/4ubu/+nq7v9VV1n/6ejq/+Dg4v/e3uD/3t7g/93d4P//////26dB/612G//27+X/8+rc//Tq + 2//06tv/9Orb//Xs2//98d7/WFxj//3x3v/169r/8+nZ//Pp2f/y6dn/8uvh/96rSf+weyT/rXYc/6x0 + GP+sdBj/rHQY/610F/+vdRb/tHgV/11lcv+0eBX/r3UW/610F/+sdBj/rHQY/6pzGv/KlTb/AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADNja3f/AAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGZsdv9pbXT/am1y/2ltdP9mbHb/AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//8AAPwfAAD8HwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwf + AAD8HwAA//8AAA== + + + \ No newline at end of file diff --git a/Project/Source/Forms/PreferencesForm.resx b/Project/Source/Forms/PreferencesForm.resx index bbaf94495..4f4eefeb5 100644 --- a/Project/Source/Forms/PreferencesForm.resx +++ b/Project/Source/Forms/PreferencesForm.resx @@ -117,1151 +117,1469 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False + - - 61 + + True - - CenterParent - - - 47 - - - LabelTextColor + + NoControl - - 75, 23 - - - 150, 21 - - - 1 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 + + 20, 33 - - 7 + + 45, 13 - - 511, 3 + + 54 - - BroupBoxShabat + + Latitude - - 46 + + GPSLatitudeLabel - - 16, 31 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 58 + + GroupBoxGPS - - GroupBoxReminder + + 1 - + + False + + True NoControl - - 88, 13 + + 11, 59 - - BroupBoxShabat + + 54, 13 - - True + + 55 - - labelBottomColor + + Longitude - - True + + GPSLongitudeLabel - - GroupBoxReminder + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBoxGPS - - 188, 243 + + 3 - - PanelBackColor + + 154, 17 + + + Bottom, Right - - 25, 25 + + NoControl - - 20, 33 + + 511, 3 - - True + + 75, 23 - - 61, 13 + + 0 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Close - - 18, 30 + + ButtonClose - - Navigation Form + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + PanelButtons - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 69, 31 + + 17, 17 + + + 18, 51 - - $this + + 150, 21 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - NoControl + + EditFontName - - 0 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 17 + + GroupBoxText - - 54 + + 4 - - 0 + + True - + NoControl + + 16, 26 + + + 26, 13 + + + 48 + Day - - RadioButtonNavigationForm + + LabelShabatDay - - Hide the application at startup + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 45 + + BroupBoxShabat - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 75, 20 + + 180, 51 - - Shabat + + 37, 20 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - Preferences + + EditFontSize - - 7 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBoxText - - 66, 20 + + 7 - - 16, 206 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - Tray Icon click open + + 178, 31 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49, 13 - - $this + + 45 + + + Font size LabelFontSize - - True - - - 25, 25 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this - - - 18, 47 - - - DialogColor + + GroupBoxText - - LabelBackColor + + 6 - - Back color + + 289, 49 - - PanelTextColor + + 25, 25 - - GroupBoxNavigation + + 7 - - True + + PanelBackColor - - GroupBoxNavigation + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + GroupBoxText - - 2 - - - 1 + + 5 - + True - - 2 - - - RadioButtonMainForm - - - 60 + + NoControl - - 150, 139 + + 241, 31 - - EditTimerEnabled + + 28, 13 - - 66 + + 49 - - NoControl + + Text - - ActionUseDefaultColors + + LabelTextColor - - 19, 66 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GPSLongitudeLabel + + GroupBoxText - - $this + + 3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 19, 42 - - 25, 25 + + 150, 21 - - NoControl + + 0 EditShabatDay - - 6, 13 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 39 + + BroupBoxShabat - - 65 + + 0 - + + True + + NoControl - - 0 + + 16, 31 - - 66, 13 + + 57, 13 - - 4 + + 46 - - 69, 57 + + Font name - - GroupBoxText + + LabelFontName - - Enabled + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 37, 20 + + GroupBoxText - - 5 + + 0 - - 2 + + 244, 49 - - GroupBoxNavigation + + 25, 25 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - ActionUseSystemColors + + PanelTextColor - - 0 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Form, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxText - - 167, 17 + + 2 - - 218, 15 + + True - - EditFontSize + + NoControl - - 15, 15 + + 286, 31 - - GroupBoxGPS + + 32, 13 - - GroupBoxNavigation + + 47 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Back - - True + + LabelBackColor - - 399, 131 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 150, 21 + + GroupBoxText - + 1 - - 218, 131 - - - BroupBoxShabat + + 69, 31 - - NoControl + + 75, 20 - - NoControl + + 3 - - 92, 13 + + GPSLatitudeTextBox - - 123, 17 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBoxGPS - + 0 - - 49 + + 69, 57 - - 45, 13 + + 75, 20 - - 5 + + 4 - - 6 + + GPSLongitudeTextBox - - 1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10, 420 + + GroupBoxGPS - - 15, 131 + + 2 - - $this + + Bottom - - 26, 13 + + 10, 425 - - 49 + + 589, 28 - - 10, 10, 10, 10 + + 57 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PanelButtons - - 0 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 9 + + + True NoControl - - 52, 13 + + 16, 71 - - 4 + + 104, 13 + + + 58 + + + Use personal shabat + + + ActionUsePersonalShabat System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Reminder + + BroupBoxShabat - - 25, 25 + + 1 - - NoControl + + 218, 15 - - NoControl + + 165, 100 - - NoControl + + 59 - - True + + GPS coordonates - - NoControl + + GroupBoxGPS - - True + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19, 202 + + $this - - 6 + + 8 - - GPS coordonates + + 15, 131 - - Use black and white colors + + 368, 91 - - Longitude + + 60 - - 54, 13 + + Text - + GroupBoxText - - System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + $this - - Show sun rise and set in month view + + 4 - - 16, 31 + + 15, 15 - - 8 + + 187, 100 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 61 - + + Shabat + + + BroupBoxShabat + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - 3 + + 7 - - 2 + + ActionUseBlackAndWhiteColors - - True + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PanelTopColor + + GroupBoxNavigation - - Text + + 0 - - $this + + ActionUseDefaultColors - - 8 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + GroupBoxNavigation - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 4 + + LabelTopColor System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBoxNavigation - - 47 + + 2 - - 1 + + ActionUseSystemColors - - EditEvents + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 99, 17 + + GroupBoxNavigation - - MiddleRight + + 3 - - Use personal shabat + + PanelTopColor - + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxNavigation + + 4 - - Use system colors + + PanelBottomColor - - 16, 85 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GroupBoxNavigation - - Remind Shabat + + 5 - - ActionUseBlackAndWhiteColors + + PanelMiddleColor - - Font name + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 GroupBoxNavigation - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 0 + + labelBottomColor - - GPSLatitudeLabel + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxNavigation + + + 7 + + + LabelMiddleColor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxNavigation + + + 8 + + + 218, 238 + + + 165, 140 62 - - 25, 25 + + Navigation window - - - AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADMAAAAzAAAAMwAAADMAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhrcP9sbW7/bW1u/2xtbv9oa3D/AAAAAAAA - AAAAAAAAAAAAAAAAAAAHBQE1AAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAM2dpbv8AAAAzAAAAMwAA - ADMAAAAzAAAAMwAAADMAAAAzypY2/9+sSP/bpkH/26ZA/9umP//fqD//5aw+/+6yP/9bYGj/7rI//+Ws - Pv/fqD//26Y//9umQf/cqEb/1KE7/6lxF///////////////////////////////////////U1VZ//// - /////////////////////////////9unRf+qcRT//////////////////////////////////////1BR - Uv/////////////////////////////////apUD/qnEU///////QlTD/0Zg4/9KZOv/RmDj/0ZUv//// - //9QUVL/////////////////////////////////2qQ//6pyFf//////0po6/9SfRf/VoUj/1Z9F/9Sb - Ov//////UlNU///////5+fj/9vb1//b29f/29/f//////9qlP/+qchX//////9KXM//Umzz/1Z0+/9Sc - PP/VmTT/+Pv//1RVVv/29fT/7ezr/+vq6f/q6un/6enq///////apT//q3MW///////f4+3/4OXw/+Hm - 8f/h5fD/4ubu/+nq7v9VV1n/6ejq/+Dg4v/e3uD/3t7g/93d4P//////26dB/612G//27+X/8+rc//Tq - 2//06tv/9Orb//Xs2//98d7/WFxj//3x3v/169r/8+nZ//Pp2f/y6dn/8uvh/96rSf+weyT/rXYc/6x0 - GP+sdBj/rHQY/610F/+vdRb/tHgV/11lcv+0eBX/r3UW/610F/+sdBj/rHQY/6pzGv/KlTb/AAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADNja3f/AAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGZsdv9pbXT/am1y/2ltdP9mbHb/AAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA//8AAPwfAAD8HwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwf - AAD8HwAA//8AAA== - + + GroupBoxNavigation + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 6 + + + True + + + NoControl + + + 16, 97 + + + 135, 13 + + + 59 + + + Use black and white colors + + + ActionUseBlackAndWhiteColors System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxNavigation + + + 0 + + + True + + + NoControl + + + 16, 113 + + + 88, 13 + + + 59 + + + Use pastel colors + + + ActionUseDefaultColors + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxNavigation + + + 1 + + + True + + + NoControl + + + 16, 31 + + + 26, 13 + + + 47 + + + Top + LabelTopColor - + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxNavigation + + + 2 + + + True + + + NoControl + + + 16, 81 + + + 92, 13 + + + 58 + + + Use system colors + + + ActionUseSystemColors + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxNavigation + + + 3 + + + 19, 49 + + + 25, 25 + + + 7 + + + PanelTopColor + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxNavigation + + + 4 + + + 105, 49 + + + 25, 25 + + 8 - - GroupBoxReminder + + PanelBottomColor - - GroupBoxTrayIcon + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxNavigation + + + 5 + + + 62, 49 + + + 25, 25 + + + 8 + + + PanelMiddleColor + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxNavigation + + + 6 + + + True + + + NoControl + + + 102, 31 + + + 40, 13 + + + 49 + + + Bottom + + + labelBottomColor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxNavigation + + + 7 + + + True + + + NoControl + + + 59, 31 + + + 38, 13 49 - - 3 + + Center - + + LabelMiddleColor + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 165, 243 + + GroupBoxNavigation - - EditFontName + + 8 - - GroupBoxGPS + + RadioButtonNavigationForm - - LabelShabatDay + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PanelButtons + + GroupBoxTrayIcon - - 55 + + 0 - - NoControl + + RadioButtonMainForm - - EditRemindShabat + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16, 184 + + GroupBoxTrayIcon - - LabelTimerInterval + + 1 + + + 399, 15 + + + 188, 100 63 - - 75, 20 + + Tray Icon click open - - Navigation window + + GroupBoxTrayIcon - - 5 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxGPS + + $this - - 59 + + 3 - - 19, 49 + + True - - 59 + + NoControl - - 57, 13 + + 18, 53 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 17 - + 0 - - System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Navigation Form - - PanelBottomColor + + RadioButtonNavigationForm - + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxTrayIcon + + + 0 + + + True + + NoControl - - BroupBoxShabat + + 18, 30 - - 188, 100 + + 123, 17 - - Use pastel colors + + 0 - - 15, 390 + + Application's window - - NoControl + + RadioButtonMainForm - + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxTrayIcon + + 1 - - 8 + + Bottom, Left - - 16, 139 + + True + + + NoControl + + + 15, 395 + + + 167, 17 + + + 0 + + + Hide the application at startup - - GPSLatitudeTextBox + + EditStartupHide - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + $this - - 7 + + 1 - - Center color + + EditRemindShabat - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxTrayIcon + + GroupBoxReminder - - True + + 0 - - 399, 15 + + EditEvents - - PreferencesForm + + System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Latitude + + GroupBoxReminder - - GroupBoxText + + 1 - - Application's window + + EditTimerInterval - - PanelMiddleColor + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16, 222 + + GroupBoxReminder - - 19, 157 + + 2 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + LabelTimerInterval - - 218, 390 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PanelButtons + + GroupBoxReminder - - GPSLongitudeTextBox + + 3 - - GroupBoxGPS + + EditTimerEnabled - - 19, 103 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxReminder 4 - - GroupBoxText - - - 5 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 399, 131 - - 17, 19 + + 188, 247 - - GroupBoxNavigation + + 65 - - True + + Reminder - + GroupBoxReminder - - EditStartupHide - - - GroupBoxNavigation + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + $this - - EditShowMonthDayToolTip + + 2 - - 11, 59 + + True - + NoControl - - 18, 97 + + 19, 216 - - 1 + + 99, 17 - - 48 + + 4 - - 589, 28 + + Remind Shabat - - Bottom + + EditRemindShabat - - 64, 13 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - LabelMiddleColor + + GroupBoxReminder - - 19, 42 + + 0 - + + 19, 66 + + True - - GroupBoxText + + 150, 139 - - 15, 130 + + 3 - - 19, 216 + + EditEvents - - 201, 17 + + System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBoxReminder - - True + + 1 - - 18, 148 + + 19, 37 - - True + + 66, 20 - - 7 + + 2 + + + EditTimerInterval System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ActionUsePersonalShabat + + GroupBoxReminder - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - Top color + + True - - 4 + + NoControl - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 19 - - 16, 26 + + 61, 13 - - Text color + + 1 - - 0 + + Days count - - GroupBoxText + + LabelTimerInterval - - GroupBoxText + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16, 71 + + GroupBoxReminder - - 104, 13 + + 3 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True + + + MiddleRight + + + NoControl - - 8 + + 104, 39 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 65, 17 0 - - 0 + + Enabled - - 57 + + EditTimerEnabled - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GroupBoxReminder - - 49, 13 + + 4 - - Bottom, Right + + Bottom, Left - - GroupBoxTrayIcon + + True - - 58, 13 + + NoControl - - GroupBoxGPS + + 218, 395 - - 19, 37 + + 201, 17 - - 187, 100 + + 66 - - BindingSettings + + Show sun rise and set in month view - - 3 + + EditShowMonthDayToolTip - - GroupBoxNavigation + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 609, 458 + + $this - - GroupBoxText + + 0 - - Bottom color + + True - + + NoControl + + + 16, 97 + + 135, 13 - + 59 - - GroupBoxReminder + + Use black and white colors - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + linkLabel1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GroupBoxCalendar + + 0 - - GroupBoxNavigation + + True - - 7 + + NoControl - - 3 + + 16, 113 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 88, 13 - - 3 + + 59 - - Days count + + Use pastel colors - + + linkLabel2 + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxCalendar + + + 1 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBoxNavigation + + 16, 31 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 61, 13 - - ButtonClose + + 47 - - System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Current day - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label1 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxCalendar - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - EditTimerInterval + + True - + + NoControl + + + 16, 81 + + + 92, 13 + + 58 - - 6 + + Use system colors - - 16, 190 + + linkLabel3 - - 165, 100 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 65, 17 + + GroupBoxCalendar - - 187, 243 + + 3 - - 6 + + 19, 49 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 25, 25 - - 1 + + 7 - - True + + PanelCurrentDayColor - - LabelFontName + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxCalendar - - Font size + + 4 - - 18, 53 + + 15, 238 - - 54, 13 + + 187, 140 - - Close + + 62 - - GroupBoxReminder + + Calendar - - 16, 81 + + GroupBoxCalendar - - 2 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + $this - - 2 + + 5 17, 17 @@ -1269,13 +1587,64 @@ True - - False - - - 154, 17 - - - False - + + 6, 13 + + + 609, 463 + + + + AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADMAAAAzAAAAMwAAADMAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhrcP9sbW7/bW1u/2xtbv9oa3D/AAAAAAAA + AAAAAAAAAAAAAAAAAAAHBQE1AAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAM2dpbv8AAAAzAAAAMwAA + ADMAAAAzAAAAMwAAADMAAAAzypY2/9+sSP/bpkH/26ZA/9umP//fqD//5aw+/+6yP/9bYGj/7rI//+Ws + Pv/fqD//26Y//9umQf/cqEb/1KE7/6lxF///////////////////////////////////////U1VZ//// + /////////////////////////////9unRf+qcRT//////////////////////////////////////1BR + Uv/////////////////////////////////apUD/qnEU///////QlTD/0Zg4/9KZOv/RmDj/0ZUv//// + //9QUVL/////////////////////////////////2qQ//6pyFf//////0po6/9SfRf/VoUj/1Z9F/9Sb + Ov//////UlNU///////5+fj/9vb1//b29f/29/f//////9qlP/+qchX//////9KXM//Umzz/1Z0+/9Sc + PP/VmTT/+Pv//1RVVv/29fT/7ezr/+vq6f/q6un/6enq///////apT//q3MW///////f4+3/4OXw/+Hm + 8f/h5fD/4ubu/+nq7v9VV1n/6ejq/+Dg4v/e3uD/3t7g/93d4P//////26dB/612G//27+X/8+rc//Tq + 2//06tv/9Orb//Xs2//98d7/WFxj//3x3v/169r/8+nZ//Pp2f/y6dn/8uvh/96rSf+weyT/rXYc/6x0 + GP+sdBj/rHQY/610F/+vdRb/tHgV/11lcv+0eBX/r3UW/610F/+sdBj/rHQY/6pzGv/KlTb/AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADNja3f/AAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGZsdv9pbXT/am1y/2ltdP9mbHb/AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//8AAPwfAAD8HwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwf + AAD8HwAA//8AAA== + + + + NoControl + + + 10, 10, 10, 10 + + + CenterParent + + + Preferences + + + DialogColor + + + System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BindingSettings + + + System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreferencesForm + + + System.Windows.Forms.Form, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/README.md b/README.md index 05a07562b..43d0d305e 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,10 @@ These are Pesa'h or Easter which is the liberation of illusions, Shavuot or Week ## Changelog +#### __________ - Version 1.10 + +- Add current day color parameter. + #### 2019.08.25 - Version 1.9 - Improve check update. diff --git a/Setup/OrdisoftwareHebrewCalendarSetup.iss b/Setup/OrdisoftwareHebrewCalendarSetup.iss index 6962fdd59..f70ef950d 100644 --- a/Setup/OrdisoftwareHebrewCalendarSetup.iss +++ b/Setup/OrdisoftwareHebrewCalendarSetup.iss @@ -3,7 +3,7 @@ #define MyAppName "Hebrew Calendar" #define MyAppNameNoSpace "HebrewCalendar" -#define MyAppVersion "1.9" +#define MyAppVersion "1.10" #define MyAppPublisher "Ordisoftware" #define MyAppURL "http://www.ordisoftware.com/projects/hebrew-calendar" #define MyAppExeName "Ordisoftware.HebrewCalendar.exe" From 0ca74381e1215b0a8c631cc62897c52fea9d4d54 Mon Sep 17 00:00:00 2001 From: Olivier Rogier Date: Sun, 25 Aug 2019 10:54:06 +0200 Subject: [PATCH 2/4] Add colors parameters for calendar month view --- Project/App.config | 15 + Project/Dependencies/Calendar.NET/Calendar.cs | 6 +- Project/Properties/Settings.Designer.cs | 61 +- Project/Properties/Settings.settings | 15 + Project/Source/Classes/Localizer.cs | 7 + Project/Source/Classes/SettingsHelper.cs | 16 +- Project/Source/Forms/MainForm.Designer.cs | 2 +- Project/Source/Forms/MainForm.FillMonths.cs | 12 +- Project/Source/Forms/MainForm.LoadData.cs | 3 +- Project/Source/Forms/MainForm.Update.cs | 4 +- Project/Source/Forms/MainForm.cs | 3 +- Project/Source/Forms/MainForm.resx | 14 +- Project/Source/Forms/NavigationForm.cs | 2 +- Project/Source/Forms/PreferencesForm.cs | 113 +- .../Source/Forms/PreferencesForm.designer.cs | 291 ++- Project/Source/Forms/PreferencesForm.fr.resx | 111 +- Project/Source/Forms/PreferencesForm.resx | 1982 ++++++++--------- README.md | 2 +- 18 files changed, 1442 insertions(+), 1217 deletions(-) diff --git a/Project/App.config b/Project/App.config index 7de1af6b1..c0a12d3ff 100644 --- a/Project/App.config +++ b/Project/App.config @@ -129,8 +129,23 @@ True + Red + + DarkRed + + DarkGreen + + + DarkBlue + + + DarkGoldenrod + + + + diff --git a/Project/Dependencies/Calendar.NET/Calendar.cs b/Project/Dependencies/Calendar.NET/Calendar.cs index 321d09082..3a2f101b8 100644 --- a/Project/Dependencies/Calendar.NET/Calendar.cs +++ b/Project/Dependencies/Calendar.NET/Calendar.cs @@ -71,6 +71,10 @@ public class Calendar : UserControl private const int MarginSize = 10; // ORDISOFTWARE MODIF END + // ORDISOFTWARE MODIF BEGIN + public Color CurrentDayColor = Color.Red; + // ORDISOFTWARE MODIF END + /// /// Indicates the font for the times on the day view /// @@ -979,7 +983,7 @@ private void RenderMonthCalendar(PaintEventArgs e) { //ORDISOFTWARE MODIF BEGIN //g.DrawString(counter.ToString(CultureInfo.InvariantCulture), _todayFont, Brushes.Black, xStart + 5, yStart + 2); - g.DrawString(counter.ToString(CultureInfo.InvariantCulture), _todayFont, new SolidBrush(Program.Settings.CurrentDayColor), xStart + 5, yStart + 2); + g.DrawString(counter.ToString(CultureInfo.InvariantCulture), _todayFont, new SolidBrush(CurrentDayColor), xStart + 5, yStart + 2); //ORDISOFTWARE MODIF END } else diff --git a/Project/Properties/Settings.Designer.cs b/Project/Properties/Settings.Designer.cs index c8bf7cbc7..a82e3e28b 100644 --- a/Project/Properties/Settings.Designer.cs +++ b/Project/Properties/Settings.Designer.cs @@ -503,7 +503,7 @@ public bool UpgradeRequired { [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("DarkRed")] + [global::System.Configuration.DefaultSettingValueAttribute("Red")] public global::System.Drawing.Color CurrentDayColor { get { return ((global::System.Drawing.Color)(this["CurrentDayColor"])); @@ -512,5 +512,64 @@ public bool UpgradeRequired { this["CurrentDayColor"] = value; } } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("DarkRed")] + public global::System.Drawing.Color TorahEventColor { + get { + return ((global::System.Drawing.Color)(this["TorahEventColor"])); + } + set { + this["TorahEventColor"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("DarkGreen")] + public global::System.Drawing.Color SeasonEventColor { + get { + return ((global::System.Drawing.Color)(this["SeasonEventColor"])); + } + set { + this["SeasonEventColor"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("DarkBlue")] + public global::System.Drawing.Color MoonEventColor { + get { + return ((global::System.Drawing.Color)(this["MoonEventColor"])); + } + set { + this["MoonEventColor"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("DarkGoldenrod")] + public global::System.Drawing.Color FullMoonColor { + get { + return ((global::System.Drawing.Color)(this["FullMoonColor"])); + } + set { + this["FullMoonColor"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public global::System.Drawing.Color Paramètre { + get { + return ((global::System.Drawing.Color)(this["Paramètre"])); + } + set { + this["Paramètre"] = value; + } + } } } diff --git a/Project/Properties/Settings.settings b/Project/Properties/Settings.settings index 12a4180ec..f5ae11287 100644 --- a/Project/Properties/Settings.settings +++ b/Project/Properties/Settings.settings @@ -128,7 +128,22 @@ True + Red + + DarkRed + + DarkGreen + + + DarkBlue + + + DarkGoldenrod + + + + \ No newline at end of file diff --git a/Project/Source/Classes/Localizer.cs b/Project/Source/Classes/Localizer.cs index 563b094b0..4ef814c7f 100644 --- a/Project/Source/Classes/Localizer.cs +++ b/Project/Source/Classes/Localizer.cs @@ -258,6 +258,13 @@ static public readonly Dictionary ReplaceCalendarText "Voulez-vous continuer ?" } }; + static public readonly Dictionary NavigationDayText + = new Dictionary() + { + { "en", "Day #" }, + { "fr", "Jour #" } + }; + static public readonly Dictionary> MoonPhaseText = new Dictionary>() { diff --git a/Project/Source/Classes/SettingsHelper.cs b/Project/Source/Classes/SettingsHelper.cs index 53461324c..f9e20bff3 100644 --- a/Project/Source/Classes/SettingsHelper.cs +++ b/Project/Source/Classes/SettingsHelper.cs @@ -82,9 +82,13 @@ static internal void Retrieve(this Settings settings) PreferencesForm.Instance.PanelTopColor.BackColor = settings.NavigateTopColor; PreferencesForm.Instance.PanelMiddleColor.BackColor = settings.NavigateMiddleColor; PreferencesForm.Instance.PanelBottomColor.BackColor = settings.NavigateBottomColor; - PreferencesForm.Instance.PanelTextColor.BackColor = settings.TextColor; - PreferencesForm.Instance.PanelBackColor.BackColor = settings.TextBackground; + PreferencesForm.Instance.PanelTextColor2.BackColor = settings.TextColor; + PreferencesForm.Instance.PanelBackColor2.BackColor = settings.TextBackground; PreferencesForm.Instance.PanelCurrentDayColor.BackColor = settings.CurrentDayColor; + PreferencesForm.Instance.PanelTorahEventColor.BackColor = settings.TorahEventColor; + PreferencesForm.Instance.PanelSeasonEventColor.BackColor = settings.SeasonEventColor; + PreferencesForm.Instance.PanelMoonEventColor.BackColor = settings.MoonEventColor; + PreferencesForm.Instance.PanelFullMoonColor.BackColor = settings.FullMoonColor; } /// @@ -114,9 +118,13 @@ static internal void Store(this Settings settings) settings.NavigateTopColor = PreferencesForm.Instance.PanelTopColor.BackColor; settings.NavigateMiddleColor = PreferencesForm.Instance.PanelMiddleColor.BackColor; settings.NavigateBottomColor = PreferencesForm.Instance.PanelBottomColor.BackColor; - settings.TextColor = PreferencesForm.Instance.PanelTextColor.BackColor; - settings.TextBackground = PreferencesForm.Instance.PanelBackColor.BackColor; + settings.TextColor = PreferencesForm.Instance.PanelTextColor2.BackColor; + settings.TextBackground = PreferencesForm.Instance.PanelBackColor2.BackColor; settings.CurrentDayColor = PreferencesForm.Instance.PanelCurrentDayColor.BackColor; + settings.TorahEventColor = PreferencesForm.Instance.PanelTorahEventColor.BackColor; + settings.SeasonEventColor = PreferencesForm.Instance.PanelSeasonEventColor.BackColor; + settings.MoonEventColor = PreferencesForm.Instance.PanelMoonEventColor.BackColor; + settings.FullMoonColor = PreferencesForm.Instance.PanelFullMoonColor.BackColor; settings.Save(); } diff --git a/Project/Source/Forms/MainForm.Designer.cs b/Project/Source/Forms/MainForm.Designer.cs index 2ca1586e6..25a43d647 100644 --- a/Project/Source/Forms/MainForm.Designer.cs +++ b/Project/Source/Forms/MainForm.Designer.cs @@ -1140,7 +1140,6 @@ private void InitializeComponent() private System.Windows.Forms.ToolStripMenuItem MenuAbout; internal System.Windows.Forms.ToolStripMenuItem MenuExit; private System.Windows.Forms.TabPage TabPageMonth; - private System.Windows.Forms.Panel PanelViewMonth; private System.Windows.Forms.ToolStripMenuItem ActionViewMonth; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; @@ -1161,6 +1160,7 @@ private void InitializeComponent() private System.Windows.Forms.Timer TimerReminder; private System.Windows.Forms.ToolStripButton ActionCheckUpdate; internal Calendar.NET.Calendar CalendarMonth; + internal System.Windows.Forms.Panel PanelViewMonth; } } diff --git a/Project/Source/Forms/MainForm.FillMonths.cs b/Project/Source/Forms/MainForm.FillMonths.cs index 6e05ac67b..f4bdc2b80 100644 --- a/Project/Source/Forms/MainForm.FillMonths.cs +++ b/Project/Source/Forms/MainForm.FillMonths.cs @@ -11,7 +11,7 @@ /// You may add additional accurate notices of copyright ownership. /// /// 2019-01 -/// 2019-01 +/// 2019-08 using System; using System.Drawing; using Calendar.NET; @@ -22,7 +22,7 @@ namespace Ordisoftware.HebrewCalendar public partial class MainForm { - private void FillMonths() + internal void FillMonths() { string strToolTip = "Error on getting sun rise and set"; int progress = 0; @@ -51,8 +51,8 @@ void add(Color color, string text) ? " " + Localizer.BabylonianHebrewMonthText[row.LunarMonth] : ""; colorMoon = row.IsNewMoon == 1 - ? Color.DarkRed - : ( row.IsFullMoon == 1 ? Color.DarkGoldenrod : Color.DarkBlue ); + ? Program.Settings.TorahEventColor + : ( row.IsFullMoon == 1 ? Program.Settings.FullMoonColor : Program.Settings.MoonEventColor ); if ( (MoonriseType)row.MoonriseType == MoonriseType.AfterSet ) { if ( row.Moonset != "" ) add(Color.Black, Localizer.EphemerisText.GetLang(EphemerisType.Set) + row.Moonset); @@ -66,9 +66,9 @@ void add(Color color, string text) if ( row.Moonset != "" ) add(Color.Black, Localizer.EphemerisText.GetLang(EphemerisType.Set) + row.Moonset); } if ( row.SeasonChange != 0 ) - add(Color.DarkGreen, Localizer.SeasonEventText.GetLang((SeasonChangeType)row.SeasonChange)); + add(Program.Settings.SeasonEventColor, Localizer.SeasonEventText.GetLang((SeasonChangeType)row.SeasonChange)); if ( row.TorahEvents != 0 ) - add(Color.DarkRed, Localizer.TorahEventText.GetLang((TorahEventType)row.TorahEvents)); + add(Program.Settings.TorahEventColor, Localizer.TorahEventText.GetLang((TorahEventType)row.TorahEvents)); } } diff --git a/Project/Source/Forms/MainForm.LoadData.cs b/Project/Source/Forms/MainForm.LoadData.cs index 056355d4b..6ff401844 100644 --- a/Project/Source/Forms/MainForm.LoadData.cs +++ b/Project/Source/Forms/MainForm.LoadData.cs @@ -27,7 +27,6 @@ public partial class MainForm private void LoadData() { - int progress = 0; void update(object tableSender, DataRowChangeEventArgs tableEvent) { @@ -35,6 +34,7 @@ void update(object tableSender, DataRowChangeEventArgs tableEvent) }; LunisolarCalendar.LunisolarDays.RowChanged += update; Cursor = Cursors.WaitCursor; + Enabled = false; try { SQLiteUtility.CreateDatabaseIfNotExists(); @@ -79,6 +79,7 @@ void update(object tableSender, DataRowChangeEventArgs tableEvent) } finally { + Enabled = true; Cursor = Cursors.Default; LunisolarCalendar.LunisolarDays.RowChanged -= update; SetView(Program.Settings.CurrentView, true); diff --git a/Project/Source/Forms/MainForm.Update.cs b/Project/Source/Forms/MainForm.Update.cs index 9bd25a391..c42216336 100644 --- a/Project/Source/Forms/MainForm.Update.cs +++ b/Project/Source/Forms/MainForm.Update.cs @@ -11,7 +11,7 @@ /// You may add additional accurate notices of copyright ownership. /// /// 2016-04 -/// 2016-04 +/// 2019-08 using System; using System.Drawing; using System.Windows.Forms; @@ -43,7 +43,7 @@ private bool UpdateProgress(int index, int count, string text) /// /// Update the buttons. /// - private void UpdateButtons() + internal void UpdateButtons() { try { diff --git a/Project/Source/Forms/MainForm.cs b/Project/Source/Forms/MainForm.cs index b51e6b1ee..d758b43d6 100644 --- a/Project/Source/Forms/MainForm.cs +++ b/Project/Source/Forms/MainForm.cs @@ -50,7 +50,7 @@ static MainForm() /// /// Indicate if generation is in progress. /// - private bool IsGenerating = false; + internal bool IsGenerating = false; /// /// Indicate if application can be closed. @@ -77,6 +77,7 @@ private MainForm() SystemEvents.SessionEnding += SessionEnding; CalendarText.ForeColor = Program.Settings.TextColor; CalendarText.BackColor = Program.Settings.TextBackground; + CalendarMonth.CurrentDayColor = Program.Settings.CurrentDayColor; CalendarMonth.CalendarDateChanged += (date) => { NavigationForm.Instance.Date = date; diff --git a/Project/Source/Forms/MainForm.resx b/Project/Source/Forms/MainForm.resx index 25e3a8c2a..acb8ee681 100644 --- a/Project/Source/Forms/MainForm.resx +++ b/Project/Source/Forms/MainForm.resx @@ -265,7 +265,7 @@ CalendarMonth - Calendar.NET.Calendar, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null + Calendar.NET.Calendar, Ordisoftware.HebrewCalendar, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null PanelViewMonth @@ -1265,7 +1265,7 @@ RZ6ZkPuaW+vWxAVEnEPEOkG8JzqWoo1EsHo3gkLC6HIKEyPZP2DXOAfuNyXNRuuB2TBWhuPaz7/h4o8/ CcLbIqYhI4gzcqFNzsLehDRExWgRGq4h0lC6lELEdRygCIC3t/eFbdu2GdavX588d+7cd4j7EXbg0bq4 ORgwF6Ip+31c7L0K87nvbkJsgL66FpVHj6GMptnB4nLk5BchLTMPB1IyoYlNQkLYZmTIrKCUb/rVzWun - eZNEkrNq1Sp/Ozs7J+J5i/A6YSlhAWE2QXykzIpSKv/o6y7AoZD7YDKWoqPrPFpa28TFwtOv6vgJHNEf + eZNEkrNq1Sp/Ozs7J+J5i/A6YSlhAWE2QXykzIpUKv/o6y7AoZD7YDKWoqPrPFpa28TFwtOv6vgJHNEf R9mRahws1yNZl02E+6EKi4YsQNm/eYtnzcdrnVPydlohmxD6qQPemD+TSRcR+JvwSQITPkqYTuD+vzGE Hgt2eUJXoZqC0kAr6FM+Qkv7WTQ0tojbraCwiG61RGob5R96pS2C1i7CuvdWJNrOmPERvfs24Q0CR/VK jo81sn3IAclKfPLq3E9ojck4Siab8PJ56K1VH24sVNlC5z0L6o0vQSnb0f+VTNaxYcOGPHt7e/dp06Z9 @@ -1273,7 +1273,7 @@ QSm1+9357Qcj6f8Kgj3hRX5GeJzwfHHAfBQpnkOWz/NI9lyIJI8F0EiXQrP1ZUQ4vwa100pBrpQ4jNH+ pwi39Q3I0swgsIwOhL8KhMfkgwR2kPfM/Hrtsga103IiWg7lJvtfFWvtL8gcX+mQrl6U4/ru4nyHhXPc 31nytAft5bM437d953OeuCX4JS6Qm30yTSO8QGB1OPcrCezwMsJigh2BC44j53PY8Uk1zic7wfObBwj/ - MtHDBF5nx29ZcP/beLOy+hP8OlSgu+mriQAAAABJRU5ErkJggg== + MtHDBF5nx29ZcP/beLOy+hP3tlSfwhcYZQAAAABJRU5ErkJggg== @@ -2334,7 +2334,7 @@ LunisolarCalendar - Ordisoftware.HebrewCalendar.Data.LunisolarCalendar, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null + Ordisoftware.HebrewCalendar.Data.LunisolarCalendar, Ordisoftware.HebrewCalendar, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null bindingNavigatorCountItem @@ -2694,19 +2694,19 @@ LunisolarDaysTableAdapter - Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.LunisolarDaysTableAdapter, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null + Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.LunisolarDaysTableAdapter, Ordisoftware.HebrewCalendar, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null TableAdapterManager - Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.TableAdapterManager, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null + Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.TableAdapterManager, Ordisoftware.HebrewCalendar, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null ReportTableAdapter - Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.ReportTableAdapter, Ordisoftware.HebrewCalendar, Version=1.9.0.0, Culture=neutral, PublicKeyToken=null + Ordisoftware.HebrewCalendar.Data.LunisolarCalendarTableAdapters.ReportTableAdapter, Ordisoftware.HebrewCalendar, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null MainForm diff --git a/Project/Source/Forms/NavigationForm.cs b/Project/Source/Forms/NavigationForm.cs index 295e9c293..a5d3304ab 100644 --- a/Project/Source/Forms/NavigationForm.cs +++ b/Project/Source/Forms/NavigationForm.cs @@ -51,7 +51,7 @@ public DateTime Date LabelDate.Text = value.ToLongDateString(); string strMonth = Localizer.BabylonianHebrewMonthText[row.LunarMonth]; LabelLunarMonthValue.Text = strMonth + " #" + row.LunarMonth.ToString(); - LabelLunarDayValue.Text = "Day #" + row.LunarDay.ToString(); + LabelLunarDayValue.Text = Localizer.NavigationDayText.GetLang() + row.LunarDay.ToString(); if ( value.DayOfWeek == (DayOfWeek)Program.Settings.ShabatDay ) LabelLunarDayValue.Text += " (Shabat)"; LabelSunriseValue.Text = row.Sunrise.ToString(); diff --git a/Project/Source/Forms/PreferencesForm.cs b/Project/Source/Forms/PreferencesForm.cs index 353d5e97f..41861949c 100644 --- a/Project/Source/Forms/PreferencesForm.cs +++ b/Project/Source/Forms/PreferencesForm.cs @@ -60,14 +60,14 @@ private PreferencesForm() LoadEvents(); LoadFonts(); BindingSettings.DataSource = Program.Settings; - } + } - /// - /// Event handler. Called by PreferencesForm for shown events. - /// - /// Source of the event. - /// Event information. - private void PreferencesForm_Shown(object sender, EventArgs e) + /// + /// Event handler. Called by PreferencesForm for shown events. + /// + /// Source of the event. + /// Event information. + private void PreferencesForm_Shown(object sender, EventArgs e) { OldShabatDay = Program.Settings.ShabatDay; OldLatitude = Program.Settings.Latitude; @@ -97,7 +97,7 @@ private void PreferencesForm_FormClosing(object sender, FormClosingEventArgs e) Program.Settings.TrayIconClickOpen = TrayIconClickOpen.NavigationForm; Program.Settings.ShabatDay = (int)( (DayOfWeekItem)EditShabatDay.SelectedItem ).Day; Program.Settings.ReminderInterval = (int)EditTimerInterval.Value; - for (int index = 0; index < EditEvents.Items.Count; index++ ) + for ( int index = 0; index < EditEvents.Items.Count; index++ ) try { string name = "TorahEventRemind" + ( (TorahEventItem)EditEvents.Items[index] ).Event.ToString(); @@ -106,7 +106,7 @@ private void PreferencesForm_FormClosing(object sender, FormClosingEventArgs e) catch { } - Program.Settings.Save(); + Program.Settings.Store(); } /// @@ -148,9 +148,9 @@ private void EitFontName_Changed(object sender, EventArgs e) /// Event information. private void PanelBackColor_Click(object sender, EventArgs e) { - DialogColor.Color = PanelBackColor.BackColor; + DialogColor.Color = PanelBackColor2.BackColor; if ( DialogColor.ShowDialog() == DialogResult.Cancel ) return; - PanelBackColor.BackColor = DialogColor.Color; + PanelBackColor2.BackColor = DialogColor.Color; MainForm.CalendarText.BackColor = DialogColor.Color; } @@ -161,9 +161,9 @@ private void PanelBackColor_Click(object sender, EventArgs e) /// Event information. private void PanelTextColor_Click(object sender, EventArgs e) { - DialogColor.Color = PanelTextColor.BackColor; + DialogColor.Color = PanelTextColor2.BackColor; if ( DialogColor.ShowDialog() == DialogResult.Cancel ) return; - PanelTextColor.BackColor = DialogColor.Color; + PanelTextColor2.BackColor = DialogColor.Color; MainForm.CalendarText.ForeColor = DialogColor.Color; } @@ -257,6 +257,86 @@ private void ActionUseDefaultColors_LinkClicked(object sender, LinkLabelLinkClic NavigationForm.Instance.PanelBottom.BackColor = PanelBottomColor.BackColor; } + private void UpdateCalendarMonth() + { + Program.Settings.Store(); + MainForm.Instance.IsGenerating = true; + Cursor = Cursors.WaitCursor; + MainForm.Instance.Cursor = Cursors.WaitCursor; + Enabled = false; + MainForm.Instance.PanelViewMonth.Parent = null; + try + { + MainForm.Instance.CalendarMonth.CurrentDayColor = PanelCurrentDayColor.BackColor; + MainForm.Instance.CalendarMonth.LoadPresetHolidays = false; + MainForm.Instance.FillMonths(); + } + finally + { + Enabled = true; + Cursor = Cursors.Default; + MainForm.Instance.Cursor = Cursors.Default; + MainForm.Instance.IsGenerating = false; + MainForm.Instance.SetView(Program.Settings.CurrentView, true); + MainForm.Instance.UpdateButtons(); + } + } + + /// + /// Event handler. Called by PanelCurrentDayColor for click events. + /// + /// Source of the event. + /// Event information. + private void PanelCurrentDayColor_MouseClick(object sender, MouseEventArgs e) + { + DialogColor.Color = PanelCurrentDayColor.BackColor; + if ( DialogColor.ShowDialog() == DialogResult.Cancel ) return; + PanelCurrentDayColor.BackColor = DialogColor.Color; + UpdateCalendarMonth(); + } + + private void PanelTorahEventColor_Click(object sender, EventArgs e) + { + DialogColor.Color = PanelTorahEventColor.BackColor; + if ( DialogColor.ShowDialog() == DialogResult.Cancel ) return; + PanelTorahEventColor.BackColor = DialogColor.Color; + UpdateCalendarMonth(); + } + + private void PanelSeasonEventColor_Click(object sender, EventArgs e) + { + DialogColor.Color = PanelSeasonEventColor.BackColor; + if ( DialogColor.ShowDialog() == DialogResult.Cancel ) return; + PanelSeasonEventColor.BackColor = DialogColor.Color; + UpdateCalendarMonth(); + } + + private void PanelMoonEventColor_Click(object sender, EventArgs e) + { + DialogColor.Color = PanelMoonEventColor.BackColor; + if ( DialogColor.ShowDialog() == DialogResult.Cancel ) return; + PanelMoonEventColor.BackColor = DialogColor.Color; + UpdateCalendarMonth(); + } + + private void PanelFullMoonColor_Click(object sender, EventArgs e) + { + DialogColor.Color = PanelFullMoonColor.BackColor; + if ( DialogColor.ShowDialog() == DialogResult.Cancel ) return; + PanelFullMoonColor.BackColor = DialogColor.Color; + UpdateCalendarMonth(); + } + + private void ActionRestoreCalendarColors_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + PanelCurrentDayColor.BackColor = Color.Red; + PanelTorahEventColor.BackColor = Color.DarkRed; + PanelSeasonEventColor.BackColor = Color.DarkGreen; + PanelMoonEventColor.BackColor = Color.DarkBlue; + PanelFullMoonColor.BackColor = Color.DarkGoldenrod; + UpdateCalendarMonth(); + } + /// /// Loads the days. /// @@ -359,13 +439,6 @@ private class TorahEventItem } - private void PanelCurrentDayColor_MouseClick(object sender, MouseEventArgs e) - { - DialogColor.Color = PanelCurrentDayColor.BackColor; - if ( DialogColor.ShowDialog() == DialogResult.Cancel ) return; - PanelCurrentDayColor.BackColor = DialogColor.Color; - - } } } diff --git a/Project/Source/Forms/PreferencesForm.designer.cs b/Project/Source/Forms/PreferencesForm.designer.cs index a30ab5ef0..2c8421b1d 100644 --- a/Project/Source/Forms/PreferencesForm.designer.cs +++ b/Project/Source/Forms/PreferencesForm.designer.cs @@ -35,21 +35,22 @@ private void InitializeComponent() this.DialogColor = new System.Windows.Forms.ColorDialog(); this.ButtonClose = new System.Windows.Forms.Button(); this.EditFontName = new System.Windows.Forms.ComboBox(); + this.BindingSettings = new System.Windows.Forms.BindingSource(this.components); this.LabelShabatDay = new System.Windows.Forms.Label(); - this.EditFontSize = new System.Windows.Forms.NumericUpDown(); this.LabelFontSize = new System.Windows.Forms.Label(); - this.PanelBackColor = new System.Windows.Forms.Panel(); - this.LabelTextColor = new System.Windows.Forms.Label(); this.EditShabatDay = new System.Windows.Forms.ComboBox(); this.LabelFontName = new System.Windows.Forms.Label(); - this.PanelTextColor = new System.Windows.Forms.Panel(); - this.LabelBackColor = new System.Windows.Forms.Label(); this.GPSLatitudeTextBox = new System.Windows.Forms.TextBox(); this.GPSLongitudeTextBox = new System.Windows.Forms.TextBox(); this.PanelButtons = new System.Windows.Forms.Panel(); this.ActionUsePersonalShabat = new System.Windows.Forms.LinkLabel(); this.GroupBoxGPS = new System.Windows.Forms.GroupBox(); this.GroupBoxText = new System.Windows.Forms.GroupBox(); + this.EditFontSize2 = new System.Windows.Forms.NumericUpDown(); + this.LabelBackColor2 = new System.Windows.Forms.Label(); + this.PanelTextColor2 = new System.Windows.Forms.Panel(); + this.LabelTextColor2 = new System.Windows.Forms.Label(); + this.PanelBackColor2 = new System.Windows.Forms.Panel(); this.BroupBoxShabat = new System.Windows.Forms.GroupBox(); this.GroupBoxNavigation = new System.Windows.Forms.GroupBox(); this.ActionUseBlackAndWhiteColors = new System.Windows.Forms.LinkLabel(); @@ -73,25 +74,30 @@ private void InitializeComponent() this.EditTimerEnabled = new System.Windows.Forms.CheckBox(); this.EditShowMonthDayToolTip = new System.Windows.Forms.CheckBox(); this.GroupBoxCalendar = new System.Windows.Forms.GroupBox(); - this.linkLabel1 = new System.Windows.Forms.LinkLabel(); - this.linkLabel2 = new System.Windows.Forms.LinkLabel(); + this.ActionRestoreCalendarColors = new System.Windows.Forms.LinkLabel(); + this.label5 = new System.Windows.Forms.Label(); + this.PanelFullMoonColor = new System.Windows.Forms.Panel(); + this.label4 = new System.Windows.Forms.Label(); + this.PanelMoonEventColor = new System.Windows.Forms.Panel(); + this.label3 = new System.Windows.Forms.Label(); + this.PanelSeasonEventColor = new System.Windows.Forms.Panel(); + this.label2 = new System.Windows.Forms.Label(); + this.PanelTorahEventColor = new System.Windows.Forms.Panel(); this.label1 = new System.Windows.Forms.Label(); - this.linkLabel3 = new System.Windows.Forms.LinkLabel(); this.PanelCurrentDayColor = new System.Windows.Forms.Panel(); - this.BindingSettings = new System.Windows.Forms.BindingSource(this.components); GPSLatitudeLabel = new System.Windows.Forms.Label(); GPSLongitudeLabel = new System.Windows.Forms.Label(); - ((System.ComponentModel.ISupportInitialize)(this.EditFontSize)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.BindingSettings)).BeginInit(); this.PanelButtons.SuspendLayout(); this.GroupBoxGPS.SuspendLayout(); this.GroupBoxText.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.EditFontSize2)).BeginInit(); this.BroupBoxShabat.SuspendLayout(); this.GroupBoxNavigation.SuspendLayout(); this.GroupBoxTrayIcon.SuspendLayout(); this.GroupBoxReminder.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.EditTimerInterval)).BeginInit(); this.GroupBoxCalendar.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.BindingSettings)).BeginInit(); this.SuspendLayout(); // // GPSLatitudeLabel @@ -117,63 +123,32 @@ private void InitializeComponent() // // EditFontName // + resources.ApplyResources(this.EditFontName, "EditFontName"); this.EditFontName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BindingSettings, "FontName", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.EditFontName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.EditFontName.FormattingEnabled = true; - resources.ApplyResources(this.EditFontName, "EditFontName"); this.EditFontName.Name = "EditFontName"; this.EditFontName.SelectedIndexChanged += new System.EventHandler(this.EitFontName_Changed); // + // BindingSettings + // + this.BindingSettings.DataSource = typeof(System.Configuration.ApplicationSettingsBase); + // // LabelShabatDay // resources.ApplyResources(this.LabelShabatDay, "LabelShabatDay"); this.LabelShabatDay.Name = "LabelShabatDay"; // - // EditFontSize - // - this.EditFontSize.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.BindingSettings, "FontSize", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); - resources.ApplyResources(this.EditFontSize, "EditFontSize"); - this.EditFontSize.Maximum = new decimal(new int[] { - 32, - 0, - 0, - 0}); - this.EditFontSize.Minimum = new decimal(new int[] { - 4, - 0, - 0, - 0}); - this.EditFontSize.Name = "EditFontSize"; - this.EditFontSize.Value = new decimal(new int[] { - 10, - 0, - 0, - 0}); - this.EditFontSize.ValueChanged += new System.EventHandler(this.EitFontName_Changed); - // // LabelFontSize // resources.ApplyResources(this.LabelFontSize, "LabelFontSize"); this.LabelFontSize.Name = "LabelFontSize"; // - // PanelBackColor - // - this.PanelBackColor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(250))))); - this.PanelBackColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.PanelBackColor, "PanelBackColor"); - this.PanelBackColor.Name = "PanelBackColor"; - this.PanelBackColor.Click += new System.EventHandler(this.PanelBackColor_Click); - // - // LabelTextColor - // - resources.ApplyResources(this.LabelTextColor, "LabelTextColor"); - this.LabelTextColor.Name = "LabelTextColor"; - // // EditShabatDay // + resources.ApplyResources(this.EditShabatDay, "EditShabatDay"); this.EditShabatDay.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.EditShabatDay.FormattingEnabled = true; - resources.ApplyResources(this.EditShabatDay, "EditShabatDay"); this.EditShabatDay.Name = "EditShabatDay"; // // LabelFontName @@ -181,35 +156,22 @@ private void InitializeComponent() resources.ApplyResources(this.LabelFontName, "LabelFontName"); this.LabelFontName.Name = "LabelFontName"; // - // PanelTextColor - // - this.PanelTextColor.BackColor = System.Drawing.Color.Black; - this.PanelTextColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.PanelTextColor, "PanelTextColor"); - this.PanelTextColor.Name = "PanelTextColor"; - this.PanelTextColor.Click += new System.EventHandler(this.PanelTextColor_Click); - // - // LabelBackColor - // - resources.ApplyResources(this.LabelBackColor, "LabelBackColor"); - this.LabelBackColor.Name = "LabelBackColor"; - // // GPSLatitudeTextBox // - this.GPSLatitudeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BindingSettings, "Latitude", true)); resources.ApplyResources(this.GPSLatitudeTextBox, "GPSLatitudeTextBox"); + this.GPSLatitudeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BindingSettings, "Latitude", true)); this.GPSLatitudeTextBox.Name = "GPSLatitudeTextBox"; // // GPSLongitudeTextBox // - this.GPSLongitudeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BindingSettings, "Longitude", true)); resources.ApplyResources(this.GPSLongitudeTextBox, "GPSLongitudeTextBox"); + this.GPSLongitudeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BindingSettings, "Longitude", true)); this.GPSLongitudeTextBox.Name = "GPSLongitudeTextBox"; // // PanelButtons // - this.PanelButtons.Controls.Add(this.ButtonClose); resources.ApplyResources(this.PanelButtons, "PanelButtons"); + this.PanelButtons.Controls.Add(this.ButtonClose); this.PanelButtons.Name = "PanelButtons"; // // ActionUsePersonalShabat @@ -222,39 +184,88 @@ private void InitializeComponent() // // GroupBoxGPS // + resources.ApplyResources(this.GroupBoxGPS, "GroupBoxGPS"); this.GroupBoxGPS.Controls.Add(this.GPSLatitudeTextBox); this.GroupBoxGPS.Controls.Add(GPSLatitudeLabel); this.GroupBoxGPS.Controls.Add(this.GPSLongitudeTextBox); this.GroupBoxGPS.Controls.Add(GPSLongitudeLabel); - resources.ApplyResources(this.GroupBoxGPS, "GroupBoxGPS"); this.GroupBoxGPS.Name = "GroupBoxGPS"; this.GroupBoxGPS.TabStop = false; // // GroupBoxText // + resources.ApplyResources(this.GroupBoxText, "GroupBoxText"); + this.GroupBoxText.Controls.Add(this.EditFontSize2); this.GroupBoxText.Controls.Add(this.LabelFontName); - this.GroupBoxText.Controls.Add(this.LabelBackColor); - this.GroupBoxText.Controls.Add(this.PanelTextColor); - this.GroupBoxText.Controls.Add(this.LabelTextColor); + this.GroupBoxText.Controls.Add(this.LabelBackColor2); + this.GroupBoxText.Controls.Add(this.PanelTextColor2); + this.GroupBoxText.Controls.Add(this.LabelTextColor2); + this.GroupBoxText.Controls.Add(this.PanelBackColor2); this.GroupBoxText.Controls.Add(this.EditFontName); - this.GroupBoxText.Controls.Add(this.PanelBackColor); this.GroupBoxText.Controls.Add(this.LabelFontSize); - this.GroupBoxText.Controls.Add(this.EditFontSize); - resources.ApplyResources(this.GroupBoxText, "GroupBoxText"); this.GroupBoxText.Name = "GroupBoxText"; this.GroupBoxText.TabStop = false; // + // EditFontSize2 + // + resources.ApplyResources(this.EditFontSize2, "EditFontSize2"); + this.EditFontSize2.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.BindingSettings, "FontSize", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); + this.EditFontSize2.Maximum = new decimal(new int[] { + 32, + 0, + 0, + 0}); + this.EditFontSize2.Minimum = new decimal(new int[] { + 4, + 0, + 0, + 0}); + this.EditFontSize2.Name = "EditFontSize2"; + this.EditFontSize2.Value = new decimal(new int[] { + 10, + 0, + 0, + 0}); + this.EditFontSize2.ValueChanged += new System.EventHandler(this.EitFontName_Changed); + // + // LabelBackColor2 + // + resources.ApplyResources(this.LabelBackColor2, "LabelBackColor2"); + this.LabelBackColor2.Name = "LabelBackColor2"; + // + // PanelTextColor2 + // + resources.ApplyResources(this.PanelTextColor2, "PanelTextColor2"); + this.PanelTextColor2.BackColor = System.Drawing.Color.Black; + this.PanelTextColor2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelTextColor2.Name = "PanelTextColor2"; + this.PanelTextColor2.Click += new System.EventHandler(this.PanelTextColor_Click); + // + // LabelTextColor2 + // + resources.ApplyResources(this.LabelTextColor2, "LabelTextColor2"); + this.LabelTextColor2.Name = "LabelTextColor2"; + // + // PanelBackColor2 + // + resources.ApplyResources(this.PanelBackColor2, "PanelBackColor2"); + this.PanelBackColor2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(250))))); + this.PanelBackColor2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelBackColor2.Name = "PanelBackColor2"; + this.PanelBackColor2.Click += new System.EventHandler(this.PanelBackColor_Click); + // // BroupBoxShabat // + resources.ApplyResources(this.BroupBoxShabat, "BroupBoxShabat"); this.BroupBoxShabat.Controls.Add(this.EditShabatDay); this.BroupBoxShabat.Controls.Add(this.ActionUsePersonalShabat); this.BroupBoxShabat.Controls.Add(this.LabelShabatDay); - resources.ApplyResources(this.BroupBoxShabat, "BroupBoxShabat"); this.BroupBoxShabat.Name = "BroupBoxShabat"; this.BroupBoxShabat.TabStop = false; // // GroupBoxNavigation // + resources.ApplyResources(this.GroupBoxNavigation, "GroupBoxNavigation"); this.GroupBoxNavigation.Controls.Add(this.ActionUseBlackAndWhiteColors); this.GroupBoxNavigation.Controls.Add(this.ActionUseDefaultColors); this.GroupBoxNavigation.Controls.Add(this.LabelTopColor); @@ -264,7 +275,6 @@ private void InitializeComponent() this.GroupBoxNavigation.Controls.Add(this.PanelMiddleColor); this.GroupBoxNavigation.Controls.Add(this.labelBottomColor); this.GroupBoxNavigation.Controls.Add(this.LabelMiddleColor); - resources.ApplyResources(this.GroupBoxNavigation, "GroupBoxNavigation"); this.GroupBoxNavigation.Name = "GroupBoxNavigation"; this.GroupBoxNavigation.TabStop = false; // @@ -299,25 +309,25 @@ private void InitializeComponent() // // PanelTopColor // + resources.ApplyResources(this.PanelTopColor, "PanelTopColor"); this.PanelTopColor.BackColor = System.Drawing.Color.LemonChiffon; this.PanelTopColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.PanelTopColor, "PanelTopColor"); this.PanelTopColor.Name = "PanelTopColor"; this.PanelTopColor.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PanelTopColor_MouseClick); // // PanelBottomColor // + resources.ApplyResources(this.PanelBottomColor, "PanelBottomColor"); this.PanelBottomColor.BackColor = System.Drawing.Color.Honeydew; this.PanelBottomColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.PanelBottomColor, "PanelBottomColor"); this.PanelBottomColor.Name = "PanelBottomColor"; this.PanelBottomColor.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PanelBottomColor_MouseClick); // // PanelMiddleColor // + resources.ApplyResources(this.PanelMiddleColor, "PanelMiddleColor"); this.PanelMiddleColor.BackColor = System.Drawing.Color.AliceBlue; this.PanelMiddleColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.PanelMiddleColor, "PanelMiddleColor"); this.PanelMiddleColor.Name = "PanelMiddleColor"; this.PanelMiddleColor.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PanelMiddleColor_MouseClick); // @@ -333,9 +343,9 @@ private void InitializeComponent() // // GroupBoxTrayIcon // + resources.ApplyResources(this.GroupBoxTrayIcon, "GroupBoxTrayIcon"); this.GroupBoxTrayIcon.Controls.Add(this.RadioButtonNavigationForm); this.GroupBoxTrayIcon.Controls.Add(this.RadioButtonMainForm); - resources.ApplyResources(this.GroupBoxTrayIcon, "GroupBoxTrayIcon"); this.GroupBoxTrayIcon.Name = "GroupBoxTrayIcon"; this.GroupBoxTrayIcon.TabStop = false; // @@ -362,12 +372,12 @@ private void InitializeComponent() // // GroupBoxReminder // + resources.ApplyResources(this.GroupBoxReminder, "GroupBoxReminder"); this.GroupBoxReminder.Controls.Add(this.EditRemindShabat); this.GroupBoxReminder.Controls.Add(this.EditEvents); this.GroupBoxReminder.Controls.Add(this.EditTimerInterval); this.GroupBoxReminder.Controls.Add(this.LabelTimerInterval); this.GroupBoxReminder.Controls.Add(this.EditTimerEnabled); - resources.ApplyResources(this.GroupBoxReminder, "GroupBoxReminder"); this.GroupBoxReminder.Name = "GroupBoxReminder"; this.GroupBoxReminder.TabStop = false; // @@ -380,15 +390,15 @@ private void InitializeComponent() // // EditEvents // + resources.ApplyResources(this.EditEvents, "EditEvents"); this.EditEvents.CheckOnClick = true; this.EditEvents.FormattingEnabled = true; - resources.ApplyResources(this.EditEvents, "EditEvents"); this.EditEvents.Name = "EditEvents"; // // EditTimerInterval // - this.EditTimerInterval.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.BindingSettings, "ReminderInterval", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); resources.ApplyResources(this.EditTimerInterval, "EditTimerInterval"); + this.EditTimerInterval.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.BindingSettings, "ReminderInterval", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); this.EditTimerInterval.Maximum = new decimal(new int[] { 90, 0, @@ -417,53 +427,94 @@ private void InitializeComponent() // // GroupBoxCalendar // - this.GroupBoxCalendar.Controls.Add(this.linkLabel1); - this.GroupBoxCalendar.Controls.Add(this.linkLabel2); + resources.ApplyResources(this.GroupBoxCalendar, "GroupBoxCalendar"); + this.GroupBoxCalendar.Controls.Add(this.ActionRestoreCalendarColors); + this.GroupBoxCalendar.Controls.Add(this.label5); + this.GroupBoxCalendar.Controls.Add(this.PanelFullMoonColor); + this.GroupBoxCalendar.Controls.Add(this.label4); + this.GroupBoxCalendar.Controls.Add(this.PanelMoonEventColor); + this.GroupBoxCalendar.Controls.Add(this.label3); + this.GroupBoxCalendar.Controls.Add(this.PanelSeasonEventColor); + this.GroupBoxCalendar.Controls.Add(this.label2); + this.GroupBoxCalendar.Controls.Add(this.PanelTorahEventColor); this.GroupBoxCalendar.Controls.Add(this.label1); - this.GroupBoxCalendar.Controls.Add(this.linkLabel3); this.GroupBoxCalendar.Controls.Add(this.PanelCurrentDayColor); - resources.ApplyResources(this.GroupBoxCalendar, "GroupBoxCalendar"); this.GroupBoxCalendar.Name = "GroupBoxCalendar"; this.GroupBoxCalendar.TabStop = false; // - // linkLabel1 + // ActionRestoreCalendarColors + // + resources.ApplyResources(this.ActionRestoreCalendarColors, "ActionRestoreCalendarColors"); + this.ActionRestoreCalendarColors.LinkColor = System.Drawing.Color.Blue; + this.ActionRestoreCalendarColors.Name = "ActionRestoreCalendarColors"; + this.ActionRestoreCalendarColors.TabStop = true; + this.ActionRestoreCalendarColors.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.ActionRestoreCalendarColors_LinkClicked); + // + // label5 + // + resources.ApplyResources(this.label5, "label5"); + this.label5.Name = "label5"; + // + // PanelFullMoonColor + // + resources.ApplyResources(this.PanelFullMoonColor, "PanelFullMoonColor"); + this.PanelFullMoonColor.BackColor = System.Drawing.Color.DarkGoldenrod; + this.PanelFullMoonColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelFullMoonColor.Name = "PanelFullMoonColor"; + this.PanelFullMoonColor.Click += new System.EventHandler(this.PanelFullMoonColor_Click); + // + // label4 + // + resources.ApplyResources(this.label4, "label4"); + this.label4.Name = "label4"; + // + // PanelMoonEventColor + // + resources.ApplyResources(this.PanelMoonEventColor, "PanelMoonEventColor"); + this.PanelMoonEventColor.BackColor = System.Drawing.Color.DarkBlue; + this.PanelMoonEventColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelMoonEventColor.Name = "PanelMoonEventColor"; + this.PanelMoonEventColor.Click += new System.EventHandler(this.PanelMoonEventColor_Click); + // + // label3 + // + resources.ApplyResources(this.label3, "label3"); + this.label3.Name = "label3"; // - resources.ApplyResources(this.linkLabel1, "linkLabel1"); - this.linkLabel1.LinkColor = System.Drawing.Color.Blue; - this.linkLabel1.Name = "linkLabel1"; - this.linkLabel1.TabStop = true; + // PanelSeasonEventColor // - // linkLabel2 + resources.ApplyResources(this.PanelSeasonEventColor, "PanelSeasonEventColor"); + this.PanelSeasonEventColor.BackColor = System.Drawing.Color.DarkGreen; + this.PanelSeasonEventColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelSeasonEventColor.Name = "PanelSeasonEventColor"; + this.PanelSeasonEventColor.Click += new System.EventHandler(this.PanelSeasonEventColor_Click); // - resources.ApplyResources(this.linkLabel2, "linkLabel2"); - this.linkLabel2.LinkColor = System.Drawing.Color.Blue; - this.linkLabel2.Name = "linkLabel2"; - this.linkLabel2.TabStop = true; + // label2 + // + resources.ApplyResources(this.label2, "label2"); + this.label2.Name = "label2"; + // + // PanelTorahEventColor + // + resources.ApplyResources(this.PanelTorahEventColor, "PanelTorahEventColor"); + this.PanelTorahEventColor.BackColor = System.Drawing.Color.DarkRed; + this.PanelTorahEventColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelTorahEventColor.Name = "PanelTorahEventColor"; + this.PanelTorahEventColor.Click += new System.EventHandler(this.PanelTorahEventColor_Click); // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; // - // linkLabel3 - // - resources.ApplyResources(this.linkLabel3, "linkLabel3"); - this.linkLabel3.LinkColor = System.Drawing.Color.Blue; - this.linkLabel3.Name = "linkLabel3"; - this.linkLabel3.TabStop = true; - // // PanelCurrentDayColor // - this.PanelCurrentDayColor.BackColor = System.Drawing.Color.DarkRed; - this.PanelCurrentDayColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; resources.ApplyResources(this.PanelCurrentDayColor, "PanelCurrentDayColor"); + this.PanelCurrentDayColor.BackColor = System.Drawing.Color.Red; + this.PanelCurrentDayColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.PanelCurrentDayColor.Name = "PanelCurrentDayColor"; this.PanelCurrentDayColor.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PanelCurrentDayColor_MouseClick); // - // BindingSettings - // - this.BindingSettings.DataSource = typeof(System.Configuration.ApplicationSettingsBase); - // // PreferencesForm // this.AcceptButton = this.ButtonClose; @@ -487,12 +538,13 @@ private void InitializeComponent() this.ShowInTaskbar = false; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PreferencesForm_FormClosing); this.Shown += new System.EventHandler(this.PreferencesForm_Shown); - ((System.ComponentModel.ISupportInitialize)(this.EditFontSize)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.BindingSettings)).EndInit(); this.PanelButtons.ResumeLayout(false); this.GroupBoxGPS.ResumeLayout(false); this.GroupBoxGPS.PerformLayout(); this.GroupBoxText.ResumeLayout(false); this.GroupBoxText.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.EditFontSize2)).EndInit(); this.BroupBoxShabat.ResumeLayout(false); this.BroupBoxShabat.PerformLayout(); this.GroupBoxNavigation.ResumeLayout(false); @@ -504,7 +556,6 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.EditTimerInterval)).EndInit(); this.GroupBoxCalendar.ResumeLayout(false); this.GroupBoxCalendar.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.BindingSettings)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); @@ -515,12 +566,9 @@ private void InitializeComponent() private System.Windows.Forms.Button ButtonClose; private System.Windows.Forms.Label LabelShabatDay; private System.Windows.Forms.Label LabelFontSize; - private System.Windows.Forms.Label LabelTextColor; private System.Windows.Forms.Label LabelFontName; - private System.Windows.Forms.Label LabelBackColor; private System.Windows.Forms.BindingSource BindingSettings; private System.Windows.Forms.ComboBox EditFontName; - private System.Windows.Forms.NumericUpDown EditFontSize; private System.Windows.Forms.ComboBox EditShabatDay; private System.Windows.Forms.TextBox GPSLatitudeTextBox; private System.Windows.Forms.TextBox GPSLongitudeTextBox; @@ -534,8 +582,6 @@ private void InitializeComponent() private System.Windows.Forms.Label labelBottomColor; private System.Windows.Forms.Label LabelMiddleColor; private System.Windows.Forms.LinkLabel ActionUseSystemColors; - internal System.Windows.Forms.Panel PanelBackColor; - internal System.Windows.Forms.Panel PanelTextColor; internal System.Windows.Forms.Panel PanelTopColor; internal System.Windows.Forms.Panel PanelBottomColor; internal System.Windows.Forms.Panel PanelMiddleColor; @@ -553,10 +599,21 @@ private void InitializeComponent() private System.Windows.Forms.CheckBox EditShowMonthDayToolTip; private System.Windows.Forms.LinkLabel ActionUseBlackAndWhiteColors; private System.Windows.Forms.GroupBox GroupBoxCalendar; - private System.Windows.Forms.LinkLabel linkLabel1; - private System.Windows.Forms.LinkLabel linkLabel2; private System.Windows.Forms.Label label1; - private System.Windows.Forms.LinkLabel linkLabel3; internal System.Windows.Forms.Panel PanelCurrentDayColor; + private System.Windows.Forms.NumericUpDown EditFontSize2; + private System.Windows.Forms.Label LabelBackColor2; + internal System.Windows.Forms.Panel PanelTextColor2; + private System.Windows.Forms.Label LabelTextColor2; + internal System.Windows.Forms.Panel PanelBackColor2; + private System.Windows.Forms.Label label4; + internal System.Windows.Forms.Panel PanelMoonEventColor; + private System.Windows.Forms.Label label3; + internal System.Windows.Forms.Panel PanelSeasonEventColor; + internal System.Windows.Forms.Panel PanelTorahEventColor; + private System.Windows.Forms.Label label5; + internal System.Windows.Forms.Panel PanelFullMoonColor; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.LinkLabel ActionRestoreCalendarColors; } } \ No newline at end of file diff --git a/Project/Source/Forms/PreferencesForm.fr.resx b/Project/Source/Forms/PreferencesForm.fr.resx index eddf17687..33ef34093 100644 --- a/Project/Source/Forms/PreferencesForm.fr.resx +++ b/Project/Source/Forms/PreferencesForm.fr.resx @@ -128,7 +128,7 @@ Fermer - 19, 47 + 19, 52 147, 21 @@ -139,26 +139,11 @@ Jour - - 19, 97 - - 89, 13 + 36, 13 - Taille de la police - - - 19, 150 - - - 16, 131 - - - 84, 13 - - - Couleur du texte + Police 147, 21 @@ -169,18 +154,6 @@ Nom de la police - - 19, 204 - - - 16, 185 - - - 82, 13 - - - Couleur du fond - 75, 31 @@ -196,6 +169,9 @@ Coordonnées GPS + + 368, 89 + Texte @@ -215,10 +191,10 @@ Utiliser couleurs pastel - 82, 13 + 30, 13 - Couleur du haut + Haut 122, 13 @@ -227,16 +203,16 @@ Utiliser couleurs système - 78, 13 + 25, 13 - Couleur du bas + Bas - 87, 13 + 34, 13 - Couleur du milieu + Milieu Clic sur la Tray Icon ouvre @@ -298,6 +274,69 @@ Afficher le lever et coucher du soleil dans la vue par mois + + Calendrier + + + 157, 13 + + + Restaurer les valeurs par défaut + + + 75, 70 + + + 59, 13 + + + Pleine lune + + + 78, 88 + + + 13, 70 + + + 31, 13 + + + Lune + + + 16, 88 + + + 134, 21 + + + 39, 13 + + + Saison + + + 137, 39 + + + 75, 21 + + + 78, 39 + + + 13, 21 + + + 59, 13 + + + Aujourd'hui + + + 16, 39 + AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAA diff --git a/Project/Source/Forms/PreferencesForm.resx b/Project/Source/Forms/PreferencesForm.resx index 4f4eefeb5..7bdc4c26b 100644 --- a/Project/Source/Forms/PreferencesForm.resx +++ b/Project/Source/Forms/PreferencesForm.resx @@ -117,1534 +117,1480 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False - - - True + + 7 - - - NoControl + + 61 - - - 20, 33 + + + CenterParent - - 45, 13 + + 1 - - 54 + + 3 - - Latitude + + + 37, 20 - - GPSLatitudeLabel + + 8 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 23 - - GroupBoxGPS + + True - + 1 - - False - - - True - - - NoControl + + 150, 21 - - 11, 59 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 54, 13 + + 2 - - 55 + + 47 - - Longitude + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GPSLongitudeLabel + + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - GroupBoxGPS + + 15, 238 - - 3 + + 46 - - 154, 17 - - - Bottom, Right + + 58 - - NoControl + + GroupBoxReminder - - 511, 3 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 23 + + True - - 0 + + NoControl - - Close + + 88, 13 - - ButtonClose + + BroupBoxShabat - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - PanelButtons + + 49 - - 0 + + labelBottomColor - - 17, 17 - - - 18, 51 + + GroupBoxCalendar - - 150, 21 + + GroupBoxReminder - - 5 + + True - - EditFontName + + 188, 247 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionUseSystemColors - - GroupBoxText + + 25, 25 - - 4 + + 20, 33 - + True - - NoControl + + 61, 13 - - 16, 26 + + Today - - 26, 13 + + 18, 30 - - 48 + + 2 - - Day + + 188, 100 - - LabelShabatDay + + Navigation Form - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - BroupBoxShabat + + 25, 25 - - 2 + + Restore to defaults - - 180, 51 + + 69, 31 - - 37, 20 + + $this - - 6 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - EditFontSize + + NoControl - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - GroupBoxText + + PanelSeasonEventColor - - 7 + + 102, 17 - - True + + 54 + + + 511, 3 + + + 0 NoControl - - 178, 31 + + GroupBoxCalendar - - 49, 13 + + RadioButtonNavigationForm + + + 47 + + + Hide the application at startup 45 - - Font size - - - LabelFontSize + + GroupBoxCalendar - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxText + + 75, 20 - - 6 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 289, 49 + + Preferences - - 25, 25 + + 7 - + 7 - - PanelBackColor + + NoControl - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 66, 20 - - GroupBoxText + + LabelMiddleColor - - 5 + + 16, 94 - - True + + Tray Icon click open - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 241, 31 + + 63 - - 28, 13 + + LabelFontSize - - 49 + + True - - Text + + 4 - - LabelTextColor + + 18, 51 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DialogColor - - GroupBoxText + + LabelTextColor2 - - 3 + + 19, 39 - - 19, 42 + + 8 - - 150, 21 + + 47 - - 0 + + True - - EditShabatDay + + GPSLatitudeLabel - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - BroupBoxShabat + + 1 - - 0 + + True - + True - - NoControl + + 2 - - 16, 31 + + 7 - - 57, 13 + + RadioButtonMainForm - - 46 + + 60 - - Font name + + PanelBackColor2 - - LabelFontName + + EditTimerEnabled - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 66 - - GroupBoxText + + NoControl - - 0 + + ActionUseDefaultColors - - 244, 49 + + 19, 69 - - 25, 25 + + True - - 8 + + GPSLongitudeLabel - - PanelTextColor + + 201, 17 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - GroupBoxText + + 25, 25 - - 2 + + 3 - - True + + ActionRestoreCalendarColors - - NoControl + + 9 - - 286, 31 + + EditShabatDay - - 32, 13 + + 6, 13 - - 47 + + 15, 131 - - Back + + 65 - - LabelBackColor + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBoxText + + NoControl - - 1 + + Bottom - - 69, 31 + + 40, 13 - - 75, 20 + + 4 - - 3 + + 69, 57 - - GPSLatitudeTextBox + + GroupBoxText - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 70, 21 - - GroupBoxGPS + + Enabled - - 0 + + ButtonClose - - 69, 57 + + 3 - - 75, 20 + + GroupBoxNavigation - - 4 + + 34, 13 - - GPSLongitudeTextBox + + 0 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Form, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxGPS + + 7 - - 2 + + 55 - - Bottom + + 167, 17 - - 10, 425 + + 218, 15 - - 589, 28 + + GroupBoxText - - 57 + + 9 - - PanelButtons + + GroupBoxGPS - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - $this + + 25, 25 - - 9 + + GroupBoxNavigation - + True - - NoControl + + 399, 131 - - 16, 71 + + NoControl - - 104, 13 + + 0 - - 58 + + 4 - - Use personal shabat + + 96, 13 - - ActionUsePersonalShabat + + 1 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PanelCurrentDayColor - + BroupBoxShabat - - 1 + + $this - - 218, 15 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 165, 100 + + NoControl - - 59 + + 10 - - GPS coordonates + + 92, 13 - - GroupBoxGPS - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this + + Moon - - 8 - - - 15, 131 - - - 368, 91 - - - 60 + + 123, 17 - - Text + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxText + + 0 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49 - - $this + + GroupBoxCalendar - - 4 + + 45, 13 - - 15, 15 + + Back - - 187, 100 + + 7 - - 61 + + 1 - - Shabat + + 317, 49 - - BroupBoxShabat + + 10, 425 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxText - + $this - - 7 - - - ActionUseBlackAndWhiteColors + + 26, 13 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 37, 13 - - GroupBoxNavigation + + 10, 10, 10, 10 - - 0 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ActionUseDefaultColors + + PanelTorahEventColor - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBoxNavigation + + 26, 13 - - 1 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - LabelTopColor + + Reminder - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxNavigation - - - 2 - - - ActionUseSystemColors + + 25, 25 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBoxNavigation + + 187, 140 - + 3 - - PanelTopColor + + 165, 140 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - + GroupBoxNavigation - - 4 + + NoControl - - PanelBottomColor + + True - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxCalendar - + GroupBoxNavigation - - 5 - - - PanelMiddleColor - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - GroupBoxNavigation + + NoControl - - 6 + + GPS coordonates - - labelBottomColor + + 48 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Longitude - - GroupBoxNavigation + + 54, 13 - - 7 + + True - - LabelMiddleColor + + System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxNavigation - - - 8 - - - 218, 238 + + Show sun rise and set in month view - - 165, 140 + + 17, 21 - - 62 + + 16, 21 - - Navigation window + + 51 - - GroupBoxNavigation + + $this - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxCalendar - - $this + + 3 - - 6 + + 2 - + True - - NoControl - - - 16, 97 + + PanelTopColor - - 135, 13 + + Text - - 59 + + 0 Use black and white colors - - ActionUseBlackAndWhiteColors - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBoxNavigation + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + 4 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 16, 113 - - - 88, 13 + + Full moon - - 59 - - - Use pastel colors - - - ActionUseDefaultColors - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBoxNavigation + + 47 - + 1 - - True + + EditEvents - - NoControl + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16, 31 + + 73, 91 - - 26, 13 + + NoControl - - 47 + + 99, 17 - - Top + + MiddleRight - - LabelTopColor + + Use personal shabat - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - GroupBoxNavigation + + 70, 73 - - 2 + + Use system colors - - True + + 59, 21 - - NoControl + + 0 - - 16, 81 + + label2 - - 92, 13 + + Remind Shabat - - 58 + + ActionUseBlackAndWhiteColors - - Use system colors + + Day - - ActionUseSystemColors + + 272, 49 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Font name - + GroupBoxNavigation - - 3 - - - 19, 49 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25, 25 + + 0 - - 7 + + 18, 53 - - PanelTopColor + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxNavigation - - - 4 + + 62 - - 105, 49 + + BroupBoxShabat - - 25, 25 + + PanelTextColor2 - - 8 + + 203, 51 - - PanelBottomColor + + + AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADMAAAAzAAAAMwAAADMAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhrcP9sbW7/bW1u/2xtbv9oa3D/AAAAAAAA + AAAAAAAAAAAAAAAAAAAHBQE1AAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAM2dpbv8AAAAzAAAAMwAA + ADMAAAAzAAAAMwAAADMAAAAzypY2/9+sSP/bpkH/26ZA/9umP//fqD//5aw+/+6yP/9bYGj/7rI//+Ws + Pv/fqD//26Y//9umQf/cqEb/1KE7/6lxF///////////////////////////////////////U1VZ//// + /////////////////////////////9unRf+qcRT//////////////////////////////////////1BR + Uv/////////////////////////////////apUD/qnEU///////QlTD/0Zg4/9KZOv/RmDj/0ZUv//// + //9QUVL/////////////////////////////////2qQ//6pyFf//////0po6/9SfRf/VoUj/1Z9F/9Sb + Ov//////UlNU///////5+fj/9vb1//b29f/29/f//////9qlP/+qchX//////9KXM//Umzz/1Z0+/9Sc + PP/VmTT/+Pv//1RVVv/29fT/7ezr/+vq6f/q6un/6enq///////apT//q3MW///////f4+3/4OXw/+Hm + 8f/h5fD/4ubu/+nq7v9VV1n/6ejq/+Dg4v/e3uD/3t7g/93d4P//////26dB/612G//27+X/8+rc//Tq + 2//06tv/9Orb//Xs2//98d7/WFxj//3x3v/169r/8+nZ//Pp2f/y6dn/8uvh/96rSf+weyT/rXYc/6x0 + GP+sdBj/rHQY/610F/+vdRb/tHgV/11lcv+0eBX/r3UW/610F/+sdBj/rHQY/6pzGv/KlTb/AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADNja3f/AAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGZsdv9pbXT/am1y/2ltdP9mbHb/AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//8AAPwfAAD8HwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwf + AAD8HwAA//8AAA== + - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxNavigation + + LabelTopColor - - 5 + + 8 - - 62, 49 + + GroupBoxReminder - + 25, 25 - - 8 + + GroupBoxTrayIcon - - PanelMiddleColor + + 15, 395 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBoxNavigation + + EditFontName - - 6 + + GroupBoxGPS - - True + + Bottom, Left - - NoControl + + 47 - - 102, 31 + + LabelShabatDay - - 40, 13 + + 28, 13 - - 49 + + NoControl - - Bottom + + PanelButtons - - labelBottomColor + + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Shabat - - GroupBoxNavigation + + GroupBoxText - - 7 + + EditShowMonthDayToolTip - - True + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 59, 31 + + EditRemindShabat - - 38, 13 + + 8 - - 49 + + LabelTimerInterval - - Center + + 25, 25 - - LabelMiddleColor + + Navigation window - + + 5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxNavigation + + GroupBoxGPS - - 8 + + 59 - - RadioButtonNavigationForm + + 52, 13 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 19, 39 - - GroupBoxTrayIcon + + 59 - - 0 + + 57, 13 - - RadioButtonMainForm + + Text - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - GroupBoxTrayIcon + + System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + 1 - - 399, 15 + + NoControl - - 188, 100 + + 127, 39 - - 63 + + BroupBoxShabat - - Tray Icon click open + + 7 - - GroupBoxTrayIcon + + 16, 21 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Use pastel colors - - $this + + GroupBoxText - - 3 + + 165, 100 - - True + + Center - - NoControl + + 102, 21 - - 18, 53 + + 73, 39 - - 102, 17 + + GPSLatitudeTextBox - - 0 + + NoControl - - Navigation Form + + $this - - RadioButtonNavigationForm + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxTrayIcon + + GroupBoxCalendar - - 0 + + GroupBoxTrayIcon True - + NoControl - - 18, 30 + + 399, 15 - - 123, 17 + + PanelBottomColor - - 0 + + Latitude + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Application's window - - RadioButtonMainForm + + PanelMiddleColor - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16, 110 - - GroupBoxTrayIcon + + 16, 71 - - 1 + + 105, 39 - - Bottom, Left + + $this - - True + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 218, 395 - - 15, 395 + + PanelButtons - - 167, 17 + + 62 - - 0 + + 49 - - Hide the application at startup + + GPSLongitudeTextBox - - EditStartupHide + + 7 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxGPS - - $this + + 62, 39 - - 1 + + 4 - - EditRemindShabat + + True + + + GroupBoxText + + + 5 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBoxCalendar + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - GroupBoxReminder + + 19, 91 - - 0 + + 8 - - EditEvents + + GroupBoxNavigation - - System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + GroupBoxReminder - - 1 + + EditStartupHide - - EditTimerInterval + + 35, 13 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBoxReminder + + GroupBoxNavigation - - 2 + + 124, 21 - - LabelTimerInterval + + GroupBoxCalendar - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11, 59 - - GroupBoxReminder + + PanelMoonEventColor - - 3 + + 5 - - EditTimerEnabled + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Bottom, Left - - GroupBoxReminder + + 1 - - 4 + + 48 - - 399, 131 + + 75, 20 - - 188, 247 + + PreferencesForm - - 65 + + 16, 31 - - Reminder + + 6 - - GroupBoxReminder + + NoControl - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + 19, 42 - - 2 + + label1 - + True - - NoControl - - 19, 216 - - - 99, 17 - - - 4 + 19, 219 - - Remind Shabat + + 150, 139 - - EditRemindShabat + + 38, 13 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + $this - - GroupBoxReminder + + True - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19, 66 + + NoControl - + True - - 150, 139 - - - 3 + + Season - - EditEvents + + LabelBackColor2 - - System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxReminder + + ActionUsePersonalShabat - - 1 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19, 37 + + Top - - 66, 20 + + 4 - - 2 + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - EditTimerInterval + + 15, 15 - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBoxReminder + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + 16, 23 - - True + + 47 - - NoControl + + 7 - - 17, 19 + + GroupBoxText - - 61, 13 + + 6 - + 1 - - Days count + + 59 - - LabelTimerInterval + + 32, 13 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxReminder - - - 3 + + 104, 13 - - True + + NoControl - - MiddleRight + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + PanelFullMoonColor - - 104, 39 + + 8 - - 65, 17 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 0 - - Enabled - - - EditTimerEnabled + + 0 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 57 - - GroupBoxReminder + + GroupBoxCalendar - - 4 + + 0 - - Bottom, Left + + 49, 13 - - True + + Bottom, Right - - NoControl + + GroupBoxTrayIcon - - 218, 395 + + label3 - - 201, 17 + + GroupBoxGPS - - 66 + + Calendar - - Show sun rise and set in month view + + 19, 39 - - EditShowMonthDayToolTip + + 187, 100 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBoxCalendar - - $this + + BindingSettings - - 0 + + 25, 25 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 16, 97 + + GroupBoxCalendar - - 135, 13 + + 0 - - 59 + + GroupBoxNavigation - - Use black and white colors + + 609, 463 - - linkLabel1 + + GroupBoxText - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label4 - - GroupBoxCalendar + + 135, 13 - - 0 + + 25, 25 - - True + + NoControl - + + GroupBoxText + + NoControl - - 16, 113 + + GroupBoxReminder - - 88, 13 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 59 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Use pastel colors + + 269, 31 - - linkLabel2 + + GroupBoxNavigation - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label5 - - GroupBoxCalendar + + 7 - - 1 + + 3 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 3 - - 16, 31 + + Days count - - 61, 13 + + True - - 47 + + GroupBoxNavigation - - Current day + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label1 + + System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBoxCalendar - - - 2 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 16, 73 - - NoControl + + 25, 25 - - 16, 81 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 92, 13 + + EditTimerInterval - + 58 - - Use system colors + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - linkLabel3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16, 78 - - GroupBoxCalendar + + 4 - - 3 + + 218, 238 - - 19, 49 + + 314, 31 - - 25, 25 + + 65, 17 - - 7 + + 104, 41 - - PanelCurrentDayColor + + 368, 91 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - GroupBoxCalendar + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + 151, 21 - - 15, 238 + + True - - 187, 140 + + LabelFontName - - 62 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Calendar + + 15, 122 - - GroupBoxCalendar + + Font size - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + True - + + EditFontSize2 + + 5 - - 17, 17 - - - True - - - 6, 13 + + Torah - - 609, 463 + + 49 - - - AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADMAAAAzAAAAMwAAADMAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhrcP9sbW7/bW1u/2xtbv9oa3D/AAAAAAAA - AAAAAAAAAAAAAAAAAAAHBQE1AAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAM2dpbv8AAAAzAAAAMwAA - ADMAAAAzAAAAMwAAADMAAAAzypY2/9+sSP/bpkH/26ZA/9umP//fqD//5aw+/+6yP/9bYGj/7rI//+Ws - Pv/fqD//26Y//9umQf/cqEb/1KE7/6lxF///////////////////////////////////////U1VZ//// - /////////////////////////////9unRf+qcRT//////////////////////////////////////1BR - Uv/////////////////////////////////apUD/qnEU///////QlTD/0Zg4/9KZOv/RmDj/0ZUv//// - //9QUVL/////////////////////////////////2qQ//6pyFf//////0po6/9SfRf/VoUj/1Z9F/9Sb - Ov//////UlNU///////5+fj/9vb1//b29f/29/f//////9qlP/+qchX//////9KXM//Umzz/1Z0+/9Sc - PP/VmTT/+Pv//1RVVv/29fT/7ezr/+vq6f/q6un/6enq///////apT//q3MW///////f4+3/4OXw/+Hm - 8f/h5fD/4ubu/+nq7v9VV1n/6ejq/+Dg4v/e3uD/3t7g/93d4P//////26dB/612G//27+X/8+rc//Tq - 2//06tv/9Orb//Xs2//98d7/WFxj//3x3v/169r/8+nZ//Pp2f/y6dn/8uvh/96rSf+weyT/rXYc/6x0 - GP+sdBj/rHQY/610F/+vdRb/tHgV/11lcv+0eBX/r3UW/610F/+sdBj/rHQY/6pzGv/KlTb/AAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAADNja3f/AAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGZsdv9pbXT/am1y/2ltdP9mbHb/AAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA//8AAPwfAAD8HwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwf - AAD8HwAA//8AAA== - + + Close - - NoControl + + GroupBoxReminder - - 10, 10, 10, 10 + + 59 - - CenterParent + + 200, 31 - - Preferences + + 2 - - DialogColor + + $this - - System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - BindingSettings + + True - - System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 589, 28 - - PreferencesForm + + Bottom - - System.Windows.Forms.Form, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43, 13 + + 17, 17 + + + True + + + False + + + 154, 17 + + + False + \ No newline at end of file diff --git a/README.md b/README.md index 43d0d305e..ea052ac59 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ These are Pesa'h or Easter which is the liberation of illusions, Shavuot or Week #### __________ - Version 1.10 -- Add current day color parameter. +- Add colors parameters for calendar month view. #### 2019.08.25 - Version 1.9 From 6a655779c76f38f6a56abab2bdc3f219c73280f0 Mon Sep 17 00:00:00 2001 From: Olivier Rogier Date: Sun, 25 Aug 2019 11:04:05 +0200 Subject: [PATCH 3/4] Fix today color label translation --- .../Source/Forms/PreferencesForm.fr-FR.resx | 2 +- Project/Source/Forms/PreferencesForm.resx | 116 +++++++++--------- 2 files changed, 59 insertions(+), 59 deletions(-) diff --git a/Project/Source/Forms/PreferencesForm.fr-FR.resx b/Project/Source/Forms/PreferencesForm.fr-FR.resx index d74a52dad..51d713e43 100644 --- a/Project/Source/Forms/PreferencesForm.fr-FR.resx +++ b/Project/Source/Forms/PreferencesForm.fr-FR.resx @@ -191,7 +191,7 @@ 59, 13 - Jour actuel + Aujourd'hui 122, 13 diff --git a/Project/Source/Forms/PreferencesForm.resx b/Project/Source/Forms/PreferencesForm.resx index 7bdc4c26b..be37843b4 100644 --- a/Project/Source/Forms/PreferencesForm.resx +++ b/Project/Source/Forms/PreferencesForm.resx @@ -171,8 +171,8 @@ $this - - 15, 238 + + BroupBoxShabat 46 @@ -246,6 +246,9 @@ 188, 100 + + 32, 13 + Navigation Form @@ -327,6 +330,9 @@ 7 + + 7 + NoControl @@ -339,8 +345,8 @@ 16, 94 - - Tray Icon click open + + 269, 31 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -354,8 +360,8 @@ True - - 4 + + $this 18, 51 @@ -366,8 +372,8 @@ LabelTextColor2 - - 19, 39 + + GroupBoxNavigation 8 @@ -378,8 +384,11 @@ True - - GPSLatitudeLabel + + GroupBoxNavigation + + + GroupBoxText 2 @@ -438,8 +447,8 @@ 25, 25 - - 3 + + 19, 39 ActionRestoreCalendarColors @@ -546,9 +555,6 @@ NoControl - - 0 - 4 @@ -573,8 +579,8 @@ NoControl - - 10 + + NoControl 92, 13 @@ -642,6 +648,9 @@ 26, 13 + + 4 + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -669,9 +678,6 @@ NoControl - - GroupBoxNavigation - NoControl @@ -681,18 +687,18 @@ GroupBoxCalendar - - GroupBoxNavigation - 0 - - NoControl + + 7 GPS coordonates + + 18, 53 + 48 @@ -837,8 +843,8 @@ 0 - - 18, 53 + + GPSLatitudeLabel System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -849,8 +855,8 @@ 62 - - BroupBoxShabat + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 PanelTextColor2 @@ -900,8 +906,8 @@ GroupBoxTrayIcon - - 15, 395 + + 3 True @@ -921,12 +927,6 @@ LabelShabatDay - - 28, 13 - - - NoControl - PanelButtons @@ -957,6 +957,9 @@ LabelTimerInterval + + 10 + 25, 25 @@ -1017,11 +1020,11 @@ Use pastel colors - - GroupBoxText + + 15, 395 - - 165, 100 + + NoControl Center @@ -1107,9 +1110,6 @@ GPSLongitudeTextBox - - 7 - GroupBoxGPS @@ -1179,9 +1179,6 @@ PanelMoonEventColor - - 5 - NoControl @@ -1230,8 +1227,8 @@ 38, 13 - - $this + + 15, 238 True @@ -1299,8 +1296,8 @@ 59 - - 32, 13 + + 28, 13 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1419,8 +1416,8 @@ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 269, 31 + + 0 GroupBoxNavigation @@ -1428,8 +1425,11 @@ label5 - - 7 + + Tray Icon click open + + + 5 3 @@ -1479,9 +1479,6 @@ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 16, 78 @@ -1491,6 +1488,9 @@ 218, 238 + + 165, 100 + 314, 31 From 0b757c9f6fe4422541bfdd2fdf1cefdbd5b81d33 Mon Sep 17 00:00:00 2001 From: Olivier Rogier Date: Sun, 25 Aug 2019 11:06:06 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ea052ac59..093532d42 100644 --- a/README.md +++ b/README.md @@ -76,11 +76,11 @@ These are Pesa'h or Easter which is the liberation of illusions, Shavuot or Week ## Changelog -#### __________ - Version 1.10 +#### 2019.08.25 - Version 1.10 - Add colors parameters for calendar month view. -#### 2019.08.25 - Version 1.9 +#### 2019.08.24 - Version 1.9 - Improve check update.