forked from Tulip-Dev/tulip
-
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.
Move about page implementation from talipot-gui library to software
Turn the page into a dialog. Display third party info in a scrollable QTextBrowser and rework content. Update OGDF website URL and stop hardcoding its version.
- Loading branch information
Showing
9 changed files
with
133 additions
and
185 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,39 @@ | ||
/** | ||
* | ||
* Copyright (C) 2019-2023 The Talipot developers | ||
* | ||
* Talipot is a fork of Tulip, created by David Auber | ||
* and the Tulip development Team from LaBRI, University of Bordeaux | ||
* | ||
* See the AUTHORS file at the top-level directory of this distribution | ||
* License: GNU General Public License version 3, or any later version | ||
* See top-level LICENSE file for more information | ||
* | ||
*/ | ||
|
||
#ifndef TALIPOT_ABOUT_DIALOG_H | ||
#define TALIPOT_ABOUT_DIALOG_H | ||
|
||
#include <talipot/config.h> | ||
|
||
#include <QDialog> | ||
|
||
namespace Ui { | ||
class AboutDialog; | ||
} | ||
|
||
class AboutDialog : public QDialog { | ||
Q_OBJECT | ||
public: | ||
explicit AboutDialog(QWidget *parent = nullptr); | ||
~AboutDialog() override; | ||
|
||
private slots: | ||
|
||
void openUrlInBrowser(const QString &url); | ||
|
||
private: | ||
Ui::AboutDialog *_ui; | ||
}; | ||
|
||
#endif // TALIPOT_ABOUT_DIALOG_H |
Oops, something went wrong.