picture dialog improved
This commit is contained in:
parent
5e1d5d14bf
commit
4da12a2796
3 changed files with 48 additions and 6 deletions
|
@ -61,3 +61,8 @@ void PictureDialog::setJsonString(SnapmaticPicture *picture)
|
|||
|
||||
ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID));
|
||||
}
|
||||
|
||||
void PictureDialog::on_cmdClose_clicked()
|
||||
{
|
||||
this->close();
|
||||
}
|
||||
|
|
|
@ -35,6 +35,9 @@ public:
|
|||
void setJsonString(SnapmaticPicture *picture);
|
||||
~PictureDialog();
|
||||
|
||||
private slots:
|
||||
void on_cmdClose_clicked();
|
||||
|
||||
private:
|
||||
Ui::PictureDialog *ui;
|
||||
QString jsonDrawString;
|
||||
|
|
|
@ -34,13 +34,47 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="labJSON">
|
||||
<property name="text">
|
||||
<string>Location: X: %1 Y: %2 Z: %3
|
||||
Players: %4
|
||||
Crew ID: %5</string>
|
||||
<layout class="QHBoxLayout" name="hlJSON">
|
||||
<property name="leftMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
</widget>
|
||||
<property name="topMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="labJSON">
|
||||
<property name="text">
|
||||
<string><span style=" font-weight:600;">Location:</span> X: %1, Y: %2, Z: %3 <br><span style=" font-weight:600;">Players:</span> %4<br><span style=" font-weight:600;">Crew ID:</span> %5</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="hsJSON">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="cmdClose">
|
||||
<property name="text">
|
||||
<string>Close</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
|
|
Loading…
Reference in a new issue