mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
04dcf0a528
MAP65 v2.3.0, r631, as checked out from the SVN repository on pulsar.princeton.edu. If all goes well with this commit, subsequent MAP65 development will use the Berlios repository. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@2461 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
41 lines
676 B
C++
41 lines
676 B
C++
#ifndef MESSAGES_H
|
|
#define MESSAGES_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class Messages;
|
|
}
|
|
|
|
class Messages : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Messages(QWidget *parent = 0);
|
|
void setText(QString t);
|
|
void setColors(QString t);
|
|
|
|
~Messages();
|
|
|
|
signals:
|
|
void click2OnCallsign(QString hiscall, QString t2);
|
|
|
|
private slots:
|
|
void selectCallsign2(bool ctrl);
|
|
void on_checkBox_stateChanged(int arg1);
|
|
|
|
private:
|
|
Ui::Messages *ui;
|
|
QString m_t;
|
|
QString m_colorBackground;
|
|
QString m_color0;
|
|
QString m_color1;
|
|
QString m_color2;
|
|
QString m_color3;
|
|
|
|
bool m_cqOnly;
|
|
};
|
|
|
|
#endif // MESSAGES_H
|