aboutsummaryrefslogblamecommitdiff
path: root/main/src/ui/conversation_selector/view.vala
blob: d06ad1334b16262621c2ed6fe5772f174f3bb6f2 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                        
                                                                  
                         
                                  
                                               
 
                                                          
                                                                         
                                        
                    
     
 
 
 
using Gee;
using Gtk;
using Gdk;

using Dino.Entities;

namespace Dino.Ui.ConversationSelector {

[GtkTemplate (ui = "/im/dino/Dino/conversation_selector/view.ui")]
public class View : Box {
    public List conversation_list;

    [GtkChild] private ScrolledWindow scrolled;

    public View init(StreamInteractor stream_interactor) {
        conversation_list = new List(stream_interactor) { visible=true };
        scrolled.add(conversation_list);
        return this;
    }

}

}