Squashed merge of many commits, including (but not limited to) :
[moonshot-ui.git] / src / moonshot-custom-vbox.vala
1 /*
2  * Copyright (c) 2011-2016, 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     private IdentityManagerView main_window; 
38     int next_pos = 0;
39     
40     public CustomVBox(IdentityManagerView window, bool homogeneous, int spacing)
41     {
42         main_window = window;
43         set_homogeneous(homogeneous);
44         set_spacing(spacing);
45     }
46
47     internal void receive_expanded_event(IdCardWidget id_card_widget)
48     {
49         var list = get_children();
50         foreach (Widget id_card in list)
51         {
52             if (id_card != id_card_widget)
53                 ((IdCardWidget) id_card).collapse();
54         }
55         
56         check_resize();
57     }
58
59     internal void receive_collapsed_event(IdCardWidget id_card_widget)
60     {
61         check_resize();
62     }
63
64     public void add_id_card_widget(IdCardWidget id_card_widget)
65     {
66         pack_start(id_card_widget, false, false);
67         id_card_widget.position = next_pos++;
68     }
69
70     public IdCardWidget? find_idcard_widget(IdCard card) {
71         if (card == null) {
72             return null;
73         }
74         foreach (var w in get_children()) {
75             IdCardWidget widget = (IdCardWidget) w;
76             if (widget.id_card == card) {
77                 return widget;
78             }
79         }
80         return null;
81     }
82
83     internal void clear()
84     {
85         logger.trace("clear");
86
87         var children = get_children();
88         foreach (var id_card_widget in children) {
89             remove(id_card_widget);
90         }
91
92         next_pos = 0;
93    }
94     
95 }