Switch-Toolbox/Switch_Toolbox_Library/Forms/Custom/SideMenu/STVerticalNavigationMenu.cs
KillzXGaming a8e6d104f2 A few improvements.
Panes can now be selected and moved around.
Panes can be resized from corners or edges.
Improved hit detection for panes.
Mouse left click now selects and moves panes. Use middle mouse or hold shift + left mouse to pan/move camera.
More progress on timeline, but currently not functional so currently disabled atm.
Multiple layout animations can be selected and played at once. Goes to the highest amount of frames.
Start to impliment a parts manager. Will allow editing external layout and animation data, and saving back properly.
2019-10-05 13:25:28 -04:00

92 lines
2.7 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Toolbox.Library.Forms
{
public partial class STVerticalNavigationMenu : UserControl
{
private List<STVerticalMenuTabPage> TabPages = new List<STVerticalMenuTabPage>();
public STVerticalMenuTabPage SelectedPage
{
get
{
int index = flowLayoutPanel1.TabIndex;
if (index > 0 && index < TabPages.Count)
return TabPages[index];
else
return null;
}
}
public STVerticalNavigationMenu()
{
InitializeComponent();
flowLayoutPanel1.FixedWidth = true;
flowLayoutPanel1.TabIndexChanged += OnTabSelected;
flowLayoutPanel1.BackColor = FormThemes.BaseTheme.FormBackColor;
flowLayoutPanel1.ForeColor = FormThemes.BaseTheme.FormForeColor;
}
private void OnTabSelected(object sender, EventArgs e)
{
Console.WriteLine("OnTabSelected " + SelectedPage != null);
var page = SelectedPage;
if (page == null) return;
splitContainer1.Panel2.Controls.Clear();
splitContainer1.Panel2.Controls.Add(page.Control);
}
private void OnTabSelected2(object sender, EventArgs e)
{
Console.WriteLine("OnTabSelected2 " + SelectedPage != null);
var selectedPage = SelectedPage;
if (selectedPage == null) return;
foreach (var page in TabPages)
{
if (page == selectedPage)
page.Select();
else
page.Deselect();
}
}
public void AddTab(STUserControl control)
{
STVerticalMenuTabPage page = new STVerticalMenuTabPage();
page.TabMenu = new STVerticalTabMenuItem();
page.TabMenu.TabSelected += OnTabSelected2;
page.TabMenu.TabText = control.Text;
page.Control = control;
flowLayoutPanel1.Controls.Add(page.TabMenu);
}
}
public class STVerticalMenuTabPage
{
public STUserControl Control = new STUserControl();
public STVerticalTabMenuItem TabMenu = new STVerticalTabMenuItem();
public void Select()
{
TabMenu.ButtonColor = FormThemes.BaseTheme.CheckBoxBackColor;
}
public void Deselect()
{
TabMenu.ButtonColor = FormThemes.BaseTheme.CheckBoxEnabledBackColor;
}
}
}