mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| // Copyright (C) 2022 Jon Beniston, M7RCE <jon@beniston.com>                     //
 | |
| //                                                                               //
 | |
| // 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 as version 3 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 V3 for more details.                               //
 | |
| //                                                                               //
 | |
| // You should have received a copy of the GNU General Public License             //
 | |
| // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | |
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #include <QVBoxLayout>
 | |
| #include <QHBoxLayout>
 | |
| #include <QPushButton>
 | |
| #include <QDebug>
 | |
| #include <QColorDialog>
 | |
| 
 | |
| #include "colordialog.h"
 | |
| 
 | |
| ColorDialog::ColorDialog(const QColor &initial, QWidget *parent) :
 | |
|     QDialog(parent)
 | |
| {
 | |
|     m_colorDialog = new QColorDialog();
 | |
|     m_colorDialog->setWindowFlags(Qt::Widget);
 | |
|     m_colorDialog->setOptions(QColorDialog::ShowAlphaChannel | QColorDialog::NoButtons | QColorDialog::DontUseNativeDialog);
 | |
|     m_colorDialog->setCurrentColor(initial); // Needs to be set after setOptions on Linux, which seems to overwrite QColorDialog(initial)
 | |
|     QVBoxLayout *v = new QVBoxLayout(this);
 | |
|     v->addWidget(m_colorDialog);
 | |
|     QHBoxLayout *h = new QHBoxLayout();
 | |
|     m_noColorButton = new QPushButton("No Color");
 | |
|     m_cancelButton = new QPushButton("Cancel");
 | |
|     m_okButton = new QPushButton("OK");
 | |
|     h->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Expanding));
 | |
|     h->addWidget(m_noColorButton);
 | |
|     h->addWidget(m_cancelButton);
 | |
|     h->addWidget(m_okButton);
 | |
|     v->addLayout(h);
 | |
| 
 | |
|     connect(m_noColorButton, &QPushButton::clicked, this, &ColorDialog::noColorClicked);
 | |
|     connect(m_cancelButton, &QPushButton::clicked, this, &QDialog::reject);
 | |
|     connect(m_okButton, &QPushButton::clicked, this, &QDialog::accept);
 | |
| 
 | |
|     m_noColorSelected = false;
 | |
| }
 | |
| 
 | |
| QColor ColorDialog::selectedColor() const
 | |
| {
 | |
|     return m_colorDialog->selectedColor();
 | |
| }
 | |
| 
 | |
| bool ColorDialog::noColorSelected() const
 | |
| {
 | |
|     return m_noColorSelected;
 | |
| }
 | |
| 
 | |
| void ColorDialog::accept()
 | |
| {
 | |
|     m_colorDialog->accept();
 | |
|     QDialog::accept();
 | |
| }
 | |
| 
 | |
| void ColorDialog::noColorClicked()
 | |
| {
 | |
|     m_noColorSelected = true;
 | |
|     accept();
 | |
| }
 |