-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Road to 0.9.7 part 1 (Help window without translations and small form…
… generation improvements)
- Loading branch information
1 parent
446ead5
commit d06f217
Showing
28 changed files
with
1,104 additions
and
218 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
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
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
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
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
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
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
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
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,16 @@ | ||
#include "HelpWindow.h" | ||
#include "ui_HelpWindow.h" | ||
|
||
HelpWindow::HelpWindow(QWidget *parent) : | ||
QDialog(parent), | ||
ui(new Ui::HelpWindow) | ||
{ | ||
ui->setupUi(this); | ||
ui->textBrowser->setOpenLinks(false); | ||
ui->textBrowser->setOpenExternalLinks(false); | ||
} | ||
|
||
HelpWindow::~HelpWindow() | ||
{ | ||
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 HELPWINDOW_H | ||
#define HELPWINDOW_H | ||
|
||
#include <QDialog> | ||
|
||
namespace Ui { | ||
class HelpWindow; | ||
} | ||
|
||
class HelpWindow : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit HelpWindow(QWidget *parent = nullptr); | ||
~HelpWindow(); | ||
|
||
private: | ||
Ui::HelpWindow *ui; | ||
}; | ||
|
||
#endif // HELPWINDOW_H |
Oops, something went wrong.