-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
47 lines (39 loc) · 954 Bytes
/
mainwindow.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
38
39
40
41
42
43
44
45
46
47
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "noteswriter.h"
#include "notesdoodle.h"
#include <QDesktopServices>
#include <QUrl>
#include <QPixmap>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
// Opnes MyNotesWriter Window
void MainWindow::on_pushButton_clicked()
{
noteswriter = new NotesWriter(this);
noteswriter->show();
}
// Opnes MyNotesWriter Window
void MainWindow::on_pushButton_2_clicked()
{
notesdoodle = new NotesDoodle(this);
notesdoodle->show();
}
// Opnes Google
void MainWindow::on_pushButton_3_clicked()
{
QDesktopServices::openUrl(QUrl("https://www.google.com/"));
}
// Opening University of Plymouth website
void MainWindow::on_pushButton_4_clicked()
{
QDesktopServices::openUrl(QUrl("https://dle.plymouth.ac.uk/"));
}