#include <QtGui>
#include "qconsole.h"
#include "qcustomtabwidget.h"
QConsole::QConsole(QWidget *parent) :
QWidget(parent, Qt::FramelessWindowHint)
{
setAttribute(Qt::WA_TranslucentBackground);
setStyleSheet("QWidget { background: rgba(0, 0, 0, 85%); border: 2px solid white; }");
resize(900, 900);
qcustomtabwidget *tw = new qcustomtabwidget(this);
tw->setGeometry(0, 0, 410, 410);
setWindowTitle("arr");
}