diff options
author | sr55 <[email protected]> | 2007-12-14 16:51:42 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-12-14 16:51:42 +0000 |
commit | fa2599b3cd9e61a6a7f4295154649dd6087b38bf (patch) | |
tree | 04debcb885c6cbe323c7b4c99f0632020c704916 /win/C#/frmQuery.cs | |
parent | b17a98a1f959008a6536141fa55a2e84fa74a065 (diff) |
WinGui:
- Removed some old CLI handler files that were never completed.
- Removed Quickstart Window along with some redundant code.
- Removed the Query Editor tab as it is no longer really needed.
- Removed CRF option as this is now the default.
- Removed DRC Checkbox. The slider is now used for activation.
- Few changes to the Naming of GUI items to match the MacGUI.
- Warnings about no source / destination removed from Save/open presets and set default options. Will only appear on Queue and Encode buttons now.
- Fixed autonaming issue where it was enabled even when it was disabled.
- Added option to the Tools menu to display the current CLI query. This may be useful now that the Query editor tab is gone.
- Options window design tweaked.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1128 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmQuery.cs')
-rw-r--r-- | win/C#/frmQuery.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/win/C#/frmQuery.cs b/win/C#/frmQuery.cs new file mode 100644 index 000000000..f2ef7cc06 --- /dev/null +++ b/win/C#/frmQuery.cs @@ -0,0 +1,32 @@ +using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Text;
+using System.Windows.Forms;
+
+namespace Handbrake
+{
+ public partial class frmQuery : Form
+ {
+
+ public frmQuery(string query)
+ {
+ InitializeComponent();
+ rtf_query.Text = query;
+ }
+
+ private void btn_close_Click(object sender, EventArgs e)
+ {
+ this.Close();
+ }
+
+ private void btn_copy_Click(object sender, EventArgs e)
+ {
+ if (rtf_query.Text != "")
+ Clipboard.SetText(rtf_query.Text, TextDataFormat.Text);
+ }
+
+ }
+}
\ No newline at end of file |