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

2 by Stephen Smally
Worked a lot!
1
using Gtk;
2
using Lsc.Widgets;
3
4
namespace Lsc.Pages {
5
    public class HomePage : Box {
6
        public CategoriesView categories_view;
7
        
8
        public HomePage () {
9
            orientation = Orientation.VERTICAL;
10
            spacing = 5;
11
            border_width = 5;
12
            
13
            categories_view = new CategoriesView();
3 by Stephen Smally
Implemented dynamic category view
14
            //categories_view.halign = Align.CENTER;
15
            categories_view.hexpand = true;
16
            
17
            pack_start(categories_view, false, false, 0);
2 by Stephen Smally
Worked a lot!
18
        }
19
    }
20
}
3 by Stephen Smally
Implemented dynamic category view
21