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

« back to all changes in this revision

Viewing changes to kde/src/conf/dlgvideo.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:
26
26
class VideoDevice;
27
27
class KConfigDialog;
28
28
 
 
29
class VideoChannel;
 
30
class VideoResolution;
 
31
 
29
32
///DlgVideo: video preferences for sflphone
30
33
class DlgVideo : public QWidget, public Ui_DlgVideoBase
31
34
{
40
43
   //Getter
41
44
   bool hasChanged();
42
45
 
43
 
private Q_SLOTS:
44
 
   void loadDevice    ( QString device     );
45
 
   void loadResolution( QString channel    );
46
 
   void loadRate      ( QString resolution );
47
 
   void changeRate    ( QString rate       );
48
 
   void startStopPreview();
49
 
 
50
46
private:
51
47
   //Attribute
52
48
   VideoDevice* m_pDevice;
53
49
   bool m_IsChanged;
54
50
   bool m_IsLoading;
 
51
   VideoChannel* m_pChannel;
 
52
   VideoResolution* m_pResolution;
 
53
 
 
54
public Q_SLOTS:
 
55
   void updateWidgets ();
 
56
   void updateSettings();
 
57
   void slotSettingsChanged();
 
58
 
 
59
private Q_SLOTS:
 
60
   void slotReloadPreview();
 
61
   void startStopPreview();
 
62
   void startStopPreview(bool state);
55
63
 
56
64
Q_SIGNALS:
57
65
   ///Emitted when the buttons need to be updated in the parent dialog