Add CustomVBox widget
[moonshot-ui.git] / src / moonshot-custom-vbox.vala
1 using Gtk;
2
3 class CustomVBox : VBox
4 {
5     public CustomVBox (bool homogeneous, int spacing)
6     {
7         this.set_homogeneous (homogeneous);
8         this.set_spacing (spacing);
9     }
10
11     public void receive_expanded_event ()
12     {
13         var id_cards = this.get_children ();
14     }
15 }