OSDN Git Service

バージョン v3.13.1-dev 開発開始
[opentween/open-tween.git] / OpenTween / Setting / Panel / NotifyPanel.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2007-2011 kiri_feather (@kiri_feather) <kiri.feather@gmail.com>
3 //           (c) 2008-2011 Moz (@syo68k)
4 //           (c) 2008-2011 takeshik (@takeshik) <http://www.takeshik.org/>
5 //           (c) 2010-2011 anis774 (@anis774) <http://d.hatena.ne.jp/anis774/>
6 //           (c) 2010-2011 fantasticswallow (@f_swallow) <http://twitter.com/f_swallow>
7 //           (c) 2014      kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
8 // All rights reserved.
9 //
10 // This file is part of OpenTween.
11 //
12 // This program is free software; you can redistribute it and/or modify it
13 // under the terms of the GNU General Public License as published by the Free
14 // Software Foundation; either version 3 of the License, or (at your option)
15 // any later version.
16 //
17 // This program is distributed in the hope that it will be useful, but
18 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
24 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
25 // Boston, MA 02110-1301, USA.
26
27 #nullable enable
28
29 using System;
30 using System.Collections.Generic;
31 using System.Linq;
32 using System.Text;
33
34 namespace OpenTween.Setting.Panel
35 {
36     public partial class NotifyPanel : SettingPanelBase
37     {
38         public NotifyPanel()
39             => this.InitializeComponent();
40
41         public void LoadConfig(SettingCommon settingCommon)
42         {
43             this.CheckBoxNotificationPopup.Checked = settingCommon.NewAllPop;
44             this.ComboBoxNameInPopup.SelectedIndex = settingCommon.NameBalloon switch
45             {
46                 MyCommon.NameBalloonEnum.None => 0,
47                 MyCommon.NameBalloonEnum.UserID => 1,
48                 MyCommon.NameBalloonEnum.NickName => 2,
49                 _ => 2,
50             };
51             this.CheckBoxUseGrowlForNotification.Checked = settingCommon.IsUseNotifyGrowl;
52             this.CheckBoxUseGrowlForNotification.Enabled = GrowlHelper.IsDllExists;
53             this.CheckBoxEnableNotificationSound.Checked = settingCommon.PlaySound;
54             this.CheckBoxEnableBlinkOnReply.Checked = settingCommon.BlinkNewMentions;
55         }
56
57         public void SaveConfig(SettingCommon settingCommon)
58         {
59             settingCommon.NewAllPop = this.CheckBoxNotificationPopup.Checked;
60             settingCommon.NameBalloon = this.ComboBoxNameInPopup.SelectedIndex switch
61             {
62                 0 => MyCommon.NameBalloonEnum.None,
63                 1 => MyCommon.NameBalloonEnum.UserID,
64                 2 => MyCommon.NameBalloonEnum.NickName,
65                 _ => throw new IndexOutOfRangeException(),
66             };
67             settingCommon.IsUseNotifyGrowl = this.CheckBoxUseGrowlForNotification.Checked;
68             settingCommon.PlaySound = this.CheckBoxEnableNotificationSound.Checked;
69             settingCommon.BlinkNewMentions = this.CheckBoxEnableBlinkOnReply.Checked;
70         }
71     }
72 }