diff --git a/src/blackgui/components/audioadvanceddistributedcomponent.cpp b/src/blackgui/components/audioadvanceddistributedcomponent.cpp new file mode 100644 index 000000000..d3a30f59b --- /dev/null +++ b/src/blackgui/components/audioadvanceddistributedcomponent.cpp @@ -0,0 +1,26 @@ +/* Copyright (C) 2019 + * swift project Community / Contributors + * + * This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level + * directory of this distribution. No part of swift project, including this file, may be copied, modified, propagated, + * or distributed except according to the terms contained in the LICENSE file. + */ + +#include "audioadvanceddistributedcomponent.h" +#include "ui_audioadvanceddistributedcomponent.h" + +namespace BlackGui +{ + namespace Components + { + CAudioAdvancedDistributedComponent::CAudioAdvancedDistributedComponent(QWidget *parent) : + QFrame(parent), + ui(new Ui::CAudioAdvancedDistributedComponent) + { + ui->setupUi(this); + } + + CAudioAdvancedDistributedComponent::~CAudioAdvancedDistributedComponent() + { } + } +} diff --git a/src/blackgui/components/audioadvanceddistributedcomponent.h b/src/blackgui/components/audioadvanceddistributedcomponent.h new file mode 100644 index 000000000..a04ac84be --- /dev/null +++ b/src/blackgui/components/audioadvanceddistributedcomponent.h @@ -0,0 +1,40 @@ +/* Copyright (C) 2019 + * swift project Community / Contributors + * + * This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level + * directory of this distribution. No part of swift project, including this file, may be copied, modified, propagated, + * or distributed except according to the terms contained in the LICENSE file. + */ + +//! \file + +#ifndef BLACKGUI_COMPONENTS_AUDIOADVANCEDDISTRIBUTEDCOMPONENT_H +#define BLACKGUI_COMPONENTS_AUDIOADVANCEDDISTRIBUTEDCOMPONENT_H + +#include +#include + +namespace Ui { class CAudioAdvancedDistributedComponent; } +namespace BlackGui +{ + namespace Components + { + //! Adv. and sitributed audio setup + class CAudioAdvancedDistributedComponent : public QFrame + { + Q_OBJECT + + public: + //! Ctor + explicit CAudioAdvancedDistributedComponent(QWidget *parent = nullptr); + + //! Dtor + virtual ~CAudioAdvancedDistributedComponent() override; + + private: + QScopedPointer ui; + }; + } +} + +#endif // guard diff --git a/src/blackgui/components/audioadvanceddistributedcomponent.ui b/src/blackgui/components/audioadvanceddistributedcomponent.ui new file mode 100644 index 000000000..b71650a99 --- /dev/null +++ b/src/blackgui/components/audioadvanceddistributedcomponent.ui @@ -0,0 +1,17 @@ + + + CAudioAdvancedDistributedComponent + + + + 0 + 0 + 640 + 480 + + + + Frame + + + diff --git a/src/blackgui/components/cockpitinfoareacomponent.ui b/src/blackgui/components/cockpitinfoareacomponent.ui index 1718285ac..6dafcd630 100644 --- a/src/blackgui/components/cockpitinfoareacomponent.ui +++ b/src/blackgui/components/cockpitinfoareacomponent.ui @@ -6,7 +6,7 @@ 0 0 - 99 + 248 123 @@ -190,6 +190,67 @@ + + + Qt::BottomDockWidgetArea + + + Adv./distributed audio + + + 8 + + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + 0 + + + 2 + + + 0 + + + 0 + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + @@ -210,6 +271,12 @@
blackgui/components/audiodevicevolumesetupcomponent.h
1
+ + BlackGui::Components::CAudioAdvancedDistributedComponent + QFrame +
blackgui/components/audioadvanceddistributedcomponent.h
+ 1 +