~diodon-team/diodon/new-upstream-release-1.2.0

« back to all changes in this revision

Viewing changes to plugins/unitylens/unity-lens-schemas.vala

Fixed merge conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Diodon - GTK+ clipboard manager.
3
 
 * Copyright (C) 2011 Diodon Team <diodon-team@lists.launchpad.net>
4
 
 *
5
 
 * This program is free software: you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published
7
 
 * by the Free Software Foundation, either version 2 of the License, or (at
8
 
 * your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful, but
11
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12
 
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
13
 
 * License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 
 *
18
 
 * Author:
19
 
 *  Oliver Sauder <os@esite.ch>
20
 
 */
21
 
 
22
 
namespace Diodon.Plugins
23
 
{
24
 
    public enum ResultsColumn
25
 
    {
26
 
        URI = 0,
27
 
        ICON_HINT,
28
 
        GROUP_ID,
29
 
        MIMETYPE,
30
 
        DISPLAY_NAME,
31
 
        COMMENT
32
 
    }
33
 
 
34
 
    public enum CategoriesColumn
35
 
    {
36
 
        RENDERER = 0,
37
 
        DISPLAY_NAME,
38
 
        ICON_HINT
39
 
    }
40
 
}
41