forked from samnazarko/osmc-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser.cpp
37 lines (33 loc) · 947 Bytes
/
browser.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* (c) 2014-205 Sam Nazarko
*/
#include "browser.h"
#include "ui_browser.h"
#include <QDebug>
#include <QPushButton>
#include <QRect>
#include <QWebView>
#include <QTabWidget>
#include "browsertab.h"
browser::browser(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::browser)
{
ui->setupUi(this);
/* first, remove all tabs, coming from the ui designer. */
ui->tabWidget->removeTab(1);
ui->tabWidget->removeTab(0);
/* now add our initial tab */
ui->tabWidget->addTab(new BrowserTab(ui->tabWidget), BrowserTab::INITIAL_TITLE);
this->keyboard = new widgetKeyBoard(false);
this->keyboard->setZoomFacility(true);
this->keyboard->enableSwitchingEcho(false); // enable possibility to change echo through keyboard
this->keyboard->createKeyboard(); // only create keyboard
this->keyboard->show(this);
}
browser::~browser()
{
delete this->keyboard;
delete ui;
}