OSDN Git Service

htn.to の展開時にHTTPSを強制的に使用する
[opentween/open-tween.git] / OpenTween / InputTabName.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) 2011      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 using System;
28 using System.Collections.Generic;
29 using System.ComponentModel;
30 using System.Data;
31 using System.Drawing;
32 using System.Linq;
33 using System.Text;
34 using System.Windows.Forms;
35
36 namespace OpenTween
37 {
38     public partial class InputTabName : OTBaseForm
39     {
40         public InputTabName()
41             => this.InitializeComponent();
42
43         private void OK_Button_Click(object sender, EventArgs e)
44         {
45             this.DialogResult = DialogResult.OK;
46             this.Close();
47         }
48
49         private void Cancel_Button_Click(object sender, EventArgs e)
50         {
51             TextTabName.Text = "";
52             this.DialogResult = DialogResult.Cancel;
53             this.Close();
54         }
55
56         public string TabName
57         {
58             get => this.TextTabName.Text.Trim();
59             set => TextTabName.Text = value.Trim();
60         }
61
62         public string FormTitle
63         {
64             get => this.Text;
65             set => this.Text = value;
66         }
67
68         public string FormDescription
69         {
70             get => this.LabelDescription.Text;
71             set => this.LabelDescription.Text = value;
72         }
73
74         public bool IsShowUsage { get; set; }
75         public MyCommon.TabUsageType Usage { get; set; }
76
77         private void InputTabName_Load(object sender, EventArgs e)
78         {
79             this.LabelUsage.Visible = false;
80             this.ComboUsage.Visible = false;
81             this.ComboUsage.Items.Add(Properties.Resources.InputTabName_Load1);
82             this.ComboUsage.Items.Add("Lists");
83             this.ComboUsage.Items.Add("PublicSearch");
84             this.ComboUsage.SelectedIndex = 0;
85         }
86
87         private void InputTabName_Shown(object sender, EventArgs e)
88         {
89             ActiveControl = TextTabName;
90             if (this.IsShowUsage)
91             {
92                 this.LabelUsage.Visible = true;
93                 this.ComboUsage.Visible = true;
94             }
95         }
96
97         private void ComboUsage_SelectedIndexChanged(object sender, EventArgs e)
98         {
99             switch (ComboUsage.SelectedIndex)
100             {
101                 case 0:
102                     this.Usage = MyCommon.TabUsageType.UserDefined;
103                     break;
104                 case 1:
105                     this.Usage = MyCommon.TabUsageType.Lists;
106                     break;
107                 case 2:
108                     this.Usage = MyCommon.TabUsageType.PublicSearch;
109                     break;
110                 default:
111                     this.Usage = MyCommon.TabUsageType.Undefined;
112                     break;
113             }
114         }
115     }
116 }