-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
59 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.o | ||
/Export | ||
.exe | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |