OSDN Git Service

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