~vikoadi/noise/fix-getNext

« back to all changes in this revision

Viewing changes to src/LibraryWindow.vala

  • Committer: Corentin Noël
  • Date: 2015-02-23 11:26:30 UTC
  • mto: This revision was merged to the branch mainline in revision 1760.
  • Revision ID: corentin@elementary.io-20150223112630-exjqv8hy61ogcnv6
Fixed some deprecation warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
    private Gtk.Button       playButton;
52
52
    private Gtk.Button       nextButton;
53
53
 
54
 
    public Granite.Widgets.ThinPaned  main_hpaned      { get; private set; }
55
 
    public SourceListView             source_list_view { get; private set; }
56
 
    public ViewContainer              view_container   { get; private set; }
57
 
    public TopDisplay                 topDisplay       { get; private set; }
58
 
    public Widgets.ViewSelector       viewSelector     { get; private set; }
59
 
    public Gtk.SearchEntry            searchField      { get; private set; }
60
 
    public Widgets.StatusBar          statusbar        { get; private set; }
61
 
    private FixedBin                  topDisplayBin;
 
54
    public Gtk.Paned main_hpaned { get; private set; }
 
55
    public SourceListView source_list_view { get; private set; }
 
56
    public ViewContainer view_container { get; private set; }
 
57
    public TopDisplay topDisplay { get; private set; }
 
58
    public Widgets.ViewSelector viewSelector { get; private set; }
 
59
    public Gtk.SearchEntry searchField { get; private set; }
 
60
    public Widgets.StatusBar statusbar { get; private set; }
 
61
    private FixedBin topDisplayBin;
62
62
 
63
63
    /* AppMenu items */
64
64
    private Gtk.MenuButton    appMenu;
312
312
        /** Main layout **/
313
313
 
314
314
        verticalBox           = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
315
 
        main_hpaned           = new Granite.Widgets.ThinPaned ();
 
315
        main_hpaned           = new Gtk.Paned (Gtk.Orientation.HORIZONTAL);
316
316
        view_container_hpaned = new Gtk.Paned (Gtk.Orientation.HORIZONTAL);
317
317
        view_container        = new ViewContainer ();
318
318
        source_list_view      = new SourceListView ();