~crisoagf/do-plugins/do-music

« back to all changes in this revision

Viewing changes to BundledLibraries/telepathy-sharp/telepathy-sharp/Constants.cs

  • Committer: Christopher James Halse Rogers
  • Date: 2011-02-06 08:01:08 UTC
  • mfrom: (687.1.12 empathy)
  • Revision ID: raof@ubuntu.com-20110206080108-cuzq3femqkmsiagy
Merge the long-sought Empathy plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
 
 
3
namespace Telepathy
 
4
{
 
5
    public struct Constants
 
6
    {
 
7
        public const string CONNMANAGER_GABBLE_IFACE = "org.freedesktop.Telepathy.ConnectionManager.gabble";
 
8
        public const string CONNMANAGER_GABBLE_PATH = "/org/freedesktop/Telepathy/ConnectionManager/gabble";
 
9
 
 
10
        public const string CONNECTION_IFACE = "org.freedesktop.Telepathy.Connection";
 
11
        public const string AVATAR_IFACE = "org.freedesktop.Telepathy.Interface.Avatars";
 
12
        public const string REQUESTS_IFACE = "org.freedesktop.Telepathy.Connection.Interface.Requests";
 
13
        public const string CHANNEL_IFACE = "org.freedesktop.Telepathy.Channel";
 
14
        public const string CHANNEL_TYPE_CONTACTLIST = "org.freedesktop.Telepathy.Channel.Type.ContactList";
 
15
        public const string CHANNEL_TYPE_DBUSTUBE = "org.freedesktop.Telepathy.Channel.Type.DBusTube";
 
16
        public const string CHANNEL_TYPE_STREAMTUBE = "org.freedesktop.Telepathy.Channel.Type.StreamTube";
 
17
        public const string CHANNEL_TYPE_TEXT = "org.freedesktop.Telepathy.Channel.Type.Text";
 
18
        public const string CHANNEL_TYPE_FILETRANSFER = "org.freedesktop.Telepathy.Channel.Type.FileTransfer";
 
19
        
 
20
        public const string MISSIONCONTROL_IFACE = "org.freedesktop.Telepathy.MissionControl";
 
21
        public const string MISSIONCONTROL_PATH = "/org/freedesktop/Telepathy/MissionControl";
 
22
 
 
23
        public const string DBUS_PROPERTIES = "org.freedesktop.DBus.Properties";
 
24
    }
 
25
}