OSDN Git Service

AppendSettingDialog.RecomendStatusTextをTweenMainのprivateフィールドとして移動
[opentween/open-tween.git] / OpenTween / AppendSettingDialog.cs
index 08cfc53..0b37067 100644 (file)
@@ -35,58 +35,95 @@ using System.Windows.Forms;
 using System.Threading;
 using System.IO;
 using System.Resources;
+using OpenTween.Api;
+using OpenTween.Connection;
 using OpenTween.Thumbnail;
 using System.Threading.Tasks;
+using OpenTween.Setting.Panel;
 
 namespace OpenTween
 {
     public partial class AppendSettingDialog : OTBaseForm
     {
-        private static AppendSettingDialog _instance = new AppendSettingDialog();
-        private Twitter tw;
-        private HttpConnection.ProxyType _MyProxyType;
+        internal Twitter tw;
 
         private bool _ValidationError = false;
-        private MyCommon.EVENTTYPE _MyEventNotifyFlag;
-        private MyCommon.EVENTTYPE _isMyEventNotifyFlag;
-        private string _MyTranslateLanguage;
 
-        public bool HideDuplicatedRetweets;
-
-        public bool IsPreviewFoursquare;
-        public MapProvider MapThumbnailProvider;
-        public int MapThumbnailHeight;
-        public int MapThumbnailWidth;
-        public int MapThumbnailZoom;
-        public bool IsListStatusesIncludeRts;
-        public List<UserAccount> UserAccounts;
         private long? InitialUserId;
-        public bool TabMouseLock;
-        public bool IsRemoveSameEvent;
-        public bool IsNotifyUseGrowl;
 
-        public TwitterDataModel.Configuration TwitterConfiguration = new TwitterDataModel.Configuration();
+        public TwitterConfiguration TwitterConfiguration = TwitterConfiguration.DefaultConfiguration();
 
         private string _pin;
 
-        public class IntervalChangedEventArgs : EventArgs
+        public event EventHandler<IntervalChangedEventArgs> IntervalChanged;
+
+        public void LoadConfig(SettingCommon settingCommon, SettingLocal settingLocal)
         {
-            public bool UserStream;
-            public bool Timeline;
-            public bool Reply;
-            public bool DirectMessage;
-            public bool PublicSearch;
-            public bool Lists;
-            public bool UserTimeline;
+            this.BasedPanel.LoadConfig(settingCommon);
+            this.GetPeriodPanel.LoadConfig(settingCommon);
+            this.StartupPanel.LoadConfig(settingCommon);
+            this.TweetPrvPanel.LoadConfig(settingCommon);
+            this.TweetActPanel.LoadConfig(settingCommon, settingLocal);
+            this.ActionPanel.LoadConfig(settingCommon, settingLocal);
+            this.FontPanel.LoadConfig(settingLocal);
+            this.FontPanel2.LoadConfig(settingLocal);
+            this.PreviewPanel.LoadConfig(settingCommon);
+            this.GetCountPanel.LoadConfig(settingCommon);
+            this.ShortUrlPanel.LoadConfig(settingCommon);
+            this.ProxyPanel.LoadConfig(settingLocal);
+            this.CooperatePanel.LoadConfig(settingCommon);
+            this.ConnectionPanel.LoadConfig(settingCommon);
+            this.NotifyPanel.LoadConfig(settingCommon);
+
+            var activeUser = settingCommon.UserAccounts.FirstOrDefault(x => x.UserId == this.tw.UserId);
+            if (activeUser != null)
+            {
+                this.BasedPanel.AuthUserCombo.SelectedItem = activeUser;
+                this.InitialUserId = activeUser.UserId;
+            }
         }
 
-        public delegate void IntervalChangedEventHandler(object sender, IntervalChangedEventArgs e);
-        public event IntervalChangedEventHandler IntervalChanged;
+        public void SaveConfig(SettingCommon settingCommon, SettingLocal settingLocal)
+        {
+            this.BasedPanel.SaveConfig(settingCommon);
+            this.GetPeriodPanel.SaveConfig(settingCommon);
+            this.StartupPanel.SaveConfig(settingCommon);
+            this.TweetPrvPanel.SaveConfig(settingCommon);
+            this.TweetActPanel.SaveConfig(settingCommon, settingLocal);
+            this.ActionPanel.SaveConfig(settingCommon, settingLocal);
+            this.FontPanel.SaveConfig(settingLocal);
+            this.FontPanel2.SaveConfig(settingLocal);
+            this.PreviewPanel.SaveConfig(settingCommon);
+            this.GetCountPanel.SaveConfig(settingCommon);
+            this.ShortUrlPanel.SaveConfig(settingCommon);
+            this.ProxyPanel.SaveConfig(settingLocal);
+            this.CooperatePanel.SaveConfig(settingCommon);
+            this.ConnectionPanel.SaveConfig(settingCommon);
+            this.NotifyPanel.SaveConfig(settingCommon);
+
+            var userAccountIdx = this.BasedPanel.AuthUserCombo.SelectedIndex;
+            if (userAccountIdx != -1)
+            {
+                var u = settingCommon.UserAccounts[userAccountIdx];
+                this.tw.Initialize(u.Token, u.TokenSecret, u.Username, u.UserId);
+
+                if (u.UserId == 0)
+                {
+                    this.tw.VerifyCredentials();
+                    u.UserId = this.tw.UserId;
+                }
+            }
+            else
+            {
+                this.tw.ClearAuthInfo();
+                this.tw.Initialize("", "", "", 0);
+            }
+        }
 
         private void TreeViewSetting_BeforeSelect(object sender, TreeViewCancelEventArgs e)
         {
             if (this.TreeViewSetting.SelectedNode == null) return;
-            var pnl = (Control)this.TreeViewSetting.SelectedNode.Tag;
+            var pnl = (SettingPanelBase)this.TreeViewSetting.SelectedNode.Tag;
             if (pnl == null) return;
             pnl.Enabled = false;
             pnl.Visible = false;
@@ -95,7 +132,7 @@ namespace OpenTween
         private void TreeViewSetting_AfterSelect(object sender, TreeViewEventArgs e)
         {
             if (e.Node == null) return;
-            var pnl = (Control)e.Node.Tag;
+            var pnl = (SettingPanelBase)e.Node.Tag;
             if (pnl == null) return;
             pnl.Enabled = true;
             pnl.Visible = true;
@@ -150,33 +187,6 @@ namespace OpenTween
                 _ValidationError = false;
             }
 
-            this.UserAccounts.Clear();
-            foreach (object u in this.BasedPanel.AuthUserCombo.Items)
-            {
-                this.UserAccounts.Add((UserAccount)u);
-            }
-            if (this.BasedPanel.AuthUserCombo.SelectedIndex > -1)
-            {
-                foreach (UserAccount u in this.UserAccounts)
-                {
-                    if (u.Username.ToLower() == ((UserAccount)this.BasedPanel.AuthUserCombo.SelectedItem).Username.ToLower())
-                    {
-                        tw.Initialize(u.Token, u.TokenSecret, u.Username, u.UserId);
-                        if (u.UserId == 0)
-                        {
-                            tw.VerifyCredentials();
-                            u.UserId = tw.UserId;
-                        }
-                        break;
-                    }
-                }
-            }
-            else
-            {
-                tw.ClearAuthInfo();
-                tw.Initialize("", "", "", 0);
-            }
-
 #if UA
             //フォロー
             if (this.FollowCheckBox.Checked)
@@ -204,339 +214,12 @@ namespace OpenTween
                 string ret = tw.PostFollowCommand(ApplicationSettings.FeedbackTwitterName);
             }
 #endif
-            IntervalChangedEventArgs arg = new IntervalChangedEventArgs();
-            bool isIntervalChanged = false;
-
-            try
-            {
-                UserstreamStartup = this.GetPeriodPanel.StartupUserstreamCheck.Checked;
-
-                if (UserstreamPeriodInt != int.Parse(this.GetPeriodPanel.UserstreamPeriod.Text))
-                {
-                    UserstreamPeriodInt = int.Parse(this.GetPeriodPanel.UserstreamPeriod.Text);
-                    arg.UserStream = true;
-                    isIntervalChanged = true;
-                }
-                if (TimelinePeriodInt != int.Parse(this.GetPeriodPanel.TimelinePeriod.Text))
-                {
-                    TimelinePeriodInt = int.Parse(this.GetPeriodPanel.TimelinePeriod.Text);
-                    arg.Timeline = true;
-                    isIntervalChanged = true;
-                }
-                if (DMPeriodInt != int.Parse(this.GetPeriodPanel.DMPeriod.Text))
-                {
-                    DMPeriodInt = int.Parse(this.GetPeriodPanel.DMPeriod.Text);
-                    arg.DirectMessage = true;
-                    isIntervalChanged = true;
-                }
-                if (PubSearchPeriodInt != int.Parse(this.GetPeriodPanel.PubSearchPeriod.Text))
-                {
-                    PubSearchPeriodInt = int.Parse(this.GetPeriodPanel.PubSearchPeriod.Text);
-                    arg.PublicSearch = true;
-                    isIntervalChanged = true;
-                }
-
-                if (ListsPeriodInt != int.Parse(this.GetPeriodPanel.ListsPeriod.Text))
-                {
-                    ListsPeriodInt = int.Parse(this.GetPeriodPanel.ListsPeriod.Text);
-                    arg.Lists = true;
-                    isIntervalChanged = true;
-                }
-                if (ReplyPeriodInt != int.Parse(this.GetPeriodPanel.ReplyPeriod.Text))
-                {
-                    ReplyPeriodInt = int.Parse(this.GetPeriodPanel.ReplyPeriod.Text);
-                    arg.Reply = true;
-                    isIntervalChanged = true;
-                }
-                if (UserTimelinePeriodInt != int.Parse(this.GetPeriodPanel.UserTimelinePeriod.Text))
-                {
-                    UserTimelinePeriodInt = int.Parse(this.GetPeriodPanel.UserTimelinePeriod.Text);
-                    arg.UserTimeline = true;
-                    isIntervalChanged = true;
-                }
-
-                if (isIntervalChanged && IntervalChanged != null)
-                {
-                    IntervalChanged(this, arg);
-                }
-
-                Readed = this.StartupPanel.StartupReaded.Checked;
-                switch (this.TweetPrvPanel.IconSize.SelectedIndex)
-                {
-                    case 0:
-                        IconSz = MyCommon.IconSizes.IconNone;
-                        break;
-                    case 1:
-                        IconSz = MyCommon.IconSizes.Icon16;
-                        break;
-                    case 2:
-                        IconSz = MyCommon.IconSizes.Icon24;
-                        break;
-                    case 3:
-                        IconSz = MyCommon.IconSizes.Icon48;
-                        break;
-                    case 4:
-                        IconSz = MyCommon.IconSizes.Icon48_2;
-                        break;
-                }
-                Status = this.TweetActPanel.StatusText.Text;
-                PlaySound = this.ActionPanel.PlaySnd.Checked;
-                UnreadManage = this.ActionPanel.UReadMng.Checked;
-                OneWayLove = this.TweetPrvPanel.OneWayLv.Checked;
-
-                FontUnread = this.FontPanel.lblUnread.Font;     //未使用
-                ColorUnread = this.FontPanel.lblUnread.ForeColor;
-                FontReaded = this.FontPanel.lblListFont.Font;     //リストフォントとして使用
-                ColorReaded = this.FontPanel.lblListFont.ForeColor;
-                ColorFav = this.FontPanel.lblFav.ForeColor;
-                ColorOWL = this.FontPanel.lblOWL.ForeColor;
-                ColorRetweet = this.FontPanel.lblRetweet.ForeColor;
-                FontDetail = this.FontPanel.lblDetail.Font;
-                ColorSelf = lblSelf.BackColor;
-                ColorAtSelf = lblAtSelf.BackColor;
-                ColorTarget = lblTarget.BackColor;
-                ColorAtTarget = lblAtTarget.BackColor;
-                ColorAtFromTarget = lblAtFromTarget.BackColor;
-                ColorAtTo = lblAtTo.BackColor;
-                ColorInputBackcolor = lblInputBackcolor.BackColor;
-                ColorInputFont = lblInputFont.ForeColor;
-                ColorListBackcolor = lblListBackcolor.BackColor;
-                ColorDetailBackcolor = this.FontPanel.lblDetailBackcolor.BackColor;
-                ColorDetail = this.FontPanel.lblDetail.ForeColor;
-                ColorDetailLink = this.FontPanel.lblDetailLink.ForeColor;
-                FontInputFont = lblInputFont.Font;
-                switch (this.PreviewPanel.cmbNameBalloon.SelectedIndex)
-                {
-                    case 0:
-                        NameBalloon = MyCommon.NameBalloonEnum.None;
-                        break;
-                    case 1:
-                        NameBalloon = MyCommon.NameBalloonEnum.UserID;
-                        break;
-                    case 2:
-                        NameBalloon = MyCommon.NameBalloonEnum.NickName;
-                        break;
-                }
-
-                switch (this.TweetActPanel.ComboBoxPostKeySelect.SelectedIndex)
-                {
-                    case 2:
-                        PostShiftEnter = true;
-                        PostCtrlEnter = false;
-                        break;
-                    case 1:
-                        PostCtrlEnter = true;
-                        PostShiftEnter = false;
-                        break;
-                    case 0:
-                        PostCtrlEnter = false;
-                        PostShiftEnter = false;
-                        break;
-                }
-                CountApi = int.Parse(this.GetCountPanel.TextCountApi.Text);
-                CountApiReply = int.Parse(this.GetCountPanel.TextCountApiReply.Text);
-                BrowserPath = this.ActionPanel.BrowserPathText.Text.Trim();
-                PostAndGet = this.GetPeriodPanel.CheckPostAndGet.Checked;
-                UseRecommendStatus = this.TweetActPanel.CheckUseRecommendStatus.Checked;
-                DispUsername = this.PreviewPanel.CheckDispUsername.Checked;
-                CloseToExit = this.ActionPanel.CheckCloseToExit.Checked;
-                MinimizeToTray = this.ActionPanel.CheckMinimizeToTray.Checked;
-                switch (this.PreviewPanel.ComboDispTitle.SelectedIndex)
-                {
-                    case 0:  //None
-                        DispLatestPost = MyCommon.DispTitleEnum.None;
-                        break;
-                    case 1:  //Ver
-                        DispLatestPost = MyCommon.DispTitleEnum.Ver;
-                        break;
-                    case 2:  //Post
-                        DispLatestPost = MyCommon.DispTitleEnum.Post;
-                        break;
-                    case 3:  //RepCount
-                        DispLatestPost = MyCommon.DispTitleEnum.UnreadRepCount;
-                        break;
-                    case 4:  //AllCount
-                        DispLatestPost = MyCommon.DispTitleEnum.UnreadAllCount;
-                        break;
-                    case 5:  //Rep+All
-                        DispLatestPost = MyCommon.DispTitleEnum.UnreadAllRepCount;
-                        break;
-                    case 6:  //Unread/All
-                        DispLatestPost = MyCommon.DispTitleEnum.UnreadCountAllCount;
-                        break;
-                    case 7: //Count of Status/Follow/Follower
-                        DispLatestPost = MyCommon.DispTitleEnum.OwnStatus;
-                        break;
-                }
-                SortOrderLock = this.TweetPrvPanel.CheckSortOrderLock.Checked;
-                ViewTabBottom = this.TweetPrvPanel.CheckViewTabBottom.Checked;
-                TinyUrlResolve = this.ShortUrlPanel.CheckTinyURL.Checked;
-                ShortUrl.IsResolve = TinyUrlResolve;
-                if (this.ProxyPanel.RadioProxyNone.Checked)
-                {
-                    _MyProxyType = HttpConnection.ProxyType.None;
-                }
-                else if (this.ProxyPanel.RadioProxyIE.Checked)
-                {
-                    _MyProxyType = HttpConnection.ProxyType.IE;
-                }
-                else
-                {
-                    _MyProxyType = HttpConnection.ProxyType.Specified;
-                }
-                ProxyAddress = this.ProxyPanel.TextProxyAddress.Text.Trim();
-                ProxyPort = int.Parse(this.ProxyPanel.TextProxyPort.Text.Trim());
-                ProxyUser = this.ProxyPanel.TextProxyUser.Text.Trim();
-                ProxyPassword = this.ProxyPanel.TextProxyPassword.Text.Trim();
-                StartupVersion = this.StartupPanel.CheckStartupVersion.Checked;
-                StartupFollowers = this.StartupPanel.CheckStartupFollowers.Checked;
-                RestrictFavCheck = this.ActionPanel.CheckFavRestrict.Checked;
-                AlwaysTop = this.PreviewPanel.CheckAlwaysTop.Checked;
-                UrlConvertAuto = this.ShortUrlPanel.CheckAutoConvertUrl.Checked;
-                ShortenTco = this.ShortUrlPanel.ShortenTcoCheck.Checked;
-                OutputzEnabled = this.CooperatePanel.CheckOutputz.Checked;
-                OutputzKey = this.CooperatePanel.TextBoxOutputzKey.Text.Trim();
-
-                switch (this.CooperatePanel.ComboBoxOutputzUrlmode.SelectedIndex)
-                {
-                    case 0:
-                        OutputzUrlmode = MyCommon.OutputzUrlmode.twittercom;
-                        break;
-                    case 1:
-                        OutputzUrlmode = MyCommon.OutputzUrlmode.twittercomWithUsername;
-                        break;
-                }
-
-                Nicoms = this.CooperatePanel.CheckNicoms.Checked;
-                UseUnreadStyle = this.TweetPrvPanel.chkUnreadStyle.Checked;
-                DateTimeFormat = this.TweetPrvPanel.CmbDateTimeFormat.Text;
-                DefaultTimeOut = int.Parse(this.ConnectionPanel.ConnectionTimeOut.Text);
-                RetweetNoConfirm = this.TweetActPanel.CheckRetweetNoConfirm.Checked;
-                LimitBalloon = this.PreviewPanel.CheckBalloonLimit.Checked;
-                EventNotifyEnabled = this.NotifyPanel.CheckEventNotify.Checked;
-                GetEventNotifyFlag(ref _MyEventNotifyFlag, ref _isMyEventNotifyFlag);
-                ForceEventNotify = this.NotifyPanel.CheckForceEventNotify.Checked;
-                FavEventUnread = this.NotifyPanel.CheckFavEventUnread.Checked;
-                TranslateLanguage = (new Bing()).GetLanguageEnumFromIndex(this.CooperatePanel.ComboBoxTranslateLanguage.SelectedIndex);
-                EventSoundFile = (string)this.NotifyPanel.ComboBoxEventNotifySound.SelectedItem;
-                AutoShortUrlFirst = (MyCommon.UrlConverter)this.ShortUrlPanel.ComboBoxAutoShortUrlFirst.SelectedIndex;
-                TabIconDisp = this.PreviewPanel.chkTabIconDisp.Checked;
-                ReadOwnPost = this.ActionPanel.chkReadOwnPost.Checked;
-                GetFav = this.StartupPanel.chkGetFav.Checked;
-                IsMonospace = this.PreviewPanel.CheckMonospace.Checked;
-                ReadOldPosts = this.ActionPanel.CheckReadOldPosts.Checked;
-                UseSsl = this.ConnectionPanel.CheckUseSsl.Checked;
-                BitlyUser = this.ShortUrlPanel.TextBitlyId.Text;
-                BitlyPwd = this.ShortUrlPanel.TextBitlyPw.Text;
-                ShowGrid = this.TweetPrvPanel.CheckShowGrid.Checked;
-                UseAtIdSupplement = this.TweetActPanel.CheckAtIdSupple.Checked;
-                UseHashSupplement = this.TweetActPanel.CheckHashSupple.Checked;
-                PreviewEnable = this.PreviewPanel.CheckPreviewEnable.Checked;
-                TwitterApiUrl = this.ConnectionPanel.TwitterAPIText.Text.Trim();
-                switch (this.PreviewPanel.ReplyIconStateCombo.SelectedIndex)
-                {
-                    case 0:
-                        ReplyIconState = MyCommon.REPLY_ICONSTATE.None;
-                        break;
-                    case 1:
-                        ReplyIconState = MyCommon.REPLY_ICONSTATE.StaticIcon;
-                        break;
-                    case 2:
-                        ReplyIconState = MyCommon.REPLY_ICONSTATE.BlinkIcon;
-                        break;
-                }
-                switch (this.PreviewPanel.LanguageCombo.SelectedIndex)
-                {
-                    case 0:
-                        Language = "OS";
-                        break;
-                    case 1:
-                        Language = "ja";
-                        break;
-                    case 2:
-                        Language = "en";
-                        break;
-                    case 3:
-                        Language = "zh-CN";
-                        break;
-                    default:
-                        Language = "en";
-                        break;
-                }
-                HotkeyEnabled = this.ActionPanel.HotkeyCheck.Checked;
-                HotkeyMod = Keys.None;
-                if (this.ActionPanel.HotkeyAlt.Checked) HotkeyMod = HotkeyMod | Keys.Alt;
-                if (this.ActionPanel.HotkeyShift.Checked) HotkeyMod = HotkeyMod | Keys.Shift;
-                if (this.ActionPanel.HotkeyCtrl.Checked) HotkeyMod = HotkeyMod | Keys.Control;
-                if (this.ActionPanel.HotkeyWin.Checked) HotkeyMod = HotkeyMod | Keys.LWin;
-                int.TryParse(this.ActionPanel.HotkeyCode.Text, out HotkeyValue);
-                HotkeyKey = (Keys)this.ActionPanel.HotkeyText.Tag;
-                BlinkNewMentions = this.PreviewPanel.ChkNewMentionsBlink.Checked;
-                UseAdditionalCount = this.GetCountPanel.UseChangeGetCount.Checked;
-                MoreCountApi = int.Parse(this.GetCountPanel.GetMoreTextCountApi.Text);
-                FirstCountApi = int.Parse(this.GetCountPanel.FirstTextCountApi.Text);
-                SearchCountApi = int.Parse(this.GetCountPanel.SearchTextCountApi.Text);
-                FavoritesCountApi = int.Parse(this.GetCountPanel.FavoritesTextCountApi.Text);
-                UserTimelineCountApi = int.Parse(this.GetCountPanel.UserTimelineTextCountApi.Text);
-                ListCountApi = int.Parse(this.GetCountPanel.ListTextCountApi.Text);
-                OpenUserTimeline = this.ActionPanel.CheckOpenUserTimeline.Checked;
-                ListDoubleClickAction = this.ActionPanel.ListDoubleClickActionComboBox.SelectedIndex;
-                UserAppointUrl = this.CooperatePanel.UserAppointUrlText.Text;
-                this.HideDuplicatedRetweets = this.TweetPrvPanel.HideDuplicatedRetweetsCheck.Checked;
-                this.IsPreviewFoursquare = this.CooperatePanel.IsPreviewFoursquareCheckBox.Checked;
-                this.MapThumbnailProvider = (MapProvider)this.CooperatePanel.MapThumbnailProviderComboBox.SelectedIndex;
-                this.MapThumbnailHeight = int.Parse(this.CooperatePanel.MapThumbnailHeightTextBox.Text);
-                this.MapThumbnailWidth = int.Parse(this.CooperatePanel.MapThumbnailWidthTextBox.Text);
-                this.MapThumbnailZoom = int.Parse(this.CooperatePanel.MapThumbnailZoomTextBox.Text);
-                this.IsListStatusesIncludeRts = this.TweetPrvPanel.IsListsIncludeRtsCheckBox.Checked;
-                this.TabMouseLock = this.ActionPanel.TabMouseLockCheck.Checked;
-                this.IsRemoveSameEvent = this.NotifyPanel.IsRemoveSameFavEventCheckBox.Checked;
-                this.IsNotifyUseGrowl = this.PreviewPanel.IsNotifyUseGrowlCheckBox.Checked;
-            }
-            catch(Exception)
-            {
-                MessageBox.Show(Properties.Resources.Save_ClickText3);
-                this.DialogResult = DialogResult.Cancel;
-                return;
-            }
         }
 
         private void Setting_FormClosing(object sender, FormClosingEventArgs e)
         {
             if (MyCommon._endingFlag) return;
 
-            if (this.DialogResult == DialogResult.Cancel)
-            {
-                //キャンセル時は画面表示時のアカウントに戻す
-                //キャンセル時でも認証済みアカウント情報は保存する
-                this.UserAccounts.Clear();
-                foreach (object u in this.BasedPanel.AuthUserCombo.Items)
-                {
-                    this.UserAccounts.Add((UserAccount)u);
-                }
-                //アクティブユーザーを起動時のアカウントに戻す(起動時アカウントなければ何もしない)
-                bool userSet = false;
-                if (this.InitialUserId != null)
-                {
-                    foreach (UserAccount u in this.UserAccounts)
-                    {
-                        if (u.UserId == this.InitialUserId)
-                        {
-                            tw.Initialize(u.Token, u.TokenSecret, u.Username, u.UserId);
-                            userSet = true;
-                            break;
-                        }
-                    }
-                }
-                //認証済みアカウントが削除されていた場合、もしくは起動時アカウントがなかった場合は、
-                //アクティブユーザーなしとして初期化
-                if (!userSet)
-                {
-                    tw.ClearAuthInfo();
-                    tw.Initialize("", "", "", 0);
-                }
-            }
-
             if (tw != null && string.IsNullOrEmpty(tw.Username) && e.CloseReason == CloseReason.None)
             {
                 if (MessageBox.Show(Properties.Resources.Setting_FormClosing1, "Confirm", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.Cancel)
@@ -550,7 +233,7 @@ namespace OpenTween
             }
             if (e.Cancel == false && TreeViewSetting.SelectedNode != null)
             {
-                var curPanel = (Control)TreeViewSetting.SelectedNode.Tag;
+                var curPanel = (SettingPanelBase)TreeViewSetting.SelectedNode.Tag;
                 curPanel.Visible = false;
                 curPanel.Enabled = false;
             }
@@ -558,345 +241,6 @@ namespace OpenTween
 
         private void Setting_Load(object sender, EventArgs e)
         {
-            tw = ((TweenMain)this.Owner).TwitterInstance;
-            string uname = tw.Username;
-            string pw = tw.Password;
-            string tk = tw.AccessToken;
-            string tks = tw.AccessTokenSecret;
-            //this.AuthStateLabel.Enabled = true;
-            //this.AuthUserLabel.Enabled = true;
-            this.BasedPanel.AuthClearButton.Enabled = true;
-
-            //if (tw.Username == "")
-            //{
-            //    //this.AuthStateLabel.Text = Properties.Resources.AuthorizeButton_Click4
-            //    //this.AuthUserLabel.Text = ""
-            //    //this.Save.Enabled = false
-            //}
-            //else
-            //{
-            //    //this.AuthStateLabel.Text = Properties.Resources.AuthorizeButton_Click3;
-            //    //if (TwitterApiInfo.AccessLevel == ApiAccessLevel.ReadWrite)
-            //    //{
-            //    //    this.AuthStateLabel.Text += "(xAuth)";
-            //    //}
-            //    //else if (TwitterApiInfo.AccessLevel == ApiAccessLevel.ReadWriteAndDirectMessage)
-            //    //{
-            //    //    this.AuthStateLabel.Text += "(OAuth)";
-            //    //}
-            //    //this.AuthUserLabel.Text = tw.Username;
-            //}
-
-            this.BasedPanel.AuthUserCombo.Items.Clear();
-            if (this.UserAccounts.Count > 0)
-            {
-                this.BasedPanel.AuthUserCombo.Items.AddRange(this.UserAccounts.ToArray());
-                foreach (UserAccount u in this.UserAccounts)
-                {
-                    if (u.UserId == tw.UserId)
-                    {
-                        this.BasedPanel.AuthUserCombo.SelectedItem = u;
-                        this.InitialUserId = u.UserId;
-                        break;
-                    }
-                }
-            }
-
-            this.GetPeriodPanel.StartupUserstreamCheck.Checked = UserstreamStartup;
-            this.GetPeriodPanel.UserstreamPeriod.Text = UserstreamPeriodInt.ToString();
-            this.GetPeriodPanel.TimelinePeriod.Text = TimelinePeriodInt.ToString();
-            this.GetPeriodPanel.ReplyPeriod.Text = ReplyPeriodInt.ToString();
-            this.GetPeriodPanel.DMPeriod.Text = DMPeriodInt.ToString();
-            this.GetPeriodPanel.PubSearchPeriod.Text = PubSearchPeriodInt.ToString();
-            this.GetPeriodPanel.ListsPeriod.Text = ListsPeriodInt.ToString();
-            this.GetPeriodPanel.UserTimelinePeriod.Text = UserTimelinePeriodInt.ToString();
-
-            this.StartupPanel.StartupReaded.Checked = Readed;
-            switch (IconSz)
-            {
-                case MyCommon.IconSizes.IconNone:
-                    this.TweetPrvPanel.IconSize.SelectedIndex = 0;
-                    break;
-                case MyCommon.IconSizes.Icon16:
-                    this.TweetPrvPanel.IconSize.SelectedIndex = 1;
-                    break;
-                case MyCommon.IconSizes.Icon24:
-                    this.TweetPrvPanel.IconSize.SelectedIndex = 2;
-                    break;
-                case MyCommon.IconSizes.Icon48:
-                    this.TweetPrvPanel.IconSize.SelectedIndex = 3;
-                    break;
-                case MyCommon.IconSizes.Icon48_2:
-                    this.TweetPrvPanel.IconSize.SelectedIndex = 4;
-                    break;
-            }
-            this.TweetActPanel.StatusText.Text = Status;
-            this.ActionPanel.UReadMng.Checked = UnreadManage;
-            if (UnreadManage == false)
-            {
-                this.StartupPanel.StartupReaded.Enabled = false;
-            }
-            else
-            {
-                this.StartupPanel.StartupReaded.Enabled = true;
-            }
-            this.ActionPanel.PlaySnd.Checked = PlaySound;
-            this.TweetPrvPanel.OneWayLv.Checked = OneWayLove;
-
-            this.FontPanel.lblListFont.Font = FontReaded;
-            this.FontPanel.lblUnread.Font = FontUnread;
-            this.FontPanel.lblUnread.ForeColor = ColorUnread;
-            this.FontPanel.lblListFont.ForeColor = ColorReaded;
-            this.FontPanel.lblFav.ForeColor = ColorFav;
-            this.FontPanel.lblOWL.ForeColor = ColorOWL;
-            this.FontPanel.lblRetweet.ForeColor = ColorRetweet;
-            this.FontPanel.lblDetail.Font = FontDetail;
-            lblSelf.BackColor = ColorSelf;
-            lblAtSelf.BackColor = ColorAtSelf;
-            lblTarget.BackColor = ColorTarget;
-            lblAtTarget.BackColor = ColorAtTarget;
-            lblAtFromTarget.BackColor = ColorAtFromTarget;
-            lblAtTo.BackColor = ColorAtTo;
-            lblInputBackcolor.BackColor = ColorInputBackcolor;
-            lblInputFont.ForeColor = ColorInputFont;
-            lblInputFont.Font = FontInputFont;
-            lblListBackcolor.BackColor = ColorListBackcolor;
-            this.FontPanel.lblDetailBackcolor.BackColor = ColorDetailBackcolor;
-            this.FontPanel.lblDetail.ForeColor = ColorDetail;
-            this.FontPanel.lblDetailLink.ForeColor = ColorDetailLink;
-
-            switch (NameBalloon)
-            {
-                case MyCommon.NameBalloonEnum.None:
-                    this.PreviewPanel.cmbNameBalloon.SelectedIndex = 0;
-                    break;
-                case MyCommon.NameBalloonEnum.UserID:
-                    this.PreviewPanel.cmbNameBalloon.SelectedIndex = 1;
-                    break;
-                case MyCommon.NameBalloonEnum.NickName:
-                    this.PreviewPanel.cmbNameBalloon.SelectedIndex = 2;
-                    break;
-            }
-
-            if (PostCtrlEnter)
-            {
-                this.TweetActPanel.ComboBoxPostKeySelect.SelectedIndex = 1;
-            }
-            else if (PostShiftEnter)
-            {
-                this.TweetActPanel.ComboBoxPostKeySelect.SelectedIndex = 2;
-            }
-            else
-            {
-                this.TweetActPanel.ComboBoxPostKeySelect.SelectedIndex = 0;
-            }
-
-            this.GetCountPanel.TextCountApi.Text = CountApi.ToString();
-            this.GetCountPanel.TextCountApiReply.Text = CountApiReply.ToString();
-            this.ActionPanel.BrowserPathText.Text = BrowserPath;
-            this.GetPeriodPanel.CheckPostAndGet.Checked = PostAndGet;
-            this.TweetActPanel.CheckUseRecommendStatus.Checked = UseRecommendStatus;
-            this.PreviewPanel.CheckDispUsername.Checked = DispUsername;
-            this.ActionPanel.CheckCloseToExit.Checked = CloseToExit;
-            this.ActionPanel.CheckMinimizeToTray.Checked = MinimizeToTray;
-            switch (DispLatestPost)
-            {
-                case MyCommon.DispTitleEnum.None:
-                    this.PreviewPanel.ComboDispTitle.SelectedIndex = 0;
-                    break;
-                case MyCommon.DispTitleEnum.Ver:
-                    this.PreviewPanel.ComboDispTitle.SelectedIndex = 1;
-                    break;
-                case MyCommon.DispTitleEnum.Post:
-                    this.PreviewPanel.ComboDispTitle.SelectedIndex = 2;
-                    break;
-                case MyCommon.DispTitleEnum.UnreadRepCount:
-                    this.PreviewPanel.ComboDispTitle.SelectedIndex = 3;
-                    break;
-                case MyCommon.DispTitleEnum.UnreadAllCount:
-                    this.PreviewPanel.ComboDispTitle.SelectedIndex = 4;
-                    break;
-                case MyCommon.DispTitleEnum.UnreadAllRepCount:
-                    this.PreviewPanel.ComboDispTitle.SelectedIndex = 5;
-                    break;
-                case MyCommon.DispTitleEnum.UnreadCountAllCount:
-                    this.PreviewPanel.ComboDispTitle.SelectedIndex = 6;
-                    break;
-                case MyCommon.DispTitleEnum.OwnStatus:
-                    this.PreviewPanel.ComboDispTitle.SelectedIndex = 7;
-                    break;
-            }
-            this.TweetPrvPanel.CheckSortOrderLock.Checked = SortOrderLock;
-            this.TweetPrvPanel.CheckViewTabBottom.Checked = ViewTabBottom;
-            this.ShortUrlPanel.CheckTinyURL.Checked = TinyUrlResolve;
-            switch (_MyProxyType)
-            {
-                case HttpConnection.ProxyType.None:
-                    this.ProxyPanel.RadioProxyNone.Checked = true;
-                    break;
-                case HttpConnection.ProxyType.IE:
-                    this.ProxyPanel.RadioProxyIE.Checked = true;
-                    break;
-                default:
-                    this.ProxyPanel.RadioProxySpecified.Checked = true;
-                    break;
-            }
-            bool chk = this.ProxyPanel.RadioProxySpecified.Checked;
-            this.ProxyPanel.LabelProxyAddress.Enabled = chk;
-            this.ProxyPanel.TextProxyAddress.Enabled = chk;
-            this.ProxyPanel.LabelProxyPort.Enabled = chk;
-            this.ProxyPanel.TextProxyPort.Enabled = chk;
-            this.ProxyPanel.LabelProxyUser.Enabled = chk;
-            this.ProxyPanel.TextProxyUser.Enabled = chk;
-            this.ProxyPanel.LabelProxyPassword.Enabled = chk;
-            this.ProxyPanel.TextProxyPassword.Enabled = chk;
-
-            this.ProxyPanel.TextProxyAddress.Text = ProxyAddress;
-            this.ProxyPanel.TextProxyPort.Text = ProxyPort.ToString();
-            this.ProxyPanel.TextProxyUser.Text = ProxyUser;
-            this.ProxyPanel.TextProxyPassword.Text = ProxyPassword;
-
-            this.StartupPanel.CheckStartupVersion.Checked = StartupVersion;
-            if (ApplicationSettings.VersionInfoUrl == null)
-                this.StartupPanel.CheckStartupVersion.Enabled = false; // 更新チェック無効化
-            this.StartupPanel.CheckStartupFollowers.Checked = StartupFollowers;
-            this.ActionPanel.CheckFavRestrict.Checked = RestrictFavCheck;
-            this.PreviewPanel.CheckAlwaysTop.Checked = AlwaysTop;
-            this.ShortUrlPanel.CheckAutoConvertUrl.Checked = UrlConvertAuto;
-            this.ShortUrlPanel.ShortenTcoCheck.Checked = ShortenTco;
-            this.ShortUrlPanel.ShortenTcoCheck.Enabled = this.ShortUrlPanel.CheckAutoConvertUrl.Checked;
-            this.CooperatePanel.CheckOutputz.Checked = OutputzEnabled;
-            this.CooperatePanel.TextBoxOutputzKey.Text = OutputzKey;
-
-            switch (OutputzUrlmode)
-            {
-                case MyCommon.OutputzUrlmode.twittercom:
-                    this.CooperatePanel.ComboBoxOutputzUrlmode.SelectedIndex = 0;
-                    break;
-                case MyCommon.OutputzUrlmode.twittercomWithUsername:
-                    this.CooperatePanel.ComboBoxOutputzUrlmode.SelectedIndex = 1;
-                    break;
-            }
-
-            this.CooperatePanel.CheckNicoms.Checked = Nicoms;
-            this.TweetPrvPanel.chkUnreadStyle.Checked = UseUnreadStyle;
-            this.TweetPrvPanel.CmbDateTimeFormat.Text = DateTimeFormat;
-            this.ConnectionPanel.ConnectionTimeOut.Text = DefaultTimeOut.ToString();
-            this.TweetActPanel.CheckRetweetNoConfirm.Checked = RetweetNoConfirm;
-            this.PreviewPanel.CheckBalloonLimit.Checked = LimitBalloon;
-
-            ApplyEventNotifyFlag(EventNotifyEnabled, EventNotifyFlag, IsMyEventNotifyFlag);
-            this.NotifyPanel.CheckForceEventNotify.Checked = ForceEventNotify;
-            this.NotifyPanel.CheckFavEventUnread.Checked = FavEventUnread;
-            this.CooperatePanel.ComboBoxTranslateLanguage.SelectedIndex = (new Bing()).GetIndexFromLanguageEnum(TranslateLanguage);
-            SoundFileListup();
-            this.ShortUrlPanel.ComboBoxAutoShortUrlFirst.SelectedIndex = (int)AutoShortUrlFirst;
-            this.PreviewPanel.chkTabIconDisp.Checked = TabIconDisp;
-            this.ActionPanel.chkReadOwnPost.Checked = ReadOwnPost;
-            this.StartupPanel.chkGetFav.Checked = GetFav;
-            this.PreviewPanel.CheckMonospace.Checked = IsMonospace;
-            this.ActionPanel.CheckReadOldPosts.Checked = ReadOldPosts;
-            this.ConnectionPanel.CheckUseSsl.Checked = UseSsl;
-            this.ShortUrlPanel.TextBitlyId.Text = BitlyUser;
-            this.ShortUrlPanel.TextBitlyPw.Text = BitlyPwd;
-            this.ShortUrlPanel.TextBitlyId.Modified = false;
-            this.ShortUrlPanel.TextBitlyPw.Modified = false;
-            this.TweetPrvPanel.CheckShowGrid.Checked = ShowGrid;
-            this.TweetActPanel.CheckAtIdSupple.Checked = UseAtIdSupplement;
-            this.TweetActPanel.CheckHashSupple.Checked = UseHashSupplement;
-            this.PreviewPanel.CheckPreviewEnable.Checked = PreviewEnable;
-            this.ConnectionPanel.TwitterAPIText.Text = TwitterApiUrl;
-            switch (ReplyIconState)
-            {
-                case MyCommon.REPLY_ICONSTATE.None:
-                    this.PreviewPanel.ReplyIconStateCombo.SelectedIndex = 0;
-                    break;
-                case MyCommon.REPLY_ICONSTATE.StaticIcon:
-                    this.PreviewPanel.ReplyIconStateCombo.SelectedIndex = 1;
-                    break;
-                case MyCommon.REPLY_ICONSTATE.BlinkIcon:
-                    this.PreviewPanel.ReplyIconStateCombo.SelectedIndex = 2;
-                    break;
-            }
-            switch (Language)
-            {
-                case "OS":
-                    this.PreviewPanel.LanguageCombo.SelectedIndex = 0;
-                    break;
-                case "ja":
-                    this.PreviewPanel.LanguageCombo.SelectedIndex = 1;
-                    break;
-                case "en":
-                    this.PreviewPanel.LanguageCombo.SelectedIndex = 2;
-                    break;
-                case "zh-CN":
-                    this.PreviewPanel.LanguageCombo.SelectedIndex = 3;
-                    break;
-                default:
-                    this.PreviewPanel.LanguageCombo.SelectedIndex = 0;
-                    break;
-            }
-            this.ActionPanel.HotkeyCheck.Checked = HotkeyEnabled;
-            this.ActionPanel.HotkeyAlt.Checked = ((HotkeyMod & Keys.Alt) == Keys.Alt);
-            this.ActionPanel.HotkeyCtrl.Checked = ((HotkeyMod & Keys.Control) == Keys.Control);
-            this.ActionPanel.HotkeyShift.Checked = ((HotkeyMod & Keys.Shift) == Keys.Shift);
-            this.ActionPanel.HotkeyWin.Checked = ((HotkeyMod & Keys.LWin) == Keys.LWin);
-            this.ActionPanel.HotkeyCode.Text = HotkeyValue.ToString();
-            this.ActionPanel.HotkeyText.Text = HotkeyKey.ToString();
-            this.ActionPanel.HotkeyText.Tag = HotkeyKey;
-            this.ActionPanel.HotkeyAlt.Enabled = HotkeyEnabled;
-            this.ActionPanel.HotkeyShift.Enabled = HotkeyEnabled;
-            this.ActionPanel.HotkeyCtrl.Enabled = HotkeyEnabled;
-            this.ActionPanel.HotkeyWin.Enabled = HotkeyEnabled;
-            this.ActionPanel.HotkeyText.Enabled = HotkeyEnabled;
-            this.ActionPanel.HotkeyCode.Enabled = HotkeyEnabled;
-            this.PreviewPanel.ChkNewMentionsBlink.Checked = BlinkNewMentions;
-
-            // XXX: CheckedChanged イベントを発生させる
-            this.CooperatePanel.CheckOutputz.Checked = this.CooperatePanel.CheckOutputz.Checked;
-
-            this.GetCountPanel.GetMoreTextCountApi.Text = MoreCountApi.ToString();
-            this.GetCountPanel.FirstTextCountApi.Text = FirstCountApi.ToString();
-            this.GetCountPanel.SearchTextCountApi.Text = SearchCountApi.ToString();
-            this.GetCountPanel.FavoritesTextCountApi.Text = FavoritesCountApi.ToString();
-            this.GetCountPanel.UserTimelineTextCountApi.Text = UserTimelineCountApi.ToString();
-            this.GetCountPanel.ListTextCountApi.Text = ListCountApi.ToString();
-            this.GetCountPanel.UseChangeGetCount.Checked = UseAdditionalCount;
-            this.GetCountPanel.Label28.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.Label30.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.Label53.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.Label66.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.Label17.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.Label25.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.GetMoreTextCountApi.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.FirstTextCountApi.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.SearchTextCountApi.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.FavoritesTextCountApi.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.UserTimelineTextCountApi.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.GetCountPanel.ListTextCountApi.Enabled = this.GetCountPanel.UseChangeGetCount.Checked;
-            this.ActionPanel.CheckOpenUserTimeline.Checked = OpenUserTimeline;
-            this.ActionPanel.ListDoubleClickActionComboBox.SelectedIndex = ListDoubleClickAction;
-            this.CooperatePanel.UserAppointUrlText.Text = UserAppointUrl;
-            this.TweetPrvPanel.HideDuplicatedRetweetsCheck.Checked = this.HideDuplicatedRetweets;
-            this.CooperatePanel.IsPreviewFoursquareCheckBox.Checked = this.IsPreviewFoursquare;
-            this.CooperatePanel.MapThumbnailProviderComboBox.SelectedIndex = (int)this.MapThumbnailProvider;
-            this.CooperatePanel.MapThumbnailHeightTextBox.Text = this.MapThumbnailHeight.ToString();
-            this.CooperatePanel.MapThumbnailWidthTextBox.Text = this.MapThumbnailWidth.ToString();
-            this.CooperatePanel.MapThumbnailZoomTextBox.Text = this.MapThumbnailZoom.ToString();
-            this.TweetPrvPanel.IsListsIncludeRtsCheckBox.Checked = this.IsListStatusesIncludeRts;
-            this.ActionPanel.TabMouseLockCheck.Checked = this.TabMouseLock;
-            this.NotifyPanel.IsRemoveSameFavEventCheckBox.Checked = this.IsRemoveSameEvent;
-            this.PreviewPanel.IsNotifyUseGrowlCheckBox.Checked = this.IsNotifyUseGrowl;
-
-            if (GrowlHelper.IsDllExists)
-            {
-                this.PreviewPanel.IsNotifyUseGrowlCheckBox.Enabled = true;
-            }
-            else
-            {
-                this.PreviewPanel.IsNotifyUseGrowlCheckBox.Enabled = false;
-            }
-
             this.TreeViewSetting.Nodes["BasedNode"].Tag = BasedPanel;
             this.TreeViewSetting.Nodes["BasedNode"].Nodes["PeriodNode"].Tag = GetPeriodPanel;
             this.TreeViewSetting.Nodes["BasedNode"].Nodes["StartUpNode"].Tag = StartupPanel;
@@ -933,369 +277,21 @@ namespace OpenTween
             }
         }
 
-        private void btnFontAndColor_Click(object sender, EventArgs e) // Handles btnUnread.Click, btnDetail.Click, btnListFont.Click, btnInputFont.Click
-        {
-            Button Btn = (Button) sender;
-            DialogResult rtn;
-
-            FontDialog1.AllowVerticalFonts = false;
-            FontDialog1.AllowScriptChange = true;
-            FontDialog1.AllowSimulations = true;
-            FontDialog1.AllowVectorFonts = true;
-            FontDialog1.FixedPitchOnly = false;
-            FontDialog1.FontMustExist = true;
-            FontDialog1.ScriptsOnly = false;
-            FontDialog1.ShowApply = false;
-            FontDialog1.ShowEffects = true;
-            FontDialog1.ShowColor = true;
-
-            switch (Btn.Name)
-            {
-                case "btnUnread":
-                    FontDialog1.Color = this.FontPanel.lblUnread.ForeColor;
-                    FontDialog1.Font = this.FontPanel.lblUnread.Font;
-                    break;
-                case "btnDetail":
-                    FontDialog1.Color = this.FontPanel.lblDetail.ForeColor;
-                    FontDialog1.Font = this.FontPanel.lblDetail.Font;
-                    break;
-                case "btnListFont":
-                    FontDialog1.Color = this.FontPanel.lblListFont.ForeColor;
-                    FontDialog1.Font = this.FontPanel.lblListFont.Font;
-                    break;
-                case "btnInputFont":
-                    FontDialog1.Color = lblInputFont.ForeColor;
-                    FontDialog1.Font = lblInputFont.Font;
-                    break;
-            }
-
-            try
-            {
-                rtn = FontDialog1.ShowDialog();
-            }
-            catch(ArgumentException ex)
-            {
-                MessageBox.Show(ex.Message);
-                return;
-            }
-
-            if (rtn == DialogResult.Cancel) return;
-
-            switch (Btn.Name)
-            {
-                case "btnUnread":
-                    this.FontPanel.lblUnread.ForeColor = FontDialog1.Color;
-                    this.FontPanel.lblUnread.Font = FontDialog1.Font;
-                    break;
-                case "btnDetail":
-                    this.FontPanel.lblDetail.ForeColor = FontDialog1.Color;
-                    this.FontPanel.lblDetail.Font = FontDialog1.Font;
-                    break;
-                case "btnListFont":
-                    this.FontPanel.lblListFont.ForeColor = FontDialog1.Color;
-                    this.FontPanel.lblListFont.Font = FontDialog1.Font;
-                    break;
-                case "btnInputFont":
-                    lblInputFont.ForeColor = FontDialog1.Color;
-                    lblInputFont.Font = FontDialog1.Font;
-                    break;
-            }
-
-        }
-
-        private void btnColor_Click(object sender, EventArgs e) //Handles btnSelf.Click, btnAtSelf.Click, btnTarget.Click, btnAtTarget.Click, btnAtFromTarget.Click, btnFav.Click, btnOWL.Click, btnInputBackcolor.Click, btnAtTo.Click, btnListBack.Click, btnDetailBack.Click, btnDetailLink.Click, btnRetweet.Click
-        {
-            Button Btn = (Button)sender;
-            DialogResult rtn;
-
-            ColorDialog1.AllowFullOpen = true;
-            ColorDialog1.AnyColor = true;
-            ColorDialog1.FullOpen = false;
-            ColorDialog1.SolidColorOnly = false;
-
-            switch (Btn.Name)
-            {
-                case "btnSelf":
-                    ColorDialog1.Color = lblSelf.BackColor;
-                    break;
-                case "btnAtSelf":
-                    ColorDialog1.Color = lblAtSelf.BackColor;
-                    break;
-                case "btnTarget":
-                    ColorDialog1.Color = lblTarget.BackColor;
-                    break;
-                case "btnAtTarget":
-                    ColorDialog1.Color = lblAtTarget.BackColor;
-                    break;
-                case "btnAtFromTarget":
-                    ColorDialog1.Color = lblAtFromTarget.BackColor;
-                    break;
-                case "btnFav":
-                    ColorDialog1.Color = this.FontPanel.lblFav.ForeColor;
-                    break;
-                case "btnOWL":
-                    ColorDialog1.Color = this.FontPanel.lblOWL.ForeColor;
-                    break;
-                case "btnRetweet":
-                    ColorDialog1.Color = this.FontPanel.lblRetweet.ForeColor;
-                    break;
-                case "btnInputBackcolor":
-                    ColorDialog1.Color = lblInputBackcolor.BackColor;
-                    break;
-                case "btnAtTo":
-                    ColorDialog1.Color = lblAtTo.BackColor;
-                    break;
-                case "btnListBack":
-                    ColorDialog1.Color = lblListBackcolor.BackColor;
-                    break;
-                case "btnDetailBack":
-                    ColorDialog1.Color = this.FontPanel.lblDetailBackcolor.BackColor;
-                    break;
-                case "btnDetailLink":
-                    ColorDialog1.Color = this.FontPanel.lblDetailLink.ForeColor;
-                    break;
-            }
-
-            rtn = ColorDialog1.ShowDialog();
-
-            if (rtn == DialogResult.Cancel) return;
-
-            switch (Btn.Name)
-            {
-                case "btnSelf":
-                    lblSelf.BackColor = ColorDialog1.Color;
-                    break;
-                case "btnAtSelf":
-                    lblAtSelf.BackColor = ColorDialog1.Color;
-                    break;
-                case "btnTarget":
-                    lblTarget.BackColor = ColorDialog1.Color;
-                    break;
-                case "btnAtTarget":
-                    lblAtTarget.BackColor = ColorDialog1.Color;
-                    break;
-                case "btnAtFromTarget":
-                    lblAtFromTarget.BackColor = ColorDialog1.Color;
-                    break;
-                case "btnFav":
-                    this.FontPanel.lblFav.ForeColor = ColorDialog1.Color;
-                    break;
-                case "btnOWL":
-                    this.FontPanel.lblOWL.ForeColor = ColorDialog1.Color;
-                    break;
-                case "btnRetweet":
-                    this.FontPanel.lblRetweet.ForeColor = ColorDialog1.Color;
-                    break;
-                case "btnInputBackcolor":
-                    lblInputBackcolor.BackColor = ColorDialog1.Color;
-                    break;
-                case "btnAtTo":
-                    lblAtTo.BackColor = ColorDialog1.Color;
-                    break;
-                case "btnListBack":
-                    lblListBackcolor.BackColor = ColorDialog1.Color;
-                    break;
-                case "btnDetailBack":
-                    this.FontPanel.lblDetailBackcolor.BackColor = ColorDialog1.Color;
-                    break;
-                case "btnDetailLink":
-                    this.FontPanel.lblDetailLink.ForeColor = ColorDialog1.Color;
-                    break;
-            }
-        }
-
-        public int UserstreamPeriodInt { get; set; }
-        public bool UserstreamStartup { get; set; }
-        public int TimelinePeriodInt { get; set; }
-        public int ReplyPeriodInt { get; set; }
-        public int DMPeriodInt { get; set; }
-        public int PubSearchPeriodInt { get; set; }
-        public int ListsPeriodInt { get; set; }
-        public int UserTimelinePeriodInt { get; set; }
-        public bool Readed { get; set; }
-        public MyCommon.IconSizes IconSz { get; set; }
-        public string Status { get; set; }
-        public bool UnreadManage { get; set; }
-        public bool PlaySound { get; set; }
-        public bool OneWayLove { get; set; }
-        public Font FontUnread { get; set; } /////未使用
-        public Color ColorUnread { get; set; }
-        public Font FontReaded { get; set; } /////リストフォントとして使用
-        public Color ColorReaded { get; set; }
-        public Color ColorFav { get; set; }
-        public Color ColorOWL { get; set; }
-        public Color ColorRetweet { get; set; }
-        public Font FontDetail { get; set; }
-        public Color ColorDetail { get; set; }
-        public Color ColorDetailLink { get; set; }
-        public Color ColorSelf { get; set; }
-        public Color ColorAtSelf { get; set; }
-        public Color ColorTarget { get; set; }
-        public Color ColorAtTarget { get; set; }
-        public Color ColorAtFromTarget { get; set; }
-        public Color ColorAtTo { get; set; }
-        public Color ColorInputBackcolor { get; set; }
-        public Color ColorInputFont { get; set; }
-        public Font FontInputFont { get; set; }
-        public Color ColorListBackcolor { get; set; }
-        public Color ColorDetailBackcolor { get; set; }
-        public MyCommon.NameBalloonEnum NameBalloon { get; set; }
-        public bool PostCtrlEnter { get; set; }
-        public bool PostShiftEnter { get; set; }
-        public int CountApi { get; set; }
-        public int CountApiReply { get; set; }
-        public int MoreCountApi { get; set; }
-        public int FirstCountApi { get; set; }
-        public int SearchCountApi { get; set; }
-        public int FavoritesCountApi { get; set; }
-        public int UserTimelineCountApi { get; set; }
-        public int ListCountApi { get; set; }
-        public bool PostAndGet { get; set; }
-        public bool UseRecommendStatus { get; set; }
-        public string RecommendStatusText { get; set; }
-        public bool DispUsername { get; set; }
-        public bool CloseToExit { get; set; }
-        public bool MinimizeToTray { get; set; }
-        public MyCommon.DispTitleEnum DispLatestPost { get; set; }
-        public string BrowserPath { get; set; }
-        public bool TinyUrlResolve { get; set; }
-
-        public bool SortOrderLock { get; set; }
-        public HttpConnection.ProxyType SelectedProxyType
-        {
-            get {
-                return _MyProxyType;
-            }
-            set {
-                _MyProxyType = value;
-            }
-        }
-        /// <summary>
-        /// タブを下部に表示するかどうかを取得または設定する
-        /// </summary>
-        public bool ViewTabBottom { get; set; }
-
-        public string ProxyAddress { get; set; }
-        public int ProxyPort { get; set; }
-        public string ProxyUser { get; set; }
-        public string ProxyPassword { get; set; }
-        public bool StartupVersion { get; set; }
-        public bool StartupFollowers { get; set; }
-        public bool RestrictFavCheck { get; set; }
-        public bool AlwaysTop { get; set; }
-        public bool UrlConvertAuto { get; set; }
-        public bool ShortenTco { get; set; }
-        public bool OutputzEnabled { get; set; }
-        public string OutputzKey { get; set; }
-        public MyCommon.OutputzUrlmode OutputzUrlmode { get; set; }
-        public bool Nicoms { get; set; }
-        public MyCommon.UrlConverter AutoShortUrlFirst { get; set; }
-        public bool UseUnreadStyle { get; set; }
-        public string DateTimeFormat { get; set; }
-        public int DefaultTimeOut { get; set; }
-        public bool RetweetNoConfirm { get; set; }
-        public bool TabIconDisp { get; set; }
-        public MyCommon.REPLY_ICONSTATE ReplyIconState { get; set; }
-        public bool ReadOwnPost { get; set; }
-        public bool GetFav { get; set; }
-        public bool IsMonospace { get; set; }
-        public bool ReadOldPosts { get; set; }
-        public bool UseSsl { get; set; }
-        public string BitlyUser { get; set; }
-        public string BitlyPwd { get; set; }
-        public bool ShowGrid { get; set; }
-        public bool UseAtIdSupplement { get; set; }
-        public bool UseHashSupplement { get; set; }
-        public bool PreviewEnable { get; set; }
-        public bool UseAdditionalCount { get; set; }
-        public bool OpenUserTimeline { get; set; }
-        public string TwitterApiUrl { get; set; }
-        public string Language { get; set; }
-
-        public bool LimitBalloon { get; set; }
-        public bool EventNotifyEnabled { get; set; }
-
-        public MyCommon.EVENTTYPE EventNotifyFlag
-        {
-            get
-            {
-                return _MyEventNotifyFlag;
-            }
-            set
-            {
-                _MyEventNotifyFlag = value;
-            }
-        }
-
-        public MyCommon.EVENTTYPE IsMyEventNotifyFlag
-        {
-            get
-            {
-                return _isMyEventNotifyFlag;
-            }
-            set
-            {
-                _isMyEventNotifyFlag = value;
-            }
-        }
-
-        public bool ForceEventNotify { get; set; }
-        public bool FavEventUnread { get; set; }
-
-        public string TranslateLanguage
-        {
-            get
-            {
-                return _MyTranslateLanguage;
-            }
-            set
-            {
-                _MyTranslateLanguage = value;
-                this.CooperatePanel.ComboBoxTranslateLanguage.SelectedIndex = (new Bing()).GetIndexFromLanguageEnum(value);
-            }
-        }
-
-        public string EventSoundFile { get; set; }
-        public int ListDoubleClickAction { get; set; }
-        public string UserAppointUrl { get; set; }
-
-        private void ButtonBackToDefaultFontColor_Click(object sender, EventArgs e) //Handles ButtonBackToDefaultFontColor.Click, ButtonBackToDefaultFontColor2.Click
-        {
-            lblInputFont.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.ControlText);
-            lblInputFont.Font = System.Drawing.SystemFonts.DefaultFont;
-
-            lblSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AliceBlue);
-
-            lblAtSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AntiqueWhite);
-
-            lblTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon);
-
-            lblAtTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LavenderBlush);
-
-            lblAtFromTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Honeydew);
-
-            lblInputBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon);
-
-            lblAtTo.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Pink);
-
-            lblListBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Window);
-        }
-
         private bool StartAuth()
         {
             //現在の設定内容で通信
-            HttpConnection.ProxyType ptype;
+            ProxyType ptype;
             if (this.ProxyPanel.RadioProxyNone.Checked)
             {
-                ptype = HttpConnection.ProxyType.None;
+                ptype = ProxyType.None;
             }
             else if (this.ProxyPanel.RadioProxyIE.Checked)
             {
-                ptype = HttpConnection.ProxyType.IE;
+                ptype = ProxyType.IE;
             }
             else
             {
-                ptype = HttpConnection.ProxyType.Specified;
+                ptype = ProxyType.Specified;
             }
             string padr = this.ProxyPanel.TextProxyAddress.Text.Trim();
             int pport = int.Parse(this.ProxyPanel.TextProxyPort.Text.Trim());
@@ -1303,7 +299,8 @@ namespace OpenTween
             string ppw = this.ProxyPanel.TextProxyPassword.Text.Trim();
 
             //通信基底クラス初期化
-            HttpConnection.InitializeConnection(20, ptype, padr, pport, pusr, ppw);
+            Networking.DefaultTimeout = TimeSpan.FromSeconds(20);
+            Networking.SetWebProxy(ptype, padr, pport, pusr, ppw);
             HttpTwitter.TwitterUrl = this.ConnectionPanel.TwitterAPIText.Text.Trim();
             tw.Initialize("", "", "", 0);
             //this.AuthStateLabel.Text = Properties.Resources.AuthorizeButton_Click4;
@@ -1408,17 +405,12 @@ namespace OpenTween
                 Thread.Sleep(10);
                 if (this.Disposing || this.IsDisposed) return;
             } while (!this.IsHandleCreated);
-            this.TopMost = this.AlwaysTop;
+            this.TopMost = this.PreviewPanel.CheckAlwaysTop.Checked;
 
             this.GetPeriodPanel.LabelPostAndGet.Visible = this.GetPeriodPanel.CheckPostAndGet.Checked && !tw.UserStreamEnabled;
             this.GetPeriodPanel.LabelUserStreamActive.Visible = tw.UserStreamEnabled;
         }
 
-        public static AppendSettingDialog Instance
-        {
-            get { return _instance; }
-        }
-
         private bool BitlyValidation(string id, string apikey)
         {
             if (string.IsNullOrEmpty(id) || string.IsNullOrEmpty(apikey))
@@ -1459,13 +451,6 @@ namespace OpenTween
             _ValidationError = false;
         }
 
-        public bool HotkeyEnabled;
-        public Keys HotkeyKey;
-        public int HotkeyValue;
-        public Keys HotkeyMod;
-
-        public bool BlinkNewMentions;
-
         //private void CheckEventNotify_CheckedChanged(object sender, EventArgs e)
         //                Handles CheckEventNotify.CheckedChanged, CheckFavoritesEvent.CheckStateChanged,
         //                        CheckUnfavoritesEvent.CheckStateChanged, CheckFollowEvent.CheckStateChanged,
@@ -1477,112 +462,6 @@ namespace OpenTween
         //    ApplyEventNotifyFlag(EventNotifyEnabled, EventNotifyFlag, IsMyEventNotifyFlag);
         //}
 
-        private class EventCheckboxTblElement
-        {
-            public CheckBox CheckBox;
-            public MyCommon.EVENTTYPE Type;
-        }
-
-        private EventCheckboxTblElement[] GetEventCheckboxTable()
-        {
-            EventCheckboxTblElement[] _eventCheckboxTable = new EventCheckboxTblElement[8];
-
-            _eventCheckboxTable[0] = new EventCheckboxTblElement();
-            _eventCheckboxTable[0].CheckBox = this.NotifyPanel.CheckFavoritesEvent;
-            _eventCheckboxTable[0].Type = MyCommon.EVENTTYPE.Favorite;
-
-            _eventCheckboxTable[1] = new EventCheckboxTblElement();
-            _eventCheckboxTable[1].CheckBox = this.NotifyPanel.CheckUnfavoritesEvent;
-            _eventCheckboxTable[1].Type = MyCommon.EVENTTYPE.Unfavorite;
-
-            _eventCheckboxTable[2] = new EventCheckboxTblElement();
-            _eventCheckboxTable[2].CheckBox = this.NotifyPanel.CheckFollowEvent;
-            _eventCheckboxTable[2].Type = MyCommon.EVENTTYPE.Follow;
-
-            _eventCheckboxTable[3] = new EventCheckboxTblElement();
-            _eventCheckboxTable[3].CheckBox = this.NotifyPanel.CheckListMemberAddedEvent;
-            _eventCheckboxTable[3].Type = MyCommon.EVENTTYPE.ListMemberAdded;
-
-            _eventCheckboxTable[4] = new EventCheckboxTblElement();
-            _eventCheckboxTable[4].CheckBox = this.NotifyPanel.CheckListMemberRemovedEvent;
-            _eventCheckboxTable[4].Type = MyCommon.EVENTTYPE.ListMemberRemoved;
-
-            _eventCheckboxTable[5] = new EventCheckboxTblElement();
-            _eventCheckboxTable[5].CheckBox = this.NotifyPanel.CheckBlockEvent;
-            _eventCheckboxTable[5].Type = MyCommon.EVENTTYPE.Block;
-
-            _eventCheckboxTable[6] = new EventCheckboxTblElement();
-            _eventCheckboxTable[6].CheckBox = this.NotifyPanel.CheckUserUpdateEvent;
-            _eventCheckboxTable[6].Type = MyCommon.EVENTTYPE.UserUpdate;
-
-            _eventCheckboxTable[7] = new EventCheckboxTblElement();
-            _eventCheckboxTable[7].CheckBox = this.NotifyPanel.CheckListCreatedEvent;
-            _eventCheckboxTable[7].Type = MyCommon.EVENTTYPE.ListCreated;
-
-            return _eventCheckboxTable;
-        }
-
-        private void GetEventNotifyFlag(ref MyCommon.EVENTTYPE eventnotifyflag, ref MyCommon.EVENTTYPE isMyeventnotifyflag)
-        {
-            MyCommon.EVENTTYPE evt = MyCommon.EVENTTYPE.None;
-            MyCommon.EVENTTYPE myevt = MyCommon.EVENTTYPE.None;
-
-            foreach (EventCheckboxTblElement tbl in GetEventCheckboxTable())
-            {
-                switch (tbl.CheckBox.CheckState)
-                {
-                    case CheckState.Checked:
-                        evt = evt | tbl.Type;
-                        myevt = myevt | tbl.Type;
-                        break;
-                    case CheckState.Indeterminate:
-                        evt = evt | tbl.Type;
-                        break;
-                    case CheckState.Unchecked:
-                        break;
-                }
-            }
-            eventnotifyflag = evt;
-            isMyeventnotifyflag = myevt;
-        }
-
-        private void ApplyEventNotifyFlag(bool rootEnabled, MyCommon.EVENTTYPE eventnotifyflag, MyCommon.EVENTTYPE isMyeventnotifyflag)
-        {
-            MyCommon.EVENTTYPE evt = eventnotifyflag;
-            MyCommon.EVENTTYPE myevt = isMyeventnotifyflag;
-
-            this.NotifyPanel.CheckEventNotify.Checked = rootEnabled;
-
-            foreach (EventCheckboxTblElement tbl in GetEventCheckboxTable())
-            {
-                if ((evt & tbl.Type) != 0)
-                {
-                    if ((myevt & tbl.Type) != 0)
-                    {
-                        tbl.CheckBox.CheckState = CheckState.Checked;
-                    }
-                    else
-                    {
-                        tbl.CheckBox.CheckState = CheckState.Indeterminate;
-                    }
-                }
-                else
-                {
-                    tbl.CheckBox.CheckState = CheckState.Unchecked;
-                }
-                tbl.CheckBox.Enabled = rootEnabled;
-            }
-
-        }
-
-        private void CheckEventNotify_CheckedChanged(object sender, EventArgs e)
-        {
-            foreach (EventCheckboxTblElement tbl in GetEventCheckboxTable())
-            {
-                tbl.CheckBox.Enabled = this.NotifyPanel.CheckEventNotify.Checked;
-            }
-        }
-
         //private void CheckForceEventNotify_CheckedChanged(object sender, EventArgs e)
         //{
         //    _MyForceEventNotify = CheckEventNotify.Checked;
@@ -1598,25 +477,6 @@ namespace OpenTween
         //    _MyTranslateLanguage = (new Google()).GetLanguageEnumFromIndex(ComboBoxTranslateLanguage.SelectedIndex);
         //}
 
-        private void SoundFileListup()
-        {
-            if (EventSoundFile == null) EventSoundFile = "";
-            this.NotifyPanel.ComboBoxEventNotifySound.Items.Clear();
-            this.NotifyPanel.ComboBoxEventNotifySound.Items.Add("");
-            DirectoryInfo oDir = new DirectoryInfo(Application.StartupPath + Path.DirectorySeparatorChar);
-            if (Directory.Exists(Path.Combine(Application.StartupPath, "Sounds")))
-            {
-                oDir = oDir.GetDirectories("Sounds")[0];
-            }
-            foreach (FileInfo oFile in oDir.GetFiles("*.wav"))
-            {
-                this.NotifyPanel.ComboBoxEventNotifySound.Items.Add(oFile.Name);
-            }
-            int idx = this.NotifyPanel.ComboBoxEventNotifySound.Items.IndexOf(EventSoundFile);
-            if (idx == -1) idx = 0;
-            this.NotifyPanel.ComboBoxEventNotifySound.SelectedIndex = idx;
-        }
-
         //private void ComboBoxEventNotifySound_VisibleChanged(object sender, EventArgs e)
         //{
         //    SoundFileListup();
@@ -1635,7 +495,7 @@ namespace OpenTween
             string path = this.ActionPanel.BrowserPathText.Text;
             try
             {
-                if (!string.IsNullOrEmpty(BrowserPath))
+                if (!string.IsNullOrEmpty(path))
                 {
                     if (path.StartsWith("\"") && path.Length > 2 && path.IndexOf("\"", 2) > -1)
                     {
@@ -1676,19 +536,27 @@ namespace OpenTween
 
             this.BasedPanel.StartAuthButton.Click += this.StartAuthButton_Click;
             this.BasedPanel.CreateAccountButton.Click += this.CreateAccountButton_Click;
-            this.NotifyPanel.CheckEventNotify.CheckedChanged += this.CheckEventNotify_CheckedChanged;
             this.GetPeriodPanel.CheckPostAndGet.CheckedChanged += this.CheckPostAndGet_CheckedChanged;
             this.ActionPanel.UReadMng.CheckedChanged += this.UReadMng_CheckedChanged;
-            this.FontPanel.btnUnread.Click += this.btnFontAndColor_Click;
-            this.FontPanel.btnDetail.Click += this.btnFontAndColor_Click;
-            this.FontPanel.btnListFont.Click += this.btnFontAndColor_Click;
-            this.FontPanel.btnFav.Click += this.btnColor_Click;
-            this.FontPanel.btnOWL.Click += this.btnColor_Click;
-            this.FontPanel.btnRetweet.Click += this.btnColor_Click;
-            this.FontPanel.btnDetailBack.Click += this.btnColor_Click;
-            this.FontPanel.btnDetailLink.Click += this.btnColor_Click;
 
             this.Icon = Properties.Resources.MIcon;
         }
+
+        private void GetPeriodPanel_IntervalChanged(object sender, IntervalChangedEventArgs e)
+        {
+            if (this.IntervalChanged != null)
+                this.IntervalChanged(sender, e);
+        }
+    }
+
+    public class IntervalChangedEventArgs : EventArgs
+    {
+        public bool UserStream;
+        public bool Timeline;
+        public bool Reply;
+        public bool DirectMessage;
+        public bool PublicSearch;
+        public bool Lists;
+        public bool UserTimeline;
     }
 }