~ps-jenkins/unity-lens-files/latestsnapshot-7.0daily13.05.07ubuntu.unity.experimental.certified-0ubuntu1

« back to all changes in this revision

Viewing changes to src/schemas.vala

  • Committer: Michal Hruby
  • Date: 2013-03-12 13:43:11 UTC
  • Revision ID: michal.mhr@gmail.com-20130312134311-e0cdn2bd241gxsm6
Make sure everything works with latest libunity

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
namespace Unity.FilesLens {
21
21
 
22
 
  public enum ResultsColumn
23
 
  {
24
 
    URI = 0,
25
 
    ICON_HINT,
26
 
    GROUP_ID,
27
 
    MIMETYPE,
28
 
    DISPLAY_NAME,
29
 
    COMMENT
30
 
  }
31
 
  
32
 
 public enum CategoriesColumn
33
 
  {
34
 
    RENDERER = 0,
35
 
    DISPLAY_NAME,
36
 
    ICON_HINT
37
 
  }
38
 
  
39
22
  public enum Categories
40
23
  {
 
24
    FILES_AND_FOLDERS,
41
25
    RECENT,
42
 
    RECENT_FILES,
43
26
    DOWNLOADS,
44
27
    FOLDERS,
45
 
    FILES_AND_FOLDERS,
46
 
    
47
28
  }
48
29
}