Add/Edit cards is now functionally complete (still needs aesthetic cleanup)
[moonshot-ui.git] / src / moonshot-custom-vbox.vala
1 /*
2  * Copyright (c) 2011-2014, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31 */
32 using Gtk;
33
34 class CustomVBox : VBox
35 {
36     static MoonshotLogger logger = get_logger("CustomVBox");
37     public IdCardWidget current_idcard { get; set; default = null; }
38     private IdentityManagerView main_window; 
39     int next_pos = 0;
40     
41     public CustomVBox(IdentityManagerView window, bool homogeneous, int spacing)
42     {
43         main_window = window;
44         set_homogeneous(homogeneous);
45         set_spacing(spacing);
46     }
47
48     public void receive_expanded_event(IdCardWidget id_card_widget)
49     {
50         var list = get_children();
51         foreach (Widget id_card in list)
52         {
53             if (id_card != id_card_widget)
54                 ((IdCardWidget) id_card).collapse();
55         }
56         current_idcard = id_card_widget;
57         
58         // if (current_idcard != null && main_window.request_queue.length > 0)
59         //     current_idcard.send_button.set_sensitive(true);
60         check_resize();
61     }
62
63     public void add_id_card_widget(IdCardWidget id_card_widget)
64     {
65         pack_start(id_card_widget, false, false);
66         id_card_widget.position = next_pos++;
67     }
68
69     public void remove_id_card_widget(IdCardWidget id_card_widget)
70     {
71         logger.trace("remove_id_card_widget");
72
73         remove(id_card_widget);
74
75         // Caller will eventually clear the list, re-setting all positions. I hope.
76
77         // var list = get_children();
78         // next_pos = 0;
79         // foreach (Widget id_card in list)
80         // {
81         //     id_card_widget.position = next_pos++;
82         // }
83     }
84
85     internal void clear()
86     {
87         logger.trace("clear");
88
89         var children = get_children();
90         foreach (var id_card_widget in children) {
91             remove_id_card_widget((IdCardWidget) id_card_widget);
92         }
93
94         next_pos = 0;
95    }
96     
97 }