mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 09:36:46 +00:00
Add a brand new codec config. Still needs i and h config.
This commit is contained in:
33
fscomm/widgets/codecwidget.h
Normal file
33
fscomm/widgets/codecwidget.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#ifndef CODECWIDGET_H
|
||||
#define CODECWIDGET_H
|
||||
|
||||
#include <QtGui>
|
||||
|
||||
namespace Ui {
|
||||
class CodecWidget;
|
||||
}
|
||||
|
||||
class CodecWidget : public QWidget {
|
||||
Q_OBJECT
|
||||
public:
|
||||
CodecWidget(QWidget *parent = 0);
|
||||
~CodecWidget();
|
||||
QString getCodecString();
|
||||
void setCodecString(QString);
|
||||
|
||||
protected:
|
||||
void changeEvent(QEvent *e);
|
||||
|
||||
private slots:
|
||||
void enableCodecs();
|
||||
void disableCodecs();
|
||||
void moveUp();
|
||||
void moveDown();
|
||||
|
||||
private:
|
||||
void readCodecs(void);
|
||||
Ui::CodecWidget *ui;
|
||||
QHash<QString, QList<QHash<QString, QString> > > _listCodecs;
|
||||
};
|
||||
|
||||
#endif // CODECWIDGET_H
|
Reference in New Issue
Block a user