-rw-r--r-- | libqtaux/oticker.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libqtaux/oticker.h b/libqtaux/oticker.h index a89d334..655c469 100644 --- a/libqtaux/oticker.h +++ b/libqtaux/oticker.h | |||
@@ -1,71 +1,72 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the Opie Project | 2 | This file is part of the Opie Project |
3 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> | 3 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> |
4 | and Copyright (C) 2000-2002 Trolltech AS. All rights reserved. | ||
4 | =. | 5 | =. |
5 | .=l. | 6 | .=l. |
6 | .>+-= | 7 | .>+-= |
7 | _;:, .> :=|. This program is free software; you can | 8 | _;:, .> :=|. This program is free software; you can |
8 | .> <`_, > . <= redistribute it and/or modify it under | 9 | .> <`_, > . <= redistribute it and/or modify it under |
9 | :`=1 )Y*s>-.-- : the terms of the GNU General Public | 10 | :`=1 )Y*s>-.-- : the terms of the GNU General Public |
10 | .="- .-=="i, .._ License as published by the Free Software | 11 | .="- .-=="i, .._ License as published by the Free Software |
11 | - . .-<_> .<> Foundation; either version 2 of the License, | 12 | - . .-<_> .<> Foundation; either version 2 of the License, |
12 | ._= =} : or (at your option) any later version. | 13 | ._= =} : or (at your option) any later version. |
13 | .%`+i> _;_. | 14 | .%`+i> _;_. |
14 | .i_,=:_. -<s. This program is distributed in the hope that | 15 | .i_,=:_. -<s. This program is distributed in the hope that |
15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 16 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
16 | : .. .:, . . . without even the implied warranty of | 17 | : .. .:, . . . without even the implied warranty of |
17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 18 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 19 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
19 | ..}^=.= = ; Library General Public License for more | 20 | ..}^=.= = ; Library General Public License for more |
20 | ++= -. .` .: details. | 21 | ++= -. .` .: details. |
21 | : = ...= . :.=- | 22 | : = ...= . :.=- |
22 | -. .:....=;==+<; You should have received a copy of the GNU | 23 | -. .:....=;==+<; You should have received a copy of the GNU |
23 | -_. . . )=. = Library General Public License along with | 24 | -_. . . )=. = General Public License along with |
24 | -- :-=` this library; see the file COPYING.LIB. | 25 | -- :-=` this library; see the file COPYING.LIB. |
25 | If not, write to the Free Software Foundation, | 26 | If not, write to the Free Software Foundation, |
26 | Inc., 59 Temple Place - Suite 330, | 27 | Inc., 59 Temple Place - Suite 330, |
27 | Boston, MA 02111-1307, USA. | 28 | Boston, MA 02111-1307, USA. |
28 | 29 | ||
29 | */ | 30 | */ |
30 | 31 | ||
31 | #ifndef OTICKER_H | 32 | #ifndef OTICKER_H |
32 | #define OTICKER_H | 33 | #define OTICKER_H |
33 | 34 | ||
34 | #include <qwidget.h> | 35 | #include <qwidget.h> |
35 | #include <qpainter.h> | 36 | #include <qpainter.h> |
36 | #include <qdrawutil.h> | 37 | #include <qdrawutil.h> |
37 | #include <qpixmap.h> | 38 | #include <qpixmap.h> |
38 | #include <qstring.h> | 39 | #include <qstring.h> |
39 | #include <qslider.h> | 40 | #include <qslider.h> |
40 | #include <qlabel.h> | 41 | #include <qlabel.h> |
41 | #include <qframe.h> | 42 | #include <qframe.h> |
42 | #include <qcolor.h> | 43 | #include <qcolor.h> |
43 | 44 | ||
44 | 45 | ||
45 | namespace Opie { | 46 | namespace Opie { |
46 | namespace Ui { | 47 | namespace Ui { |
47 | /** | 48 | /** |
48 | * @class OTicker | 49 | * @class OTicker |
49 | * @brief The OTicker class provides a QLabel widget that scroll its contents | 50 | * @brief The OTicker class provides a QLabel widget that scroll its contents |
50 | * | 51 | * |
51 | */ | 52 | */ |
52 | class OTicker : public QLabel { | 53 | class OTicker : public QLabel { |
53 | Q_OBJECT | 54 | Q_OBJECT |
54 | 55 | ||
55 | public: | 56 | public: |
56 | 57 | ||
57 | /*! | 58 | /*! |
58 | * @fn OTicker( QWidget* parent = 0 ) | 59 | * @fn OTicker( QWidget* parent = 0 ) |
59 | * @brief Object constructor. | 60 | * @brief Object constructor. |
60 | * | 61 | * |
61 | * @param parent Pointer to parent of this control. | 62 | * @param parent Pointer to parent of this control. |
62 | 63 | ||
63 | * Constructs a new OTicker control with parent | 64 | * Constructs a new OTicker control with parent |
64 | */ | 65 | */ |
65 | OTicker( QWidget* parent=0 ); | 66 | OTicker( QWidget* parent=0 ); |
66 | /*! | 67 | /*! |
67 | * @fn ~OTicker() | 68 | * @fn ~OTicker() |
68 | * @brief Object destructor. | 69 | * @brief Object destructor. |
69 | */ | 70 | */ |
70 | ~OTicker(); | 71 | ~OTicker(); |
71 | /*! | 72 | /*! |