~ubuntu-branches/ubuntu/gutsy/kde4libs/gutsy

« back to all changes in this revision

Viewing changes to phonon/ui/tests/guitest.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-02-21 11:00:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070221110012-6kw8khr9knv6lmg1
Tags: 3.80.3-0ubuntu1
New upstream unstable release

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
class QLabel;
31
31
class QString;
32
 
class QPushButton;
 
32
class QAbstractButton;
33
33
class QFrame;
 
34
class QComboBox;
34
35
namespace Phonon
35
36
{
36
37
        class MediaObject;
68
69
                SeekSlider *m_seekslider;
69
70
                QLabel *m_statelabel, *m_totaltime, *m_currenttime, *m_remainingtime;
70
71
                QLabel *m_metaDataLabel;
71
 
                QPushButton *m_pause, *m_play, *m_stop;
 
72
                QAbstractButton *m_pause, *m_play, *m_stop;
72
73
                MediaObject *m_media;
73
74
                qint64 m_length;
74
75
                QList<AudioPath*> m_audioPaths;
83
84
                AudioPath *path() const { return m_path; }
84
85
                bool connectOutput( OutputWidget* w );
85
86
 
 
87
    private Q_SLOTS:
 
88
        void addVolumeFader();
 
89
        void addEffect();
 
90
 
86
91
        private:
87
92
                AudioPath *m_path;
 
93
        QComboBox *m_effectComboBox;
88
94
};
89
95
 
90
96
class OutputWidget : public QFrame
95
101
 
96
102
                AudioOutput *output() const { return m_output; }
97
103
 
 
104
    private Q_SLOTS:
 
105
        void deviceChange(int);
 
106
 
98
107
        private:
99
108
                VolumeSlider *m_volslider;
100
109
                AudioOutput *m_output;
155
164
};
156
165
 
157
166
#endif // TESTWIDGET_H
158
 
// vim: sw=4 ts=4 noet
 
167
// vim: sw=4 ts=4