diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-03-17 22:16:24 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-04-01 10:58:24 +0900 |
commit | e7b18a1f57023a06ad12f5ff7d3cb2e80a254be5 (patch) | |
tree | d86a2f7b4012fdf7ebc7120317d0b3a9bd7ec135 /src/__TODO/AboutDialogGraphicsView.cpp | |
parent | d879569fce39cb38991384a1851eeb42eca6e16f (diff) | |
download | universal-indent-gui-tqt-e7b18a1f57023a06ad12f5ff7d3cb2e80a254be5.tar.gz universal-indent-gui-tqt-e7b18a1f57023a06ad12f5ff7d3cb2e80a254be5.zip |
Added first part of UiGuiSettings class.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/__TODO/AboutDialogGraphicsView.cpp')
-rw-r--r-- | src/__TODO/AboutDialogGraphicsView.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/__TODO/AboutDialogGraphicsView.cpp b/src/__TODO/AboutDialogGraphicsView.cpp index 3c031f2..b9b527b 100644 --- a/src/__TODO/AboutDialogGraphicsView.cpp +++ b/src/__TODO/AboutDialogGraphicsView.cpp @@ -27,7 +27,7 @@ #include <tqtimeline.h> #include <tntqsplashscreen.h> -/*! +/* \class AboutDialogGraphicsView \brief A container for the real \a AboutDialog. Makes the 3D animation possible. @@ -36,7 +36,7 @@ when shown starts in frameless fullscreen mode with a screenshot of the desktop as background. */ -/*! +/* \brief The constructor initializes everything needed for the 3D animation. */ AboutDialogGraphicsView::AboutDialogGraphicsView(AboutDialog *aboutDialog, TQWidget *parentWindow) : @@ -93,7 +93,7 @@ AboutDialogGraphicsView::~AboutDialogGraphicsView(void) { } -/*! +/* \brief Grabs a screenshot of the full desktop and shows that as background. Above that background the AboutDialog 3D animation is shown. Also grabs the content of the AboutDialog itself. */ @@ -155,7 +155,7 @@ void AboutDialogGraphicsView::show() _timeLine->start(); } -/*! +/* \brief Does the next calculation/transformation step. */ void AboutDialogGraphicsView::updateStep(int step) @@ -170,7 +170,7 @@ void AboutDialogGraphicsView::updateStep(int step) //update(); } -/*! +/* \brief Stops the 3D animation, moves the AboutDialog to the correct place and really shows it. */ void AboutDialogGraphicsView::showAboutDialog() @@ -183,7 +183,7 @@ void AboutDialogGraphicsView::showAboutDialog() _aboutDialog->exec(); } -/*! +/* \brief Does not directly hide the AboutDialog but instead starts the "fade out" 3D animation. */ void AboutDialogGraphicsView::hide() @@ -209,7 +209,7 @@ void AboutDialogGraphicsView::hide() _timeLine->start(); } -/*! +/* \brief This slot really hides this AboutDialog container. */ void AboutDialogGraphicsView::hideReally() |