WSJT-X/messages.h
Joe Taylor 04dcf0a528 Major changes to the MAP65 branch. This branch is now a copy of
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
2012-05-22 14:28:39 +00:00

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