Menu

[r355]: / branches / jake++ / QConsole.cpp  Maximize  Restore  History

Download this file

16 lines (13 with data), 453 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#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");
}