Experimental for testing - not complete working (audio problem at window change): QuadPiP added for VU+ Solo 4K, VU+ Duo 4k, VU+ Duo 4K SE, VU+ Ultimo 4K, VU+ Uno 4K SE and VU+ Uno 4K. Use --enable-pip and --enable-quadpip for these devices. BUT: VU+ Solo 4K has only support for 3 real video devices.

This commit is contained in:
BPanther
2021-10-17 18:21:53 +02:00
committed by Thilo Graf
parent ce0f9a85f3
commit 7ff4f0fec1
2 changed files with 571 additions and 0 deletions

59
src/gui/quadpip_setup.h Normal file
View File

@@ -0,0 +1,59 @@
/*
QuadPiP setup implementation - Neutrino-GUI
Copyright (C) 2021 Mike Bremer (BPanther)
Homepage: https://forum.mbremer.de
License: GPL
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 2 of the License, or
(at your option) any later version.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __quadpip_setup__
#define __quadpip_setup__
#include <gui/widget/menue.h>
#include <string>
class CQuadPiPSetup : public CMenuTarget
{
private:
int showQuadPiPSetup();
public:
CQuadPiPSetup();
~CQuadPiPSetup();
int exec(CMenuTarget* parent, const std::string & actionKey);
};
class CQuadPiPSetupNotifier : public CChangeObserver
{
public:
bool changeNotify(const neutrino_locale_t, void * Data);
};
class CQuadPiPSetupSelectChannelWidget : public CMenuWidget
{
private:
int InitZapitChannelHelper(CZapitClient::channelsMode mode);
public:
CQuadPiPSetupSelectChannelWidget();
~CQuadPiPSetupSelectChannelWidget();
int exec(CMenuTarget* parent, const std::string & actionKey);
};
#endif