Move the remove notification signal to the IdCardWidget
[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 IdCard get_id_card ()
66     {
67         var id_card = new IdCard ();
68         id_card.issuer = "University";
69         id_card.username = "username";
70         id_card.password = "password";
71
72         return id_card;
73     }
74
75     private void show_details (IdCard id_card)
76     {
77        this.vbox_rigth.set_visible (!vbox_rigth.get_visible ());
78
79        if (this.vbox_rigth.get_visible () == false)
80        {
81            this.resize (WINDOW_WIDTH, WINDOW_HEIGHT);
82        }
83        else
84        {
85            this.username_entry.set_text (id_card.username);
86            this.password_entry.set_text (id_card.password);
87        }
88     }
89
90     private void details_button_clicked_cb ()
91     {
92        var id_card = get_id_card ();
93        show_details (id_card);
94     }
95
96     private void add_identity (AddIdentityDialog dialog)
97     {
98         var id_card = new IdCard ();
99
100         id_card.issuer = dialog.issuer;
101         id_card.username = dialog.username;
102         id_card.password = dialog.password;
103
104         var id_card_widget = new IdCardWidget (id_card);
105
106         this.custom_vbox.pack_start (id_card_widget, false, false);
107
108         id_card_widget.details_button.clicked.connect (details_button_clicked_cb);
109         id_card_widget.remove_id.connect (remove_identity_cb);
110         id_card_widget.expanded.connect (this.custom_vbox.receive_expanded_event);
111     }
112
113     private void add_identity_cb ()
114     {
115         var dialog = new AddIdentityDialog ();
116         var result = dialog.run ();
117
118         switch (result) {
119         case ResponseType.OK:
120             add_identity (dialog);
121             break;
122         default:
123             break;
124         }
125         dialog.destroy ();
126     }
127
128     private void remove_identity (IdCardWidget id_card_widget)
129     {
130         custom_vbox.remove (id_card_widget);
131     }
132
133     private void remove_identity_cb (IdCardWidget id_card_widget)
134     {
135         var id_card = id_card_widget.id_card;
136
137         var dialog = new MessageDialog (null,
138                                         DialogFlags.DESTROY_WITH_PARENT,
139                                         MessageType.INFO,
140                                         Gtk.ButtonsType.YES_NO,
141                                         _("Are you sure you want to delete %s ID Card?"), id_card.issuer);
142         var result = dialog.run ();
143         switch (result) {
144         case ResponseType.YES:
145             remove_identity (id_card_widget);
146             break;
147         default:
148             break;
149         }
150         dialog.destroy ();
151     }
152
153     private void label_make_bold (Label label)
154     {
155         var font_desc = new Pango.FontDescription ();
156
157         font_desc.set_weight (Pango.Weight.BOLD);
158
159         /* This will only affect the weight of the font, the rest is
160          * from the current state of the widget, which comes from the
161          * theme or user prefs, since the font desc only has the
162          * weight flag turned on.
163          */
164         label.modify_font (font_desc);
165     }
166
167     private void build_ui()
168     {
169         this.search_entry = new Entry();
170
171         this.search_entry.set_icon_from_icon_name (EntryIconPosition.PRIMARY,
172                                                    "edit-find-symbolic");
173         this.search_entry.set_icon_sensitive (EntryIconPosition.PRIMARY, false);
174         this.search_entry.set_icon_tooltip_text (EntryIconPosition.PRIMARY,
175                                                  _("Search identity or service"));
176
177         this.search_entry.set_icon_from_icon_name (EntryIconPosition.SECONDARY,
178                                                    "edit-clear-symbolic");
179         this.search_entry.set_icon_sensitive (EntryIconPosition.SECONDARY, false);
180         this.search_entry.set_icon_tooltip_text (EntryIconPosition.SECONDARY,
181                                                  _("Clear the current search"));
182
183         this.search_entry.icon_press.connect (search_entry_icon_press_cb);
184         this.search_entry.notify["text"].connect (search_entry_text_changed_cb);
185         this.search_entry.key_press_event.connect(search_entry_key_press_event_cb);
186
187         this.custom_vbox = new CustomVBox (false, 6);
188
189         var viewport = new Viewport (null, null);
190         viewport.set_border_width (6);
191         viewport.set_shadow_type (ShadowType.NONE);
192         viewport.add (custom_vbox);
193         var scroll = new ScrolledWindow (null, null);
194         scroll.set_policy (PolicyType.NEVER, PolicyType.AUTOMATIC);
195         scroll.set_shadow_type (ShadowType.IN);
196         scroll.add_with_viewport (viewport);
197
198         var button_add = new ToolButton (null, null);
199         button_add.set_icon_name ("list-add-symbolic");
200         button_add.clicked.connect (add_identity_cb);
201         var button_toolbar = new Toolbar ();
202         button_toolbar.insert (button_add, 0);
203
204         var vbox_left = new VBox (false, 0);
205         vbox_left.pack_start (search_entry, false, false, 6);
206         vbox_left.pack_start (scroll, true, true, 0);
207         vbox_left.pack_start (button_toolbar, false, false, 0);
208         vbox_left.set_size_request (WINDOW_WIDTH, 0);
209
210         var login_vbox_title = new Label (_("Login: "));
211         label_make_bold (login_vbox_title);
212         login_vbox_title.set_alignment (0, (float) 0.5);
213         var username_label = new Label (_("Username:"));
214         username_label.set_alignment (1, (float) 0.5);
215         this.username_entry = new Entry ();
216         var password_label = new Label (_("Password:"));
217         password_label.set_alignment (1, (float) 0.5);
218         this.password_entry = new Entry ();
219         password_entry.set_invisible_char ('*');
220         password_entry.set_visibility (false);
221         var remember_checkbutton = new CheckButton.with_label (_("Remember password"));
222         var login_table = new Table (3, 3, false);
223         login_table.set_col_spacings (10);
224         login_table.set_row_spacings (10);
225         login_table.attach_defaults (username_label, 0, 1, 0, 1);
226         login_table.attach_defaults (username_entry, 1, 2, 0, 1);
227         login_table.attach_defaults (password_label, 0, 1, 1, 2);
228         login_table.attach_defaults (password_entry, 1, 2, 1, 2);
229         login_table.attach_defaults (remember_checkbutton,  1, 2, 2, 3);
230         var login_vbox_alignment = new Alignment (0, 0, 0, 0);
231         login_vbox_alignment.set_padding (0, 0, 12, 0);
232         login_vbox_alignment.add (login_table);
233         var login_vbox = new VBox (false, 6);
234         login_vbox.pack_start (login_vbox_title, false, true, 0);
235         login_vbox.pack_start (login_vbox_alignment, false, true, 0);
236
237         var services_vbox_title = new Label (_("Services:"));
238         label_make_bold (services_vbox_title);
239         services_vbox_title.set_alignment (0, (float) 0.5);
240         var email_label = new Label (_("Email"));
241         var email_remove_button = new Button.from_stock (Stock.REMOVE);
242         var im_label = new Label (_("IM"));
243         var im_remove_button = new Button.from_stock (Stock.REMOVE);
244         var services_table = new Table (2, 2, false);
245         services_table.set_col_spacings (10);
246         services_table.set_row_spacings (10);
247         services_table.attach_defaults (email_label, 0, 1, 0, 1);
248         services_table.attach_defaults (email_remove_button, 1, 2, 0, 1);
249         services_table.attach_defaults (im_label, 0, 1, 1, 2);
250         services_table.attach_defaults (im_remove_button, 1, 2, 1, 2);
251         var services_vbox_alignment = new Alignment (0, 0, 0, 0);
252         services_vbox_alignment.set_padding (0, 0, 12, 0);
253         services_vbox_alignment.add (services_table);
254         var services_vbox = new VBox (false, 6);
255         services_vbox.pack_start (services_vbox_title, false, true, 0);
256         services_vbox.pack_start (services_vbox_alignment, false, true, 0);
257
258         this.vbox_rigth = new VBox (false, 18);
259         vbox_rigth.pack_start (login_vbox, false, true, 0);
260         vbox_rigth.pack_start (services_vbox, false, true, 0);
261
262         var hbox = new HBox (false, 12);
263         hbox.pack_start (vbox_left, false, false, 0);
264         hbox.pack_start (vbox_rigth, false, false, 0);
265
266         var main_vbox = new VBox (false, 12);
267         main_vbox.pack_start (hbox, true, true, 0);
268         main_vbox.set_border_width (12);
269         add (main_vbox);
270
271         main_vbox.show_all();
272         this.vbox_rigth.hide ();
273     }
274
275     private void connect_signals()
276     {
277         this.destroy.connect (Gtk.main_quit);
278     }
279
280     public static int main(string[] args)
281     {
282         Gtk.init(ref args);
283
284         Intl.bindtextdomain (Config.GETTEXT_PACKAGE, Config.LOCALEDIR);
285         Intl.bind_textdomain_codeset (Config.GETTEXT_PACKAGE, "UTF-8");
286         Intl.textdomain (Config.GETTEXT_PACKAGE);
287
288         var window = new MainWindow();
289         window.show ();
290
291         Gtk.main();
292
293         return 0;
294     }
295 }