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

« back to all changes in this revision

Viewing changes to kde/src/lib/callmodel.h

  • Committer: Package Import Robot
  • Author(s): Francois Marier, Francois Marier, Mark Purcell
  • Date: 2014-10-18 15:08:50 UTC
  • mfrom: (1.1.12)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20141018150850-2exfk34ckb15pcwi
Tags: 1.4.1-0.1
[ Francois Marier ]
* Non-maintainer upload
* New upstream release (closes: #759576, #741130)
  - debian/rules +PJPROJECT_VERSION := 2.2.1
  - add upstream patch to fix broken TLS support
  - add patch to fix pjproject regression

[ Mark Purcell ]
* Build-Depends:
  - sflphone-daemon + libavformat-dev, libavcodec-dev, libswscale-dev,
  libavdevice-dev, libavutil-dev
  - sflphone-gnome + libclutter-gtk-1.0-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
      bool isPartOf(const QModelIndex& confIdx, Call* call);
122
122
      void initRoles();
123
123
      void removeConference       ( Call* conf                    );
 
124
      void removeInternal(InternalStruct* internal);
124
125
 
125
126
   private Q_SLOTS:
126
127
      void slotCallStateChanged   ( const QString& callID    , const QString &state   );
128
129
      void slotIncomingConference ( const QString& confID                             );
129
130
      void slotChangingConference ( const QString& confID    , const QString &state   );
130
131
      void slotConferenceRemoved  ( const QString& confId                             );
131
 
      void slotVolumeChanged      ( const QString& device    , double value           );
132
132
      void slotAddPrivateCall     ( Call* call                                        );
133
133
      void slotNewRecordingAvail  ( const QString& callId    , const QString& filePath);
134
134
      void slotCallChanged        ( Call* call                                        );
150
150
      void conferenceChanged       ( Call* conf                              );
151
151
      ///Emitted when a conference is removed
152
152
      void conferenceRemoved       ( Call* conf                              );
153
 
      ///Emitted when the volume change
154
 
      void volumeChanged           ( const QString& device    , double value );
155
153
      ///Emitted when a call is added
156
154
      void callAdded               ( Call* call               , Call* parent );
157
155
};