mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-09-07 20:54:24 +00:00
33 lines
566 B
C++
33 lines
566 B
C++
#ifndef LOCATIONINFODIALOG_H
|
|
#define LOCATIONINFODIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
|
|
namespace Ui {
|
|
class LocationInfoDialog;
|
|
}
|
|
|
|
class LocationInfoDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit LocationInfoDialog(QWidget *parent = 0);
|
|
~LocationInfoDialog();
|
|
|
|
void setInfoLabelString(QString label);
|
|
quint16 getAddress();
|
|
QString getInfo();
|
|
int getSymbolSize();
|
|
|
|
void showSizeWidgets(bool show);
|
|
|
|
protected:
|
|
|
|
private:
|
|
Ui::LocationInfoDialog *ui;
|
|
};
|
|
|
|
#endif // LOCATIONINFODIALOG_H
|