~lubuntu-software-center-team/lubuntu-software-center/vala-port

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Gtk;
using Lsc.Widgets;

namespace Lsc.Pages {
    public class HomePage : Box {
        public CategoriesView categories_view;
        
        public HomePage () {
            orientation = Orientation.VERTICAL;
            spacing = 5;
            border_width = 5;
            
            categories_view = new CategoriesView();
            //categories_view.halign = Align.CENTER;
            categories_view.hexpand = true;
            
            pack_start(categories_view, false, false, 0);
        }
    }
}