mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
|
#include "qqtwindow.h"
|
|||
|
#include "ui_qqtwindow.h"
|
|||
|
#include "qqtobjectfactory.h"
|
|||
|
#include "qqtgui-qt.h"
|
|||
|
#include "qqtcore.h"
|
|||
|
#include "qqtwidgets.h"
|
|||
|
#include "QtWebKit/QWebView"
|
|||
|
#include <QFile>
|
|||
|
|
|||
|
QQTWindow::QQTWindow(QWidget *parent) :
|
|||
|
QStackedWidget(parent),
|
|||
|
ui(new Ui::QQTWindow)
|
|||
|
{
|
|||
|
ui->setupUi(this);
|
|||
|
|
|||
|
QQTObjectFactory::registerObject(this);
|
|||
|
|
|||
|
#ifdef __MIPS_LINUX__
|
|||
|
/*
|
|||
|
* 这里只要frameless足够
|
|||
|
*/
|
|||
|
setWindowFlags(Qt::FramelessWindowHint);
|
|||
|
/*
|
|||
|
* 控件背景透明,显示设置的图片背景或者下一级背景。
|
|||
|
*/
|
|||
|
setAttribute(Qt::WA_TranslucentBackground, true);
|
|||
|
#endif
|
|||
|
//setFixedSize(1024, 600);
|
|||
|
moveCenter(this);
|
|||
|
|
|||
|
connect(ui->lineEdit, SIGNAL(btnClicked()),
|
|||
|
this, SLOT(brow()));
|
|||
|
|
|||
|
connect(ui->textEdit, SIGNAL(textChanged()),
|
|||
|
this, SLOT(refresh()));
|
|||
|
|
|||
|
ui->textEdit->setMinimumWidth(500);
|
|||
|
}
|
|||
|
|
|||
|
QQTWindow::~QQTWindow()
|
|||
|
{
|
|||
|
delete ui;
|
|||
|
}
|
|||
|
|
|||
|
void QQTWindow::brow()
|
|||
|
{
|
|||
|
ui->widget->load(QUrl(ui->lineEdit->text()));
|
|||
|
}
|
|||
|
|
|||
|
void QQTWindow::refresh()
|
|||
|
{
|
|||
|
ui->widget_2->setHtml(ui->textEdit->toPlainText());
|
|||
|
}
|