File: AlbumEditorUI.cs

package info (click to toggle)
dfo 0.8%2Bsvn52-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 916 kB
  • sloc: cs: 6,025; makefile: 16; sh: 15
file content (91 lines) | stat: -rw-r--r-- 2,091 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
using System;
using Gtk;
using Glade;

	public class AlbumEditorUI
	{
		
		[Glade.Widget]
		Window window3;
		
		[Glade.Widget]
		Label label8;
		
		[Glade.Widget]
		Label label9;
		
		[Glade.Widget]
		Label label10;
		
		[Glade.Widget]
		Entry entry3;
		
		[Glade.Widget]
    TextView textview6;
		
		[Glade.Widget]
		Button button8;
		
		[Glade.Widget]
		Button button7;
		
		[Glade.Widget]
		Image image4;
		
		private Album _album;
		private bool _isnew;
		
		private AlbumEditorUI(Album album, bool isnew)
		{
		  Glade.XML gxml = new Glade.XML (null, "organizer.glade", "window3", null);
		  gxml.Autoconnect (this);
		  
		  this._isnew = isnew;
		  this._album = album;
		  window3.Title = String.Format("Editing information for {0}", album.Title);
		  window3.SetIconFromFile(DeskFlickrUI.ICON_PATH);
		  
		  label8.Text = "Edit";
		  label9.Text = "Title: ";
		  label10.Text = "Description: ";
		  
		  entry3.Text = album.Title;
		  textview6.Buffer.Text = album.Desc;
		  
		  entry3.Changed += new EventHandler(OnTitleChanged);
		  textview6.Buffer.Changed += new EventHandler(OnDescriptionChanged);
		  
		  button7.Clicked += new EventHandler(OnCancelButtonClicked);
		  button8.Clicked += new EventHandler(OnSaveButtonClicked);
		  
		  image4.Pixbuf = PersistentInformation.GetInstance()
		                    .GetSmallImage(album.PrimaryPhotoid);
		  window3.ShowAll();
		}
		
		public static void FireUp(Album album) {
		  new AlbumEditorUI(album, false);
		}
		
		public static void FireUp(Album album, bool isnew) {
		  new AlbumEditorUI(album, isnew);
		}
		
		public void OnTitleChanged(object o, EventArgs args) {
		  _album.Title = entry3.Text;
		}
		
		public void OnDescriptionChanged(object o, EventArgs args) {
		  _album.Desc = textview6.Buffer.Text;
		}
		
		public void OnCancelButtonClicked(object o, EventArgs args) {
		  window3.Destroy();
		}
		
		public void OnSaveButtonClicked(object o, EventArgs args) {
		  PersistentInformation.GetInstance().SaveAlbum(_album, _isnew);
		  window3.Destroy();
		  DeskFlickrUI.GetInstance().PopulateAlbums();
		}
	}