summaryrefslogtreecommitdiff
path: root/src/windows/voicesettingswindow.hpp
blob: cf6b4777163644b8a869525c00bd47024396b443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once
#ifdef WITH_VOICE

// clang-format off

#include <gtkmm/box.h>
#include <gtkmm/comboboxtext.h>
#include <gtkmm/scale.h>
#include <gtkmm/window.h>

// clang-format on

class VoiceSettingsWindow : public Gtk::Window {
public:
    VoiceSettingsWindow();

    Gtk::Box m_main;
    Gtk::ComboBoxText m_encoding_mode;
    Gtk::ComboBoxText m_signal;
    Gtk::Scale m_bitrate;

private:
};

#endif