Skip to content

Commit

Permalink
添加.gitignore文件
Browse files Browse the repository at this point in the history
  • Loading branch information
whik committed Feb 22, 2020
1 parent a0d5af6 commit 7859b71
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.o
/Export
.exe

7 changes: 1 addition & 6 deletions img.qrc
Original file line number Diff line number Diff line change
@@ -1,6 +1 @@
<RCC>
<qresource prefix="/">
<file>top_headv3.jpg</file>
<file>my_sub.jpg</file>
</qresource>
</RCC>
<RCC/>
Binary file added new_top.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions news_info.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include "news_info.h"
#include "ui_news_info.h"

news_info::news_info(QWidget *parent) :
QDialog(parent),
ui(new Ui::news_info)
{
ui->setupUi(this);
}

news_info::~news_info()
{
delete ui;
}
22 changes: 22 additions & 0 deletions news_info.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#ifndef NEWS_INFO_H
#define NEWS_INFO_H

#include <QDialog>

namespace Ui {
class news_info;
}

class news_info : public QDialog
{
Q_OBJECT

public:
explicit news_info(QWidget *parent = 0);
~news_info();

private:
Ui::news_info *ui;
};

#endif // NEWS_INFO_H
18 changes: 18 additions & 0 deletions news_info.ui
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<ui version="4.0">
<class>news_info</class>
<widget name="news_info" class="QDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
</widget>
<resources/>
<connections/>
</ui>

0 comments on commit 7859b71

Please sign in to comment.