Ref T192, formatting and minor tweaks

This commit is contained in:
Klaus Basan
2017-11-18 18:39:56 +01:00
parent 1386fcd0db
commit 63fbeecc00
10 changed files with 25 additions and 25 deletions

View File

@@ -101,7 +101,7 @@ namespace BlackSample
// The << operator is used to add the parameters for the slot // The << operator is used to add the parameters for the slot
const QDateTime dtnow = QDateTime::currentDateTimeUtc(); const QDateTime dtnow = QDateTime::currentDateTimeUtc();
const QString msg = QString("Message at %1").arg(dtnow.toString("MM/dd/yyyy @ hh:mm:ss")); const QString msg = QString("Con.: %1, message at %2").arg(connection.name(), dtnow.toString("MM/dd/yyyy @ hh:mm:ss"));
m << msg; m << msg;
// We send this as a non-replying message. This is used for sending errors, replys, signals. // We send this as a non-replying message. This is used for sending errors, replys, signals.

View File

@@ -14,11 +14,13 @@
#include "blackmisc/dbusserver.h" #include "blackmisc/dbusserver.h"
using namespace BlackCore; using namespace BlackCore;
using namespace BlackMisc;
namespace BlackCore namespace BlackCore
{ {
namespace Context namespace Context
{ {
IContextNetwork *IContextNetwork::create(CCoreFacade *runtime, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &connection) IContextNetwork *IContextNetwork::create(CCoreFacade *runtime, CCoreFacadeConfig::ContextMode mode, CDBusServer *server, QDBusConnection &connection)
{ {
switch (mode) switch (mode)
{ {
@@ -26,7 +28,7 @@ namespace BlackCore
case CCoreFacadeConfig::LocalInDBusServer: case CCoreFacadeConfig::LocalInDBusServer:
return (new CContextNetwork(mode, runtime))->registerWithDBus(server); return (new CContextNetwork(mode, runtime))->registerWithDBus(server);
case CCoreFacadeConfig::Remote: case CCoreFacadeConfig::Remote:
return new CContextNetworkProxy(BlackMisc::CDBusServer::coreServiceName(), connection, mode, runtime); return new CContextNetworkProxy(CDBusServer::coreServiceName(), connection, mode, runtime);
case CCoreFacadeConfig::NotUsed: case CCoreFacadeConfig::NotUsed:
default: default:
return new CContextNetworkEmpty(runtime); return new CContextNetworkEmpty(runtime);

View File

@@ -40,7 +40,7 @@ namespace BlackCore
} }
} }
const BlackMisc::Aviation::CAircraftSituation &IContextOwnAircraft::getDefaultSituation() const CAircraftSituation &IContextOwnAircraft::getDefaultSituation()
{ {
static const CAircraftSituation situation( static const CAircraftSituation situation(
CCoordinateGeodetic( CCoordinateGeodetic(
@@ -52,7 +52,7 @@ namespace BlackCore
return situation; return situation;
} }
BlackMisc::Simulation::CAircraftModel IContextOwnAircraft::getDefaultOwnAircraftModel() CAircraftModel IContextOwnAircraft::getDefaultOwnAircraftModel()
{ {
// if all fails // if all fails
static const CAircraftModel defaultModel( static const CAircraftModel defaultModel(

View File

@@ -75,6 +75,9 @@ namespace BlackCore
//! Facade and context shutting down //! Facade and context shutting down
bool isShuttingDown() const { return m_shuttingDown; } bool isShuttingDown() const { return m_shuttingDown; }
//! Parse command line in all contexts
bool parseCommandLine(const QString &commandLine, const BlackMisc::CIdentifier &originator);
// ------- Context as interface, normal way to access a context // ------- Context as interface, normal way to access a context
//! Context for network //! Context for network
@@ -158,10 +161,6 @@ namespace BlackCore
//! Register metadata //! Register metadata
static void registerMetadata(); static void registerMetadata();
public slots:
//! Parse command line in all contexts
bool parseCommandLine(const QString &commandLine, const BlackMisc::CIdentifier &originator);
private: private:
bool m_initalized = false; //!< flag if already initialized bool m_initalized = false; //!< flag if already initialized
bool m_shuttingDown = false; //!< flag if shutting down bool m_shuttingDown = false; //!< flag if shutting down

View File

@@ -86,7 +86,7 @@ namespace BlackGui
ui->led_DBus->setValues(CLedWidget::Yellow, CLedWidget::Black, shape, "DBus connected", "DBus disconnected", 14); ui->led_DBus->setValues(CLedWidget::Yellow, CLedWidget::Black, shape, "DBus connected", "DBus disconnected", 14);
ui->led_Network->setValues(CLedWidget::Yellow, CLedWidget::Black, shape, "Network connected", "Network disconnected", 14); ui->led_Network->setValues(CLedWidget::Yellow, CLedWidget::Black, shape, "Network connected", "Network disconnected", 14);
ui->led_Simulator->setValues(CLedWidget::Yellow, CLedWidget::Black, CLedWidget::Blue, shape, "Simulator running", "Simulator disconnected", "Simulator connected", 14); ui->led_Simulator->setValues(CLedWidget::Yellow, CLedWidget::Black, CLedWidget::Blue, shape, "Simulator running", "Simulator disconnected", "Simulator connected", 14);
ui->led_MapperReady->setValues(CLedWidget::Yellow, CLedWidget::Black, CLedWidget::Blue, shape, "Mapper ready", "Mappings loading", "Mappings loading", 14); ui->led_MapperReady->setValues(CLedWidget::Yellow, CLedWidget::Black, CLedWidget::Blue, shape, "Mapper ready", "Mappings not yet loaded", "Mappings not yet loaded", 14);
shape = CLedWidget::Rounded; shape = CLedWidget::Rounded;
ui->led_Ptt->setValues(CLedWidget::Yellow, CLedWidget::Black, shape, "Ptt", "Silence", 18); ui->led_Ptt->setValues(CLedWidget::Yellow, CLedWidget::Black, shape, "Ptt", "Silence", 18);

View File

@@ -63,11 +63,14 @@ namespace BlackGui
//! Constructor //! Constructor
explicit CLoginComponent(QWidget *parent = nullptr); explicit CLoginComponent(QWidget *parent = nullptr);
//! Destructor
virtual ~CLoginComponent();
//! Automatically popup //! Automatically popup
void setAutoPopupWizad(bool autoPopup); void setAutoPopupWizad(bool autoPopup);
//! Destructor //! Main info area changed
virtual ~CLoginComponent(); void mainInfoAreaChanged(const QWidget *currentWidget);
signals: signals:
//! Login //! Login
@@ -82,10 +85,6 @@ namespace BlackGui
//! Relevant login data changed (digest version) //! Relevant login data changed (digest version)
void loginDataChangedDigest(); void loginDataChangedDigest();
public slots:
//! Main info area changed
void mainInfoAreaChanged(const QWidget *currentWidget);
private: private:
//! Login cancelled //! Login cancelled
void loginCancelled(); void loginCancelled();

View File

@@ -101,7 +101,8 @@ namespace BlackGui
void CMainKeypadAreaComponent::buttonSelected() void CMainKeypadAreaComponent::buttonSelected()
{ {
QPushButton *senderButton = static_cast<QPushButton *>(QObject::sender()); QPushButton *senderButton = static_cast<QPushButton *>(QObject::sender());
Q_ASSERT(senderButton); Q_ASSERT_X(senderButton, Q_FUNC_INFO, "No sender button");
Q_ASSERT_X(sGui, Q_FUNC_INFO, "Need sGui");
if (!senderButton) { return; } if (!senderButton) { return; }
const CMainInfoAreaComponent::InfoArea ia = buttonToMainInfoArea(senderButton); const CMainInfoAreaComponent::InfoArea ia = buttonToMainInfoArea(senderButton);
if (ia != CMainInfoAreaComponent::InfoAreaNone) if (ia != CMainInfoAreaComponent::InfoAreaNone)

View File

@@ -37,8 +37,8 @@ namespace BlackGui
CStyleSheetUtility::CStyleSheetUtility(BlackMisc::Restricted<CGuiApplication>, QObject *parent) : QObject(parent) CStyleSheetUtility::CStyleSheetUtility(BlackMisc::Restricted<CGuiApplication>, QObject *parent) : QObject(parent)
{ {
this->read(); this->read();
connect(&this->m_fileWatcher, &QFileSystemWatcher::directoryChanged, this, &CStyleSheetUtility::ps_qssDirectoryChanged); connect(&this->m_fileWatcher, &QFileSystemWatcher::directoryChanged, this, &CStyleSheetUtility::qssDirectoryChanged);
connect(&this->m_fileWatcher, &QFileSystemWatcher::fileChanged, this, &CStyleSheetUtility::ps_qssDirectoryChanged); connect(&this->m_fileWatcher, &QFileSystemWatcher::fileChanged, this, &CStyleSheetUtility::qssDirectoryChanged);
} }
const QString &CStyleSheetUtility::fontStyleAsString(const QFont &font) const QString &CStyleSheetUtility::fontStyleAsString(const QFont &font)
@@ -465,7 +465,7 @@ namespace BlackGui
} }
} }
void CStyleSheetUtility::ps_qssDirectoryChanged(const QString &file) void CStyleSheetUtility::qssDirectoryChanged(const QString &file)
{ {
Q_UNUSED(file); Q_UNUSED(file);
this->read(); this->read();

View File

@@ -162,11 +162,10 @@ namespace BlackGui
//! \deprecated use BlackGui::CGuiApplication::styleSheetsChanged //! \deprecated use BlackGui::CGuiApplication::styleSheetsChanged
void styleSheetsChanged(); void styleSheetsChanged();
private slots:
//! File changed
void ps_qssDirectoryChanged(const QString &file);
private: private:
//! File changed
void qssDirectoryChanged(const QString &file);
//! Filename based on OS/existing files //! Filename based on OS/existing files
static QString getQssFileName(const QString &fileName); static QString getQssFileName(const QString &fileName);

View File

@@ -26,7 +26,7 @@ int main(int argc, char *argv[])
CGuiApplication::highDpiScreenSupport(); CGuiApplication::highDpiScreenSupport();
QApplication qa(argc, argv); QApplication qa(argc, argv);
Q_UNUSED(qa); // application init needed Q_UNUSED(qa); // application init needed
CSwiftGuiStdApplication a; CSwiftGuiStdApplication a; // application with contexts
a.setSignalStartupAutomatically(false); // application will signal startup on its own a.setSignalStartupAutomatically(false); // application will signal startup on its own
a.splashScreen(CIcons::swift256()); a.splashScreen(CIcons::swift256());
if (!a.parseAndSynchronizeSetup()) { return EXIT_FAILURE; } if (!a.parseAndSynchronizeSetup()) { return EXIT_FAILURE; }