1 // OpenTween - Client of Twitter
2 // Copyright (c) 2012 kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
3 // All rights reserved.
5 // This file is part of OpenTween.
7 // This program is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General Public License as published by the Free
9 // Software Foundation; either version 3 of the License, or (at your option)
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 // You should have received a copy of the GNU General Public License along
18 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
19 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 // Boston, MA 02110-1301, USA.
25 using System.Collections.Generic;
26 using System.ComponentModel;
31 using System.Windows.Forms;
32 using OpenTween.Models;
36 public partial class TabsDialog : OTBaseForm
38 private readonly TabInformations TabInfo;
40 private bool _MultiSelect = false;
41 public bool MultiSelect
43 get => this._MultiSelect;
44 set { this._MultiSelect = value; this.UpdateTabList(); }
47 protected internal class TabListItem
49 public TabModel? Tab { get; set; }
50 public string Label { get; set; } = "";
52 public override string ToString()
56 public TabsDialog(TabInformations tabinformation)
58 InitializeComponent();
60 this.TabInfo = tabinformation;
64 protected void UpdateTabList()
66 this.TabList.Items.Clear();
70 this.TabList.SelectionMode = SelectionMode.MultiExtended;
74 this.TabList.SelectionMode = SelectionMode.One;
76 this.TabList.Items.Add(new TabListItem
78 Label = Properties.Resources.AddNewTabText1,
83 foreach (var tab in this.TabInfo.Tabs)
85 if (!tab.IsDistributableTabType) continue;
87 this.TabList.Items.Add(new TabListItem
95 private void TabList_DoubleClick(object sender, EventArgs e)
97 if (this.TabList.SelectedIndex == -1) return;
99 this.DialogResult = DialogResult.OK;
103 private void TabList_SelectedValueChanged(object sender, EventArgs e)
105 if (this.TabList.SelectedIndex == -1)
106 this.OK_Button.Enabled = false;
108 this.OK_Button.Enabled = true;
111 public TabModel? SelectedTab
112 => this.TabList.SelectedItem is TabListItem item ? item.Tab : null;
114 public TabModel[] SelectedTabs
115 => this.TabList.SelectedItems