Store services in the ID card
[moonshot-ui.git] / src / moonshot-window.vala
1 using Gtk;
2
3 class MainWindow : Window
4 {
5     private const int WINDOW_WIDTH = 400;
6     private const int WINDOW_HEIGHT = 500;
7
8     private Entry search_entry;
9     private VBox vbox_rigth;
10     private CustomVBox custom_vbox;
11
12     private Entry username_entry;
13     private Entry password_entry;
14
15     private enum Columns
16     {
17         IDCARD_COL,
18         LOGO_COL,
19         NAME_COL,
20         N_COLUMNS
21     }
22
23     public MainWindow()
24     {
25         this.title = "Moonshoot";
26         this.position = WindowPosition.CENTER;
27         set_default_size (WINDOW_WIDTH, WINDOW_HEIGHT);
28
29         build_ui();
30         connect_signals();
31     }
32
33     private void search_entry_icon_press_cb (EntryIconPosition pos, Gdk.Event event)
34     {
35         if (pos == EntryIconPosition.PRIMARY)
36         {
37             print ("Search entry icon pressed\n");
38         }
39         else
40         {
41             this.search_entry.set_text ("");
42         }
43     }
44
45     private void search_entry_text_changed_cb ()
46     {
47         var has_text = this.search_entry.get_text_length () > 0;
48         this.search_entry.set_icon_sensitive (EntryIconPosition.PRIMARY, has_text);
49         this.search_entry.set_icon_sensitive (EntryIconPosition.SECONDARY, has_text);
50
51         this.vbox_rigth.set_visible (false);
52         this.resize (WINDOW_WIDTH, WINDOW_HEIGHT);
53     }
54
55     private bool search_entry_key_press_event_cb (Gdk.EventKey e)
56     {
57         if(Gdk.keyval_name(e.keyval) == "Escape")
58            this.search_entry.set_text("");
59
60         // Continue processing this event, since the
61         // text entry functionality needs to see it too.
62         return false;
63     }
64
65     private void fill_details (IdCardWidget id_card_widget)
66     {
67        var id_card = id_card_widget.id_card;
68        this.username_entry.set_text (id_card.username);
69        this.password_entry.set_text (id_card.password);
70     }
71
72     private void show_details (IdCard id_card)
73     {
74        this.vbox_rigth.set_visible (!vbox_rigth.get_visible ());
75
76        if (this.vbox_rigth.get_visible () == false)
77        {
78            this.resize (WINDOW_WIDTH, WINDOW_HEIGHT);
79        }
80     }
81
82     private void details_identity_cb (IdCardWidget id_card_widget)
83     {
84        fill_details (id_card_widget);
85        show_details (id_card_widget.id_card);
86     }
87
88     private IdCard get_id_card_data (AddIdentityDialog dialog)
89     {
90         var id_card = new IdCard ();
91
92         id_card.issuer = dialog.issuer;
93         id_card.username = dialog.username;
94         id_card.password = dialog.password;
95
96         var icon_theme = IconTheme.get_default ();
97         try
98         {
99             id_card.pixbuf = icon_theme.load_icon ("avatar-default",
100                                                    48,
101                                                    IconLookupFlags.FORCE_SIZE);
102         }
103         catch (Error e)
104         {
105             id_card.pixbuf = null;
106             stdout.printf("Error: %s\n", e.message);
107         }
108
109         id_card.services = {"email","jabber","irc"};
110
111         return id_card;
112     }
113
114     private void add_identity (AddIdentityDialog dialog)
115     {
116         var id_card = get_id_card_data (dialog);
117
118         var id_card_widget = new IdCardWidget (id_card);
119
120         this.custom_vbox.pack_start (id_card_widget, false, false);
121
122         id_card_widget.details_id.connect (details_identity_cb);
123         id_card_widget.remove_id.connect (remove_identity_cb);
124         id_card_widget.expanded.connect (this.custom_vbox.receive_expanded_event);
125         id_card_widget.expanded.connect (fill_details);
126     }
127
128     private void add_identity_cb ()
129     {
130         var dialog = new AddIdentityDialog ();
131         var result = dialog.run ();
132
133         switch (result) {
134         case ResponseType.OK:
135             add_identity (dialog);
136             break;
137         default:
138             break;
139         }
140         dialog.destroy ();
141     }
142
143     private void remove_identity (IdCardWidget id_card_widget)
144     {
145         custom_vbox.remove (id_card_widget);
146     }
147
148     private void remove_identity_cb (IdCardWidget id_card_widget)
149     {
150         var id_card = id_card_widget.id_card;
151
152         var dialog = new MessageDialog (null,
153                                         DialogFlags.DESTROY_WITH_PARENT,
154                                         MessageType.INFO,
155                                         Gtk.ButtonsType.YES_NO,
156                                         _("Are you sure you want to delete %s ID Card?"), id_card.issuer);
157         var result = dialog.run ();
158         switch (result) {
159         case ResponseType.YES:
160             remove_identity (id_card_widget);
161             break;
162         default:
163             break;
164         }
165         dialog.destroy ();
166     }
167
168     private void label_make_bold (Label label)
169     {
170         var font_desc = new Pango.FontDescription ();
171
172         font_desc.set_weight (Pango.Weight.BOLD);
173
174         /* This will only affect the weight of the font, the rest is
175          * from the current state of the widget, which comes from the
176          * theme or user prefs, since the font desc only has the
177          * weight flag turned on.
178          */
179         label.modify_font (font_desc);
180     }
181
182     private void build_ui()
183     {
184         this.search_entry = new Entry();
185
186         this.search_entry.set_icon_from_icon_name (EntryIconPosition.PRIMARY,
187                                                    "edit-find-symbolic");
188         this.search_entry.set_icon_sensitive (EntryIconPosition.PRIMARY, false);
189         this.search_entry.set_icon_tooltip_text (EntryIconPosition.PRIMARY,
190                                                  _("Search identity or service"));
191
192         this.search_entry.set_icon_from_icon_name (EntryIconPosition.SECONDARY,
193                                                    "edit-clear-symbolic");
194         this.search_entry.set_icon_sensitive (EntryIconPosition.SECONDARY, false);
195         this.search_entry.set_icon_tooltip_text (EntryIconPosition.SECONDARY,
196                                                  _("Clear the current search"));
197
198         this.search_entry.icon_press.connect (search_entry_icon_press_cb);
199         this.search_entry.notify["text"].connect (search_entry_text_changed_cb);
200         this.search_entry.key_press_event.connect(search_entry_key_press_event_cb);
201
202         this.custom_vbox = new CustomVBox (false, 6);
203
204         var viewport = new Viewport (null, null);
205         viewport.set_border_width (6);
206         viewport.set_shadow_type (ShadowType.NONE);
207         viewport.add (custom_vbox);
208         var scroll = new ScrolledWindow (null, null);
209         scroll.set_policy (PolicyType.NEVER, PolicyType.AUTOMATIC);
210         scroll.set_shadow_type (ShadowType.IN);
211         scroll.add_with_viewport (viewport);
212
213         var button_add = new ToolButton (null, null);
214         button_add.set_icon_name ("list-add-symbolic");
215         button_add.clicked.connect (add_identity_cb);
216         var button_toolbar = new Toolbar ();
217         button_toolbar.insert (button_add, 0);
218
219         var vbox_left = new VBox (false, 0);
220         vbox_left.pack_start (search_entry, false, false, 6);
221         vbox_left.pack_start (scroll, true, true, 0);
222         vbox_left.pack_start (button_toolbar, false, false, 0);
223         vbox_left.set_size_request (WINDOW_WIDTH, 0);
224
225         var login_vbox_title = new Label (_("Login: "));
226         label_make_bold (login_vbox_title);
227         login_vbox_title.set_alignment (0, (float) 0.5);
228         var username_label = new Label (_("Username:"));
229         username_label.set_alignment (1, (float) 0.5);
230         this.username_entry = new Entry ();
231         var password_label = new Label (_("Password:"));
232         password_label.set_alignment (1, (float) 0.5);
233         this.password_entry = new Entry ();
234         password_entry.set_invisible_char ('*');
235         password_entry.set_visibility (false);
236         var remember_checkbutton = new CheckButton.with_label (_("Remember password"));
237         var login_table = new Table (3, 3, false);
238         login_table.set_col_spacings (10);
239         login_table.set_row_spacings (10);
240         login_table.attach_defaults (username_label, 0, 1, 0, 1);
241         login_table.attach_defaults (username_entry, 1, 2, 0, 1);
242         login_table.attach_defaults (password_label, 0, 1, 1, 2);
243         login_table.attach_defaults (password_entry, 1, 2, 1, 2);
244         login_table.attach_defaults (remember_checkbutton,  1, 2, 2, 3);
245         var login_vbox_alignment = new Alignment (0, 0, 0, 0);
246         login_vbox_alignment.set_padding (0, 0, 12, 0);
247         login_vbox_alignment.add (login_table);
248         var login_vbox = new VBox (false, 6);
249         login_vbox.pack_start (login_vbox_title, false, true, 0);
250         login_vbox.pack_start (login_vbox_alignment, false, true, 0);
251
252         var services_vbox_title = new Label (_("Services:"));
253         label_make_bold (services_vbox_title);
254         services_vbox_title.set_alignment (0, (float) 0.5);
255         var email_label = new Label (_("Email"));
256         var email_remove_button = new Button.from_stock (Stock.REMOVE);
257         var im_label = new Label (_("IM"));
258         var im_remove_button = new Button.from_stock (Stock.REMOVE);
259         var services_table = new Table (2, 2, false);
260         services_table.set_col_spacings (10);
261         services_table.set_row_spacings (10);
262         services_table.attach_defaults (email_label, 0, 1, 0, 1);
263         services_table.attach_defaults (email_remove_button, 1, 2, 0, 1);
264         services_table.attach_defaults (im_label, 0, 1, 1, 2);
265         services_table.attach_defaults (im_remove_button, 1, 2, 1, 2);
266         var services_vbox_alignment = new Alignment (0, 0, 0, 0);
267         services_vbox_alignment.set_padding (0, 0, 12, 0);
268         services_vbox_alignment.add (services_table);
269         var services_vbox = new VBox (false, 6);
270         services_vbox.pack_start (services_vbox_title, false, true, 0);
271         services_vbox.pack_start (services_vbox_alignment, false, true, 0);
272
273         this.vbox_rigth = new VBox (false, 18);
274         vbox_rigth.pack_start (login_vbox, false, true, 0);
275         vbox_rigth.pack_start (services_vbox, false, true, 0);
276
277         var hbox = new HBox (false, 12);
278         hbox.pack_start (vbox_left, false, false, 0);
279         hbox.pack_start (vbox_rigth, false, false, 0);
280
281         var main_vbox = new VBox (false, 12);
282         main_vbox.pack_start (hbox, true, true, 0);
283         main_vbox.set_border_width (12);
284         add (main_vbox);
285
286         main_vbox.show_all();
287         this.vbox_rigth.hide ();
288     }
289
290     private void connect_signals()
291     {
292         this.destroy.connect (Gtk.main_quit);
293     }
294
295     public static int main(string[] args)
296     {
297         Gtk.init(ref args);
298
299         Intl.bindtextdomain (Config.GETTEXT_PACKAGE, Config.LOCALEDIR);
300         Intl.bind_textdomain_codeset (Config.GETTEXT_PACKAGE, "UTF-8");
301         Intl.textdomain (Config.GETTEXT_PACKAGE);
302
303         var window = new MainWindow();
304         window.show ();
305
306         Gtk.main();
307
308         return 0;
309     }
310 }