3 changed files with 58 additions and 0 deletions
@ -0,0 +1,14 @@
@@ -0,0 +1,14 @@
|
||||
#include "SlugsPadCameraControl.h" |
||||
#include "ui_SlugsPadCameraControl.h" |
||||
|
||||
SlugsPadCameraControl::SlugsPadCameraControl(QWidget *parent) : |
||||
QWidget(parent), |
||||
ui(new Ui::SlugsPadCameraControl) |
||||
{ |
||||
ui->setupUi(this); |
||||
} |
||||
|
||||
SlugsPadCameraControl::~SlugsPadCameraControl() |
||||
{ |
||||
delete ui; |
||||
} |
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
#ifndef SLUGSPADCAMERACONTROL_H |
||||
#define SLUGSPADCAMERACONTROL_H |
||||
|
||||
#include <QWidget> |
||||
|
||||
namespace Ui { |
||||
class SlugsPadCameraControl; |
||||
} |
||||
|
||||
class SlugsPadCameraControl : public QWidget |
||||
{ |
||||
Q_OBJECT |
||||
|
||||
public: |
||||
explicit SlugsPadCameraControl(QWidget *parent = 0); |
||||
~SlugsPadCameraControl(); |
||||
|
||||
private: |
||||
Ui::SlugsPadCameraControl *ui; |
||||
}; |
||||
|
||||
#endif // SLUGSPADCAMERACONTROL_H
|
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<ui version="4.0"> |
||||
<class>SlugsPadCameraControl</class> |
||||
<widget class="QWidget" name="SlugsPadCameraControl"> |
||||
<property name="geometry"> |
||||
<rect> |
||||
<x>0</x> |
||||
<y>0</y> |
||||
<width>400</width> |
||||
<height>300</height> |
||||
</rect> |
||||
</property> |
||||
<property name="windowTitle"> |
||||
<string>Form</string> |
||||
</property> |
||||
<property name="styleSheet"> |
||||
<string notr="true">background-color: rgb(255, 170, 0);</string> |
||||
</property> |
||||
</widget> |
||||
<resources/> |
||||
<connections/> |
||||
</ui> |
Loading…
Reference in new issue