[chronojump] video player ugly (without window) but works always
- From: Xavier de Blas <xaviblas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [chronojump] video player ugly (without window) but works always
- Date: Wed, 23 Feb 2011 15:50:41 +0000 (UTC)
commit cde65c4c0f7988214b0e45e33bfde1e20283b8b9
Author: Xavier de Blas <xaviblas gmail com>
Date: Wed Feb 23 16:50:03 2011 +0100
video player ugly (without window) but works always
src/gui/chronojump.cs | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
---
diff --git a/src/gui/chronojump.cs b/src/gui/chronojump.cs
index 4d05d84..4967a56 100644
--- a/src/gui/chronojump.cs
+++ b/src/gui/chronojump.cs
@@ -443,7 +443,6 @@ public class ChronoJumpWindow
//i think report it's deactivated until a new session is created or loaded,
//but check what happens if report window is opened
-
//preferencesLoaded is a fix to a gtk#-net-windows-bug where radiobuttons raise signals
//at initialization of chronojump and gives problems if this signals are raised while preferences are loading
loadPreferences ();
@@ -4460,6 +4459,18 @@ Console.WriteLine("X");
* --------------------------------------------------------
*/
+
+ //not nice but works
+ private void playVideo(string fileName) {
+ if(File.Exists(fileName)) {
+ PlayerBin player = new PlayerBin();
+ player.Open(fileName);
+ player.Play();
+ }
+ }
+
+ //nice but crashes sometimes
+ /*
private void playVideo(string fileName) {
if(File.Exists(fileName)) {
Log.WriteLine("Exists and clicked " + fileName);
@@ -4476,7 +4487,8 @@ Console.WriteLine("X");
d.ShowAll();
}
}
-
+ */
+
private void on_video_play_selected_jump_clicked (object o, EventArgs args) {
if (myTreeViewJumps.EventSelectedID > 0)
playVideo(Util.GetVideoFileName(currentSession.UniqueID,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]