Path config - tabbed layout approach

This commit is contained in:
andres.delikat 2011-05-01 18:58:19 +00:00
parent c4403a2959
commit 57672564a5
2 changed files with 981 additions and 790 deletions

File diff suppressed because it is too large Load Diff

View File

@ -11,6 +11,15 @@ namespace BizHawk.MultiClient
{ {
public partial class PathConfig : Form public partial class PathConfig : Form
{ {
//TODO:
// `exe` shoudl be valid notation to mean path that the .exe is in ex: `exe`/NES
// ./ and ../ are always always relative to base path
// `recent` notation for most recently used path
//If "always use recent path for roms" is checked then base path of each platorm should be disabled
//Path text boxes shoudl be anchored L + R and the remaining widgets anchored R
//Alight everything in each tab the same
public PathConfig() public PathConfig()
{ {
InitializeComponent(); InitializeComponent();
@ -36,5 +45,10 @@ namespace BizHawk.MultiClient
SaveSettings(); SaveSettings();
this.Close(); this.Close();
} }
private void textBox24_TextChanged(object sender, EventArgs e)
{
}
} }
} }