aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/buttons.js
diff options
context:
space:
mode:
authorHumberto Alfonso Díaz <humberto.alfonso@asvito.es>2019-07-05 14:29:20 +0200
committerLorenzo Tilve <ltilve@igalia.com>2020-02-04 09:42:15 +0100
commit7b1c3ffc84c82fc4f477122d5537ed4132f59123 (patch)
tree0fd9198829625a41745085844385ab51119496b4 /src/js/buttons.js
parent37c75cb3709d41149381f96f095e72e2ac8169d4 (diff)
OPT Update buttons code
Diffstat (limited to 'src/js/buttons.js')
-rw-r--r--src/js/buttons.js44
1 files changed, 8 insertions, 36 deletions
diff --git a/src/js/buttons.js b/src/js/buttons.js
index 3730d9f..76c3ef4 100644
--- a/src/js/buttons.js
+++ b/src/js/buttons.js
@@ -9,42 +9,14 @@ var buttons = {
front: false
};
+function update(node, value) {
+ node.setAttribute('value', value);
+}
+
module.exports = {
- update: function() {
- for( var button in buttons ) {
- document.getElementById(button+'button').setAttribute('value', buttons[button]);
- }
- },
- ac: function() {
- buttons.ac = !buttons.ac;
- this.update();
- },
- auto: function() {
- buttons.auto = !buttons.auto;
- this.update();
- },
- circulation: function() {
- buttons.circulation = !buttons.circulation;
- this.update();
- },
- down: function() {
- buttons.down = !buttons.down;
- this.update();
- },
- up: function() {
- buttons.up = !buttons.up;
- this.update();
- },
- right: function() {
- buttons.right = !buttons.right;
- this.update();
- },
- rear: function() {
- buttons.rear = !buttons.rear;
- this.update();
- },
- front: function() {
- buttons.front = !buttons.front;
- this.update();
+ toggle: function(node) {
+ var key = node.getAttribute('key');
+ buttons[key] = !buttons[key];
+ update(node, buttons[key]);
}
} \ No newline at end of file
ight .ch { color: #888888 } /* Comment.Hashbang */ .highlight .cm { color: #888888 } /* Comment.Multiline */ .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
/*
 * Copyright (C) 2018-2020 Konsulko Group
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef RADIO_H
#define RADIO_H

#include <memory>
#include <QObject>
#include <QtQml/QQmlContext>

class MessageEngine;
class Message;


class Radio : public QObject
{
    Q_OBJECT
    Q_PROPERTY(unsigned int band READ band WRITE setBand NOTIFY bandChanged)
    Q_PROPERTY(unsigned int amBand READ amBand CONSTANT)
    Q_PROPERTY(unsigned int fmBand READ fmBand CONSTANT)
    Q_PROPERTY(unsigned int frequency READ frequency WRITE setFrequency NOTIFY frequencyChanged)
    Q_PROPERTY(bool playing READ playing NOTIFY playingChanged)
    Q_PROPERTY(bool scanning READ scanning NOTIFY scanningChanged)
    Q_PROPERTY(unsigned int minFrequency READ minFrequency NOTIFY minFrequencyChanged)
    Q_PROPERTY(unsigned int maxFrequency READ maxFrequency NOTIFY maxFrequencyChanged)
    Q_PROPERTY(unsigned int frequencyStep READ frequencyStep NOTIFY frequencyStepChanged)

    public:
        explicit Radio(QUrl &url, QQmlContext *context, QObject * parent = Q_NULLPTR);
        virtual ~Radio();

        unsigned int band() const { return m_band; }
        void setBand(int band);

        unsigned int amBand() const { return 0; }
        unsigned int fmBand() const { return 1; }

        unsigned int frequency() const { return m_frequency; }
        void setFrequency(int frequency);

        unsigned int minFrequency() const { return m_minFrequency; }
        unsigned int maxFrequency() const { return m_maxFrequency; }
        unsigned int frequencyStep() const { return m_frequencyStep; }

        bool playing() const { return m_playing; }

        bool scanning() const { return m_scanning; }

	// controls
        Q_INVOKABLE void start();
        Q_INVOKABLE void stop();
        Q_INVOKABLE void scanForward();
        Q_INVOKABLE void scanBackward();
        Q_INVOKABLE void scanStop();

    signals:
	void bandChanged(int band);
	void frequencyChanged(int frequency);
	void playingChanged(bool status);
	void scanningChanged(bool scanning);
	void minFrequencyChanged(int minFrequency);
	void maxFrequencyChanged(int maxFrequency);
	void frequencyStepChanged(int frequencyStep);

    private:
        std::shared_ptr<MessageEngine> m_mloop;
        QQmlContext *m_context;

	unsigned int m_band;
	unsigned int m_frequency;
	unsigned int m_minFrequency;
	unsigned int m_maxFrequency;
	unsigned int m_frequencyStep;
        bool m_playing;
	bool m_scanning;

        void updateFrequencyBandParameters();
        void onConnected();
        void onDisconnected();
        void onMessageReceived(std::shared_ptr<Message> msg);

        const QStringList events {
            "frequency",
            "station_found",
            "status",
        };
};

#endif // RADIO_H