Modified copyright notice.
This commit is contained in:
@@ -1,51 +1,66 @@
|
||||
/***************************************************************************
|
||||
|
||||
BionxControl
|
||||
Copyright © 2025 christoph holzheuer
|
||||
christoph.holzheuer@gmail.com
|
||||
BionxControl
|
||||
Copyright © 2025 christoph holzheuer
|
||||
christoph.holzheuer@gmail.com
|
||||
|
||||
Using:
|
||||
Using:
|
||||
|
||||
BigXionFlasher USB V 0.2.4 rev. 97
|
||||
© 2011-2013 by Thomas Koenig <info@bigxionflasher.org>
|
||||
@see www.bigxionflasher.org
|
||||
mhs_can_drv.c
|
||||
© 2011 - 2023 by MHS-Elektronik GmbH & Co. KG, Germany
|
||||
Klaus Demlehner, klaus@mhs-elektronik.de
|
||||
@see www.mhs-elektronik.de
|
||||
|
||||
Bionx Bike Info
|
||||
© 2018 Thorsten Schmidt (tschmidt@ts-soft.de)
|
||||
@see www.ts-soft.de
|
||||
Based on Bionx data type descriptions from:
|
||||
|
||||
mhs_can_drv.c 3.00
|
||||
© 2011 - 2015 by MHS-Elektronik GmbH & Co. KG, Germany
|
||||
Demlehner Klaus, info@mhs-elektronik.de
|
||||
@see www.mhs-elektronik.de
|
||||
BigXionFlasher USB V 0.2.4 rev. 97
|
||||
© 2011-2013 by Thomas Koenig <info@bigxionflasher.org>
|
||||
@see www.bigxionflasher.org
|
||||
|
||||
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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
@see https://github.com/bikemike/bionx-bikeinfo
|
||||
Bionx Bike Info
|
||||
© 2018 Thorsten Schmidt (tschmidt@ts-soft.de)
|
||||
@see www.ts-soft.de
|
||||
|
||||
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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
@see https://github.com/bikemike/bionx-bikeinfo
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include <bcmainwindow.h>
|
||||
#include <bcitemdelegate.h>
|
||||
#include <ui_bcmainwindow.h>
|
||||
|
||||
|
||||
/**
|
||||
* @brief Das Mainwindow erzeugen
|
||||
* @param parent
|
||||
*/
|
||||
|
||||
BCMainWindow::BCMainWindow(QWidget *parent)
|
||||
: QMainWindow(parent)
|
||||
{
|
||||
setupUi(this);
|
||||
|
||||
// Die actions an die Buttons binden
|
||||
_motorButton->setDefaultAction( _motorAction);
|
||||
_consoleButton->setDefaultAction( _consoleAction );
|
||||
_batteryButton->setDefaultAction( _batteryAction );
|
||||
_pimpButton->setDefaultAction( _pimpAction);
|
||||
|
||||
_valueManager.loadXmlBikeData();
|
||||
auto model = _valueManager.getModel( BCDevice::ID::Console );
|
||||
/*
|
||||
// die Daten des eBikes laden
|
||||
_dataManager.loadXmlBikeData();
|
||||
|
||||
// Die Daten und auch die Datenmodelle für die Views werden
|
||||
// vom DataManager verwaltet und an die Views weitergereicht.
|
||||
|
||||
auto model = _dataManager.getModel( BCDevice::ID::Console );
|
||||
_consolePanel->getValueView()->setModel( model.v );
|
||||
|
||||
/*
|
||||
if( model)
|
||||
{
|
||||
_valueView->setModel( *model );
|
||||
@@ -68,13 +83,13 @@ BCMainWindow::BCMainWindow(QWidget *parent)
|
||||
|
||||
// Highlight mit Fade-Out:
|
||||
//_delegate->onHighlightRow(2); // 2 Sekunden Fade
|
||||
BCTransmitter* transmitter = _valueManager.getTransmitter();
|
||||
BCTransmitter* transmitter = _dataManager.getTransmitter();
|
||||
|
||||
// besser: model::emit dataChanged
|
||||
// also: emit dataChanged(index, index, {Qt::DisplayRole, Qt::EditRole, ValueRole});
|
||||
connect( &_valueManager, &BCDataManager::valueTouched, _delegate, &BCItemDelegate::onHighlightRow );
|
||||
connect( &_dataManager, &BCDataManager::valueTouched, _delegate, &BCItemDelegate::onHighlightRow );
|
||||
connect( _connectButton, &QPushButton::clicked, transmitter, &BCTransmitter::onToggleConnectionState );
|
||||
connect( _syncButton, &QPushButton::clicked, &_valueManager, &BCDataManager::onSyncFromDevice );
|
||||
connect( _syncButton, &QPushButton::clicked, &_dataManager, &BCDataManager::onSyncFromDevice );
|
||||
*/
|
||||
|
||||
}
|
||||
@@ -82,10 +97,38 @@ BCMainWindow::BCMainWindow(QWidget *parent)
|
||||
BCMainWindow::~BCMainWindow()
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
void BCMainWindow::initData()
|
||||
{
|
||||
// Die Daten und auch die Datenmodelle für die Views werden
|
||||
// vom DataManager verwaltet und an die Views weitergereicht.
|
||||
|
||||
auto setDeviceModel = [&]( BCDevice::ID deviceID, BCDevicePanel* panel )
|
||||
{
|
||||
auto model = _dataManager.getModel( deviceID );
|
||||
if( model)
|
||||
{
|
||||
QAbstractItemView* valueView = panel->getValueView();
|
||||
valueView->setModel( *model );
|
||||
//valueView->resizeColumnsToContents();
|
||||
//_valueView->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
_dataManager.loadXmlBikeData();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
void BCMainWindow::onConnectButtonToggled(bool checked )
|
||||
{
|
||||
//_valueManager.setDriverConnectionState( checked );
|
||||
//_dataManager.setDriverConnectionState( checked );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user