diff --git a/homework-day2-2/.gitignore b/homework-day2-2/.gitignore new file mode 100644 index 0000000..fab7372 --- /dev/null +++ b/homework-day2-2/.gitignore @@ -0,0 +1,73 @@ +# This file is used to ignore files which are generated +# ---------------------------------------------------------------------------- + +*~ +*.autosave +*.a +*.core +*.moc +*.o +*.obj +*.orig +*.rej +*.so +*.so.* +*_pch.h.cpp +*_resource.rc +*.qm +.#* +*.*# +core +!core/ +tags +.DS_Store +.directory +*.debug +Makefile* +*.prl +*.app +moc_*.cpp +ui_*.h +qrc_*.cpp +Thumbs.db +*.res +*.rc +/.qmake.cache +/.qmake.stash + +# qtcreator generated files +*.pro.user* + +# xemacs temporary files +*.flc + +# Vim temporary files +.*.swp + +# Visual Studio generated files +*.ib_pdb_index +*.idb +*.ilk +*.pdb +*.sln +*.suo +*.vcproj +*vcproj.*.*.user +*.ncb +*.sdf +*.opensdf +*.vcxproj +*vcxproj.* + +# MinGW generated files +*.Debug +*.Release + +# Python byte code +*.pyc + +# Binaries +# -------- +*.dll +*.exe + diff --git a/homework-day2-2/homework-day2-2.pro b/homework-day2-2/homework-day2-2.pro new file mode 100644 index 0000000..46fb397 --- /dev/null +++ b/homework-day2-2/homework-day2-2.pro @@ -0,0 +1,28 @@ +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +CONFIG += c++11 + +# The following define makes your compiler emit warnings if you use +# any Qt feature that has been marked deprecated (the exact warnings +# depend on your compiler). Please consult the documentation of the +# deprecated API in order to know how to port your code away from it. +DEFINES += QT_DEPRECATED_WARNINGS + +# You can also make your code fail to compile if it uses deprecated APIs. +# In order to do so, uncomment the following line. +# You can also select to disable deprecated APIs only up to a certain version of Qt. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +SOURCES += \ + main.cpp \ + mainwindow.cpp + +HEADERS += \ + mainwindow.h + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target diff --git a/homework-day2-2/images/logo.png b/homework-day2-2/images/logo.png new file mode 100644 index 0000000..76b7fe2 Binary files /dev/null and b/homework-day2-2/images/logo.png differ diff --git a/homework-day2-2/images/open.png b/homework-day2-2/images/open.png new file mode 100644 index 0000000..1282b1e Binary files /dev/null and b/homework-day2-2/images/open.png differ diff --git a/homework-day2-2/images/save.png b/homework-day2-2/images/save.png new file mode 100644 index 0000000..4e33bd4 Binary files /dev/null and b/homework-day2-2/images/save.png differ diff --git a/homework-day2-2/main.cpp b/homework-day2-2/main.cpp new file mode 100644 index 0000000..fd3e533 --- /dev/null +++ b/homework-day2-2/main.cpp @@ -0,0 +1,11 @@ +#include "mainwindow.h" + +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + return a.exec(); +} diff --git a/homework-day2-2/mainwindow.cpp b/homework-day2-2/mainwindow.cpp new file mode 100644 index 0000000..47b43a3 --- /dev/null +++ b/homework-day2-2/mainwindow.cpp @@ -0,0 +1,11 @@ +#include "mainwindow.h" + +MainWindow::MainWindow(QWidget *parent) + : QMainWindow(parent) +{ +} + +MainWindow::~MainWindow() +{ +} + diff --git a/homework-day2-2/mainwindow.h b/homework-day2-2/mainwindow.h new file mode 100644 index 0000000..d147190 --- /dev/null +++ b/homework-day2-2/mainwindow.h @@ -0,0 +1,14 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + MainWindow(QWidget *parent = nullptr); + ~MainWindow(); +}; +#endif // MAINWINDOW_H diff --git a/homework-day2-2/res.qrc b/homework-day2-2/res.qrc new file mode 100644 index 0000000..90f4a83 --- /dev/null +++ b/homework-day2-2/res.qrc @@ -0,0 +1,2 @@ + + diff --git a/homework-day2/.gitignore b/homework-day2/.gitignore new file mode 100644 index 0000000..fab7372 --- /dev/null +++ b/homework-day2/.gitignore @@ -0,0 +1,73 @@ +# This file is used to ignore files which are generated +# ---------------------------------------------------------------------------- + +*~ +*.autosave +*.a +*.core +*.moc +*.o +*.obj +*.orig +*.rej +*.so +*.so.* +*_pch.h.cpp +*_resource.rc +*.qm +.#* +*.*# +core +!core/ +tags +.DS_Store +.directory +*.debug +Makefile* +*.prl +*.app +moc_*.cpp +ui_*.h +qrc_*.cpp +Thumbs.db +*.res +*.rc +/.qmake.cache +/.qmake.stash + +# qtcreator generated files +*.pro.user* + +# xemacs temporary files +*.flc + +# Vim temporary files +.*.swp + +# Visual Studio generated files +*.ib_pdb_index +*.idb +*.ilk +*.pdb +*.sln +*.suo +*.vcproj +*vcproj.*.*.user +*.ncb +*.sdf +*.opensdf +*.vcxproj +*vcxproj.* + +# MinGW generated files +*.Debug +*.Release + +# Python byte code +*.pyc + +# Binaries +# -------- +*.dll +*.exe + diff --git a/homework-day2/homework-day2.pro b/homework-day2/homework-day2.pro new file mode 100644 index 0000000..ebbd727 --- /dev/null +++ b/homework-day2/homework-day2.pro @@ -0,0 +1,30 @@ +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +CONFIG += c++11 + +# The following define makes your compiler emit warnings if you use +# any Qt feature that has been marked deprecated (the exact warnings +# depend on your compiler). Please consult the documentation of the +# deprecated API in order to know how to port your code away from it. +DEFINES += QT_DEPRECATED_WARNINGS + +# You can also make your code fail to compile if it uses deprecated APIs. +# In order to do so, uncomment the following line. +# You can also select to disable deprecated APIs only up to a certain version of Qt. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +SOURCES += \ + main.cpp \ + mainwindow.cpp \ + widget1.cpp + +HEADERS += \ + mainwindow.h \ + widget1.h + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target diff --git a/homework-day2/main.cpp b/homework-day2/main.cpp new file mode 100644 index 0000000..fd3e533 --- /dev/null +++ b/homework-day2/main.cpp @@ -0,0 +1,11 @@ +#include "mainwindow.h" + +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + return a.exec(); +} diff --git a/homework-day2/mainwindow.cpp b/homework-day2/mainwindow.cpp new file mode 100644 index 0000000..6c39126 --- /dev/null +++ b/homework-day2/mainwindow.cpp @@ -0,0 +1,15 @@ +#include "mainwindow.h" + +MainWindow::MainWindow(QWidget *parent) + : QMainWindow(parent) +{ + setFixedSize(800,600); + widget1 = new Widget1(this); + + setCentralWidget(widget1); +} + +MainWindow::~MainWindow() +{ +} + diff --git a/homework-day2/mainwindow.h b/homework-day2/mainwindow.h new file mode 100644 index 0000000..3f79897 --- /dev/null +++ b/homework-day2/mainwindow.h @@ -0,0 +1,18 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include +#include + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +private: + Widget1 *widget1; + +public: + MainWindow(QWidget *parent = nullptr); + ~MainWindow(); +}; +#endif // MAINWINDOW_H diff --git a/homework-day2/widget1.cpp b/homework-day2/widget1.cpp new file mode 100644 index 0000000..3c2f9d6 --- /dev/null +++ b/homework-day2/widget1.cpp @@ -0,0 +1,15 @@ +#include "widget1.h" + +Widget1::Widget1(QWidget *parent) : QWidget(parent) +{ + setFixedSize(800,600); + + line_edit = new QLineEdit("请输入网址: ",this); + label = new QLabel(this); + label->setText("label 占位"); + + line_edit->setFixedSize(800,50); + label->setFixedSize(800,540); + label->move(0,60); + +} diff --git a/homework-day2/widget1.h b/homework-day2/widget1.h new file mode 100644 index 0000000..ff902ea --- /dev/null +++ b/homework-day2/widget1.h @@ -0,0 +1,23 @@ +#ifndef WIDGET1_H +#define WIDGET1_H + +#include +#include +#include + +class Widget1 : public QWidget +{ + Q_OBJECT + +private: + QLineEdit *line_edit; // 用于网址输入的单行文本编辑器 + QLabel *label; // QLabel ,设置足够大 + +public: + explicit Widget1(QWidget *parent = nullptr); + +signals: + +}; + +#endif // WIDGET1_H