Dead code removal; also fixed Send button (at least a little; not tested yet.)
[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         check_resize();
59     }
60
61     public void add_id_card_widget(IdCardWidget id_card_widget)
62     {
63         pack_start(id_card_widget, false, false);
64         id_card_widget.position = next_pos++;
65     }
66
67     public void remove_id_card_widget(IdCardWidget id_card_widget)
68     {
69         logger.trace("remove_id_card_widget");
70
71         remove(id_card_widget);
72
73         // Caller will eventually clear the list, re-setting all positions. I hope.
74
75         // var list = get_children();
76         // next_pos = 0;
77         // foreach (Widget id_card in list)
78         // {
79         //     id_card_widget.position = next_pos++;
80         // }
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((IdCardWidget) id_card_widget);
90         }
91
92         next_pos = 0;
93    }
94     
95 }