2016-04-30 20:56:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UI_RECORD_VIEW_H__
|
|
|
|
#define __UI_RECORD_VIEW_H__
|
|
|
|
|
|
|
|
#include "ui_widget.hpp"
|
|
|
|
|
|
|
|
#include "capture_thread.hpp"
|
|
|
|
#include "signal.hpp"
|
|
|
|
|
|
|
|
#include "bitmap.hpp"
|
|
|
|
|
2016-05-02 19:26:53 +00:00
|
|
|
#include <cstddef>
|
|
|
|
#include <string>
|
2016-04-30 20:56:54 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
class RecordView : public View {
|
|
|
|
public:
|
2016-05-13 04:59:46 +00:00
|
|
|
std::function<void(std::string)> on_error;
|
|
|
|
|
2016-05-02 18:44:37 +00:00
|
|
|
enum FileType {
|
|
|
|
RawS16 = 2,
|
|
|
|
WAV = 3,
|
|
|
|
};
|
|
|
|
|
2016-04-30 20:56:54 +00:00
|
|
|
RecordView(
|
|
|
|
const Rect parent_rect,
|
|
|
|
std::string filename_stem_pattern,
|
2016-05-02 18:44:37 +00:00
|
|
|
FileType file_type,
|
2016-05-10 21:12:37 +00:00
|
|
|
const size_t write_size,
|
|
|
|
const size_t buffer_count
|
2016-04-30 20:56:54 +00:00
|
|
|
);
|
|
|
|
~RecordView();
|
|
|
|
|
|
|
|
void focus() override;
|
|
|
|
|
2016-06-21 18:33:23 +00:00
|
|
|
void set_sampling_rate(const size_t new_sampling_rate);
|
2016-04-30 20:56:54 +00:00
|
|
|
|
|
|
|
void start();
|
|
|
|
void stop();
|
|
|
|
|
|
|
|
bool is_active() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void toggle();
|
2016-05-16 21:01:44 +00:00
|
|
|
Optional<File::Error> write_metadata_file(const std::string& filename);
|
2016-04-30 20:56:54 +00:00
|
|
|
|
|
|
|
void on_tick_second();
|
|
|
|
|
2016-06-21 18:13:58 +00:00
|
|
|
void handle_error(const File::Error error);
|
2016-05-13 04:59:46 +00:00
|
|
|
|
2016-04-30 20:56:54 +00:00
|
|
|
const std::string filename_stem_pattern;
|
2016-05-02 18:44:37 +00:00
|
|
|
const FileType file_type;
|
2016-05-10 21:12:37 +00:00
|
|
|
const size_t write_size;
|
|
|
|
const size_t buffer_count;
|
2016-04-30 20:56:54 +00:00
|
|
|
size_t sampling_rate { 0 };
|
|
|
|
SignalToken signal_token_tick_second;
|
|
|
|
|
2016-05-25 18:33:23 +00:00
|
|
|
Rectangle rect_background {
|
|
|
|
Color::black()
|
|
|
|
};
|
|
|
|
|
2016-04-30 20:56:54 +00:00
|
|
|
ImageButton button_record {
|
|
|
|
{ 0 * 8, 0 * 16, 2 * 8, 1 * 16 },
|
|
|
|
&bitmap_record,
|
|
|
|
Color::red(),
|
|
|
|
Color::black()
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_record_filename {
|
|
|
|
{ 3 * 8, 0 * 16, 8 * 8, 16 },
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_record_dropped {
|
|
|
|
{ 16 * 8, 0 * 16, 3 * 8, 16 },
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
|
2016-05-11 18:50:40 +00:00
|
|
|
Text text_time_available {
|
2016-05-11 19:02:39 +00:00
|
|
|
{ 21 * 8, 0 * 16, 9 * 8, 16 },
|
2016-05-11 18:22:57 +00:00
|
|
|
"",
|
|
|
|
};
|
|
|
|
|
2016-04-30 20:56:54 +00:00
|
|
|
std::unique_ptr<CaptureThread> capture_thread;
|
2016-06-21 18:04:10 +00:00
|
|
|
|
|
|
|
MessageHandlerRegistration message_handler_capture_thread_error {
|
|
|
|
Message::ID::CaptureThreadError,
|
|
|
|
[this](const Message* const p) {
|
|
|
|
const auto message = *reinterpret_cast<const CaptureThreadErrorMessage*>(p);
|
2016-06-21 18:13:58 +00:00
|
|
|
this->handle_error(message.error);
|
2016-06-21 18:04:10 +00:00
|
|
|
}
|
|
|
|
};
|
2016-04-30 20:56:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
|
|
|
|
|
|
|
#endif/*__UI_RECORD_VIEW_H__*/
|