mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 23:41:16 -05:00
37 lines
715 B
C++
37 lines
715 B
C++
#ifndef BASICCHANNELSETTINGSDIALOG_H
|
|
#define BASICCHANNELSETTINGSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "export.h"
|
|
|
|
namespace Ui {
|
|
class BasicChannelSettingsDialog;
|
|
}
|
|
|
|
class ChannelMarker;
|
|
|
|
class SDRGUI_API BasicChannelSettingsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BasicChannelSettingsDialog(ChannelMarker* marker, QWidget *parent = 0);
|
|
~BasicChannelSettingsDialog();
|
|
bool hasChanged() const { return m_hasChanged; }
|
|
|
|
private slots:
|
|
void on_colorBtn_clicked();
|
|
void accept();
|
|
|
|
private:
|
|
Ui::BasicChannelSettingsDialog *ui;
|
|
ChannelMarker* m_channelMarker;
|
|
QColor m_color;
|
|
bool m_hasChanged;
|
|
|
|
void paintColor();
|
|
};
|
|
|
|
#endif // BASICCHANNELSETTINGSDIALOG_H
|