~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/src/client/callmanager.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-01-07 14:51:16 UTC
  • mfrom: (4.3.5 sid)
  • Revision ID: package-import@ubuntu.com-20150107145116-yxnafinf4lrdvrmx
Tags: 1.4.1-0.1ubuntu1
* Merge with Debian, remaining changes:
 - Drop soprano, nepomuk build-dep
* Drop ubuntu patches, now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
        bool unholdConference(const std::string& confID);
121
121
        std::vector<std::string> getConferenceList();
122
122
        std::vector<std::string> getParticipantList(const std::string& confID);
 
123
        std::vector<std::string> getDisplayNames(const std::string& confID);
123
124
        std::string getConferenceId(const std::string& callID);
124
125
        std::map<std::string, std::string> getConferenceDetails(const std::string& callID);
125
126
 
149
150
        void sendTextMessage(const std::string& callID, const std::string& message);
150
151
        void sendTextMessage(const std::string& callID, const std::string& message, const std::string& from);
151
152
 
152
 
#ifdef __ANDROID__
153
 
        // signals must be implemented manually for Android
 
153
        /* the following signals must be implemented manually for any
 
154
         * platform or configuration that does not supply dbus */
 
155
#if !HAVE_DBUS
154
156
        void callStateChanged(const std::string& callID, const std::string& state);
155
157
 
156
158
        void transferFailed();
159
161
 
160
162
        void recordPlaybackStopped(const std::string& path);
161
163
 
162
 
        void voiceMailNotify(const std::string& callID, const std::string& nd_msg);
 
164
        void voiceMailNotify(const std::string& callID, const int32_t& nd_msg);
163
165
 
164
166
        void incomingMessage(const std::string& ID, const std::string& from, const std::string& msg);
165
167
 
179
181
        void secureSdesOn(const std::string& arg);
180
182
        void secureSdesOff(const std::string& arg);
181
183
 
182
 
#endif // __ANDROID__
 
184
        void secureZrtpOn(const std::string& callID, const std::string& cipher);
 
185
        void secureZrtpOff(const std::string& callID);
 
186
        void showSAS(const std::string& callID, const std::string& sas, const bool& verified);
 
187
        void zrtpNotSuppOther(const std::string& callID);
 
188
        void zrtpNegotiationFailed(const std::string& callID, const std::string& arg2, const std::string& arg3);
 
189
 
 
190
        void onRtcpReportReceived(const std::string& callID, const std::map<std::string, int>& stats);
 
191
#endif // !HAVE_DBUS
 
192
 
183
193
private:
184
194
 
185
195
#if HAVE_ZRTP