mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			98 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
///////////////////////////////////////////////////////////////////////////////////
 | 
						|
// Copyright (C) 2016 F4EXB                                                      //
 | 
						|
// written by Edouard Griffiths                                                  //
 | 
						|
//                                                                               //
 | 
						|
// 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 as version 3 of the License, 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 V3 for more details.                               //
 | 
						|
//                                                                               //
 | 
						|
// You should have received a copy of the GNU General Public License             //
 | 
						|
// along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
						|
///////////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#include "util/simpleserializer.h"
 | 
						|
#include "cwkeyersettings.h"
 | 
						|
 | 
						|
CWKeyerSettings::CWKeyerSettings()
 | 
						|
{
 | 
						|
    resetToDefaults();
 | 
						|
}
 | 
						|
 | 
						|
void CWKeyerSettings::resetToDefaults()
 | 
						|
{
 | 
						|
    m_loop = false;
 | 
						|
    m_mode = CWNone;
 | 
						|
    m_sampleRate = 48000;
 | 
						|
    m_text = "";
 | 
						|
    m_wpm = 13;
 | 
						|
    m_keyboardIambic = true;
 | 
						|
    m_dotKey = Qt::Key_Period;
 | 
						|
    m_dotKeyModifiers = Qt::NoModifier;
 | 
						|
    m_dashKey = Qt::Key_Minus;
 | 
						|
    m_dashKeyModifiers = Qt::NoModifier;
 | 
						|
}
 | 
						|
 | 
						|
QByteArray CWKeyerSettings::serialize() const
 | 
						|
{
 | 
						|
    SimpleSerializer s(1);
 | 
						|
 | 
						|
    s.writeBool(2, m_loop);
 | 
						|
    s.writeS32(3, (int) m_mode);
 | 
						|
    s.writeS32(4, m_sampleRate);
 | 
						|
    s.writeString(5, m_text);
 | 
						|
    s.writeS32(6, m_wpm);
 | 
						|
    s.writeS32(7, (int) m_dotKey);
 | 
						|
    s.writeU32(8, (unsigned int) m_dotKeyModifiers);
 | 
						|
    s.writeS32(9, (int) m_dashKey);
 | 
						|
    s.writeU32(10, (unsigned int) m_dashKeyModifiers);
 | 
						|
    s.writeBool(11, m_keyboardIambic);
 | 
						|
 | 
						|
    return s.final();
 | 
						|
}
 | 
						|
 | 
						|
bool CWKeyerSettings::deserialize(const QByteArray& data)
 | 
						|
{
 | 
						|
    SimpleDeserializer d(data);
 | 
						|
 | 
						|
    if (!d.isValid())
 | 
						|
    {
 | 
						|
        resetToDefaults();
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    if (d.getVersion() == 1)
 | 
						|
    {
 | 
						|
        int intval;
 | 
						|
        unsigned int uintval;
 | 
						|
 | 
						|
        d.readBool(2, &m_loop, false);
 | 
						|
        d.readS32(3, &intval, 0);
 | 
						|
        m_mode = (CWMode) intval;
 | 
						|
        d.readS32(4, &m_sampleRate, 48000);
 | 
						|
        d.readString(5, &m_text, "");
 | 
						|
        d.readS32(6, &m_wpm, 13);
 | 
						|
        d.readS32(7, &intval, (int) Qt::Key_Period);
 | 
						|
        m_dotKey = (Qt::Key) (intval < 0 ? 0 : intval);
 | 
						|
        d.readU32(8, &uintval, 0);
 | 
						|
        m_dotKeyModifiers = (Qt::KeyboardModifiers) uintval;
 | 
						|
        d.readS32(9, &intval, (int) Qt::Key_Minus);
 | 
						|
        m_dashKey = (Qt::Key) (intval < 0 ? 0 : intval);
 | 
						|
        d.readU32(10, &uintval, 0);
 | 
						|
        m_dashKeyModifiers = (Qt::KeyboardModifiers) uintval;
 | 
						|
        d.readBool(11, &m_keyboardIambic, true);
 | 
						|
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    else
 | 
						|
    {
 | 
						|
        resetToDefaults();
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
}
 |