summaryrefslogtreecommitdiffstats
path: root/win/C#/Functions
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-06-30 14:24:47 +0000
committersr55 <[email protected]>2008-06-30 14:24:47 +0000
commitcc794d8c78cbc128db8c6b0c1b33014be17dd958 (patch)
tree33818ed837a8a7324e96bc82839a0ea1d626a837 /win/C#/Functions
parent9c5ffcd12957fcf93c4addd7ccc478c85304d047 (diff)
WinGui:
- Queue system moved into it's own class. - Queue now uses a listview display instead of a simple list. It now displays some information about each encode instead of the CLI String. - Misc other Fixes. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1544 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions')
-rw-r--r--win/C#/Functions/Queue.cs106
1 files changed, 106 insertions, 0 deletions
diff --git a/win/C#/Functions/Queue.cs b/win/C#/Functions/Queue.cs
new file mode 100644
index 000000000..e566c2e08
--- /dev/null
+++ b/win/C#/Functions/Queue.cs
@@ -0,0 +1,106 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Collections;
+
+namespace Handbrake.Functions
+{
+ public class Queue
+ {
+ ArrayList queue = new ArrayList();
+ string lastQuery;
+
+ public ArrayList getQueue()
+ {
+ return queue;
+ }
+
+ /// <summary>
+ /// Get's the next CLI query for encoding
+ /// </summary>
+ /// <returns>String</returns>
+ public string getNextItemForEncoding()
+ {
+ string query = queue[0].ToString();
+ lastQuery = query;
+ remove(0);
+ return query;
+ }
+
+ /// <summary>
+ /// Add's a new item to the queue
+ /// </summary>
+ /// <param name="query">String</param>
+ public void add(string query)
+ {
+ queue.Add(query);
+ }
+
+ /// <summary>
+ /// Removes an item from the queue.
+ /// </summary>
+ /// <param name="index">Index</param>
+ /// <returns>Bolean true if successful</returns>
+ public Boolean remove(int index)
+ {
+ try
+ {
+ queue.RemoveAt(index);
+ return true;
+ }
+ catch (Exception)
+ {
+ return false;
+ }
+ }
+
+ /// <summary>
+ /// Returns how many items are in the queue
+ /// </summary>
+ /// <returns>Int</returns>
+ public int count()
+ {
+ return queue.Count;
+ }
+
+ /// <summary>
+ /// Get's the last query to be selected for encoding by getNextItemForEncoding()
+ /// </summary>
+ /// <returns>String</returns>
+ public string getLastQuery()
+ {
+ return lastQuery;
+ }
+
+ /// <summary>
+ /// Move an item with an index x, up in the queue
+ /// </summary>
+ /// <param name="index">Int</param>
+ public void moveUp(int index)
+ {
+ if (index != 0)
+ {
+ string item = queue[index].ToString();
+
+ queue.Insert((index - 1), item);
+ queue.RemoveAt((index + 1));
+ }
+ }
+
+ /// <summary>
+ /// Move an item with an index x, down in the queue
+ /// </summary>
+ /// <param name="index">Int</param>
+ public void moveDown(int index)
+ {
+ if (index != queue.Count - 1)
+ {
+ string item = queue[index].ToString();
+
+ queue.Insert((index + 2), item);
+ queue.RemoveAt((index));
+ }
+ }
+
+ }
+}