diff options
author | sr55 <[email protected]> | 2007-08-30 11:42:37 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-08-30 11:42:37 +0000 |
commit | 473352b9820385b6eed1a74e3e1fd162f5f78776 (patch) | |
tree | 8d2ee70d76c284f6cc9a906f315b67cf03f3a18f /win/C#/frmMain.cs | |
parent | 479dd465c30a7a860569f37c7da103033a4ccf44 (diff) |
WinGui:
- Queue now has minimise button.
- Ability to disable tooltips in tools > options
- Added a few more tooltips to items.
- Removed some old files that are no longer needed.
- Updated splash screen.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@902 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 58ccc7df4..27b7ac813 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -58,11 +58,14 @@ namespace Handbrake // Display the quick start window if required.
quickStart();
+ // Enable or disable tooltips
+ tooltip();
+
//MessageBox.Show(System.Environment.OSVersion.Version.ToString());
}
- public void showSplash(object sender)
+ private void showSplash(object sender)
{
Form splash = new frmSplashScreen();
splash.Show();
@@ -70,7 +73,7 @@ namespace Handbrake splash.Close();
}
- public void loadUserDefaults()
+ private void loadUserDefaults()
{
try
{
@@ -159,7 +162,7 @@ namespace Handbrake }
}
- public void updateCheck()
+ private void updateCheck()
{
if (Properties.Settings.Default.updateStatus == "Checked")
{
@@ -182,7 +185,7 @@ namespace Handbrake }
}
- public void quickStart()
+ private void quickStart()
{
if ((Properties.Settings.Default.QuickStartWindow == "Checked") || (Properties.Settings.Default.QuickStartWindow == ""))
{
@@ -191,6 +194,14 @@ namespace Handbrake }
}
+ private void tooltip()
+ {
+ if (Properties.Settings.Default.tooltipEnable == "Checked")
+ {
+ ToolTip.Active = true;
+ }
+ }
+
// --------------------------------------------------------------
// The main Menu bar.
@@ -1389,7 +1400,6 @@ namespace Handbrake drp_audioBitrate.Items.Add("224");
drp_audioBitrate.Items.Add("256");
drp_audioBitrate.Items.Add("320");
- drp_audioBitrate.Items.Add("384");
}
}
|