~ubuntu-branches/ubuntu/precise/gwibber/precise

1.1.46 by Ken VanDine
Import upstream version 3.1.2
1
/*
2
 * Copyright (C) 2010 Neil Jagdish Patel
3
 *
4
 * This library is free software; you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License
6
 * version 3.0 as published by the Free Software Foundation.
7
 *
8
 * This library is distributed in the hope that it will be useful,
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 * GNU Lesser General Public License version 3.0 for more details.
12
 *
13
 * You should have received a copy of the GNU Lesser General Public
14
 * License along with this library. If not, see
15
 * <http://www.gnu.org/licenses/>.
16
 *
17
 * Authored by Neil Jagdish Patel <njpatel@gmail.com>
18
 */
19
20
namespace Gwibber
21
{
22
  public enum StreamModelColumn
23
  {
24
    ACCOUNTS,
25
    STREAM,
1.1.47 by Ken VanDine
Import upstream version 3.1.3
26
    TRANSIENT,
1.1.46 by Ken VanDine
Import upstream version 3.1.2
27
    SENDER,
28
    SENDER_NICK,
29
    FROM_ME,
30
    TIMESTAMP,
31
    MESSAGE,
32
    HTML,
33
    ICON_URI,
34
    URL,
35
    SOURCE,
36
    TIMESTRING,
37
    REPLY_NICK,
1.1.47 by Ken VanDine
Import upstream version 3.1.3
38
    REPLY_NAME,
1.1.46 by Ken VanDine
Import upstream version 3.1.2
39
    REPLY_URL,
40
    LIKES,
1.1.71 by Ken VanDine
Import upstream version 3.3.90
41
    LIKED,
1.1.46 by Ken VanDine
Import upstream version 3.1.2
42
    RETWEET_NICK,
43
    RETWEET_NAME,
1.1.47 by Ken VanDine
Import upstream version 3.1.3
44
    RETWEET_ID,
45
    LINK_PICTURE,
46
    LINK_NAME,
47
    LINK_URL,
48
    LINK_DESC,
49
    LINK_CAPTION,
50
    LINK_ICON,
51
    IMG_URL,
52
    IMG_SRC,
53
    IMG_THUMB,
1.1.59 by Ken VanDine
Import upstream version 3.1.6
54
    IMG_NAME,
55
    VIDEO_PIC,
56
    VIDEO_SRC,
57
    VIDEO_URL,
58
    VIDEO_NAME,
1.1.68 by Ken VanDine
Import upstream version 3.3.4
59
    COMMENTS,
60
    RECIPIENT,
61
    RECIPIENT_NICK,
62
    RECIPIENT_ICON
1.1.46 by Ken VanDine
Import upstream version 3.1.2
63
  }
64
}