StudioWindow modifications
This commit is contained in:
parent
5fb027ea82
commit
e9ab162b56
|
|
@ -1,8 +1,8 @@
|
||||||
#include "studiowindow.hpp"
|
#include <client/studio/StudioWindow.hpp>
|
||||||
|
|
||||||
StudioWindow::StudioWindow()
|
StudioWindow::StudioWindow()
|
||||||
{
|
{
|
||||||
setWindowTitle(QString("RBXNu Studio"));
|
setWindowTitle(QString("RBXNU Studio"));
|
||||||
setWindowIcon(QIcon(":/content/images/icon.png"));
|
setWindowIcon(QIcon(":/content/images/icon.png"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
#ifndef __CLIENT_STUDIO_STUDIOWINDOW_HPP__
|
|
||||||
#define __CLIENT_STUDIO_STUDIOWINDOW_HPP__
|
|
||||||
|
|
||||||
#include <QMainWindow>
|
|
||||||
#include <QOpenGLWidget>
|
|
||||||
|
|
||||||
class StudioWindow : public QMainWindow
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
StudioWindow();
|
|
||||||
protected:
|
|
||||||
void closeEvent(QCloseEvent* event);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <QMainWindow>
|
||||||
|
#include <QOpenGLWidget>
|
||||||
|
|
||||||
|
class StudioWindow : public QMainWindow
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
StudioWindow();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void closeEvent(QCloseEvent* event);
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue