Files @ 1c96dc8ca653
Branch filter:

Location: tempo-plotter/src/snapshot.cpp - annotation

Hasan Yavuz ÖZDERYA
remove dependency on svg and opengl modules of qt
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
b006e7ce4816
b006e7ce4816
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
40b3b165830c
5bfba6fe10cf
bdc33b5c53c6
bdc33b5c53c6
52acb9a759b7
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
40b3b165830c
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
40b3b165830c
40b3b165830c
40b3b165830c
40b3b165830c
40b3b165830c
40b3b165830c
40b3b165830c
40b3b165830c
40b3b165830c
40b3b165830c
40b3b165830c
40b3b165830c
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
bdc33b5c53c6
b006e7ce4816
110ac52a6894
110ac52a6894
110ac52a6894
110ac52a6894
110ac52a6894
110ac52a6894
110ac52a6894
110ac52a6894
110ac52a6894
110ac52a6894
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
807cd6bb1572
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
52acb9a759b7
52acb9a759b7
52acb9a759b7
40b3b165830c
52acb9a759b7
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
b006e7ce4816
52acb9a759b7
52acb9a759b7
52acb9a759b7
52acb9a759b7
52acb9a759b7
/*
  Copyright © 2015 Hasan Yavuz Özderya

  This file is part of serialplot.

  serialplot 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 3 of the License, or
  (at your option) any later version.

  serialplot 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 serialplot.  If not, see <http://www.gnu.org/licenses/>.
*/

#include <stddef.h>
#include <QSaveFile>
#include <QTextStream>

#include "snapshot.h"
#include "snapshotview.h"

Snapshot::Snapshot(QMainWindow* parent, QString name) :
    QObject(parent),
    _showAction(this),
    _deleteAction("&Delete", this)
{
    _name = name;
    _saved = false;

    view = NULL;
    mainWindow = parent;
    _showAction.setText(displayName());
    connect(&_showAction, &QAction::triggered, this, &Snapshot::show);

    _deleteAction.setToolTip(QString("Delete ") + _name);
    connect(&_deleteAction, &QAction::triggered, this, &Snapshot::onDeleteTriggered);
}

Snapshot::~Snapshot()
{
    if (view != NULL)
    {
        delete view;
    }
}

QAction* Snapshot::showAction()
{
    return &_showAction;
}

QAction* Snapshot::deleteAction()
{
    return &_deleteAction;
}

void Snapshot::show()
{
    if (view == NULL)
    {
        view = new SnapshotView(mainWindow, this);
        connect(view, &SnapshotView::closed, this, &Snapshot::viewClosed);
    }
    view->show();
    view->activateWindow();
    view->raise();
}

void Snapshot::viewClosed()
{
    view->deleteLater();
    view = NULL;
}

void Snapshot::onDeleteTriggered()
{
    emit deleteRequested(this);
}

QString Snapshot::name()
{
    return _name;
}

QString Snapshot::displayName()
{
    if (_saved)
    {
        return name();
    }
    else
    {
        return name() + "*";
    }
}

void Snapshot::setName(QString name)
{
    _name = name;
    _showAction.setText(_name);
    emit nameChanged(this);
}

void Snapshot::setChannelNames(QStringList names)
{
    _channelNames = names;
}

QString Snapshot::channelName(unsigned channel)
{
    return _channelNames[channel];
}

void Snapshot::save(QString fileName)
{
    // TODO: remove code duplication (MainWindow::onExportCsv)
    QSaveFile file(fileName);

    if (file.open(QIODevice::WriteOnly | QIODevice::Text))
    {
        QTextStream fileStream(&file);

        unsigned numOfChannels = data.size();
        unsigned numOfSamples = data[0].size();

        // print header
        for (unsigned int ci = 0; ci < numOfChannels; ci++)
        {
            fileStream << channelName(ci);
            if (ci != numOfChannels-1) fileStream << ",";
        }
        fileStream << '\n';

        // print rows
        for (unsigned int i = 0; i < numOfSamples; i++)
        {
            for (unsigned int ci = 0; ci < numOfChannels; ci++)
            {
                fileStream << data[ci][i].y();
                if (ci != numOfChannels-1) fileStream << ",";
            }
            fileStream << '\n';
        }

        if (!file.commit())
        {
            qCritical() << "File save error during snapshot save: " << file.error();
        }
        else
        {
            _saved = true;
            _showAction.setText(displayName());
        }
    }
    else
    {
        qCritical() << "File open error during snapshot save: " << file.error();
    }
}

bool Snapshot::isSaved()
{
    return _saved;
}