~unity-team/unity-lens-sample/trunk

« back to all changes in this revision

Viewing changes to src/schemas.vala

  • Committer: Michal Hruby
  • Date: 2012-01-30 22:06:04 UTC
  • Revision ID: michal.mhr@gmail.com-20120130220604-vs5dwe3j2y7v8vqi
Update for libunity 5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * END LICENSE
5
5
 */
6
6
 
7
 
namespace Unity.SamplePlace {
 
7
namespace Unity.SampleLens {
8
8
 
9
 
  /* Canonical schema for the results model shared with the Unity shell */
10
 
  public enum ResultsColumn
11
 
  {
12
 
    URI = 0,
13
 
    ICON_HINT,
14
 
    GROUP_ID,
15
 
    MIMETYPE,
16
 
    DISPLAY_NAME,
17
 
    COMMENT
18
 
  }
19
 
  
20
 
  /* Canonical schema for the sections model shared with the Unity shell */
21
 
  public enum SectionsColumn
22
 
  {
23
 
    DISPLAY_NAME = 0,
24
 
    ICON_HINT
25
 
  }
26
 
  
27
 
  /* Place specific set of sections. The enum value maps to the row index
28
 
   * in the sections model */
29
 
  public enum Section
 
9
  /* Lens specific set of categories. The enum value maps to the row index
 
10
   * in the category model */
 
11
  public enum Category
30
12
  {
31
13
    ALL_STUFF = 0,
32
14
    MY_STUFF,
33
15
    YOUR_STUFF,
34
16
    LAST_SECTION
35
17
  }
36
 
  
37
 
  /* Canonical schema for the groups model shared with the Unity shell */
38
 
  public enum GroupsColumn
39
 
  {
40
 
    RENDERER = 0,
41
 
    DISPLAY_NAME,
42
 
    ICON_HINT
43
 
  }
44
 
  
45
 
  /* Place specific set of groups. The enum value maps to the row index in
46
 
   * the groups model */
47
 
  public enum Group
48
 
  {
49
 
    GROUP_ONE,
50
 
    GROUP_TWO
51
 
  }
52
18
 
53
 
} /* End namespace Unity.SamplePlace */
 
19
} /* End namespace Unity.SampleLens */
54
20