~adiroiban/lucruri/global-keybindings

« back to all changes in this revision

Viewing changes to src/NotesView.vala

  • Committer: Adi Roiban
  • Date: 2010-03-24 17:23:12 UTC
  • Revision ID: adi@roiban.ro-20100324172312-wa6dnyiwn9cftf1t
Add icons to search entry. Popup menu when clicking the view buton.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
using Gtk;
2
2
 
3
 
public class NotesView : Gtk.HPaned {
 
3
public class NotesView : Gtk.HPaned, IView {
4
4
 
5
5
    private NotesTreeView notesView;
6
6
        private ProjectsTreeView projectsView;
56
56
 
57
57
        }
58
58
 
59
 
        public void filterSearch(string text) {
 
59
        public void search(string text) {
60
60
                this.searchString = text;
61
61
                this.filter.refilter();
62
62
        }