diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 47d455dd55be855e4cc691c32f687f723d9247ee (patch) | |
tree | 52e236aaa2576bdb3840ebede26619692fed6d7d /kviewshell/pageNumber.h | |
download | tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kviewshell/pageNumber.h')
-rw-r--r-- | kviewshell/pageNumber.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/kviewshell/pageNumber.h b/kviewshell/pageNumber.h new file mode 100644 index 00000000..71ba3e50 --- /dev/null +++ b/kviewshell/pageNumber.h @@ -0,0 +1,65 @@ +// -*- C++ -*- +// +// pageNumber.h +// +// Part of KVIEWSHELL - A framework for multipage text/gfx viewers +// +// (C) 2004 Stefan Kebekus +// Distributed under the GPL + +// Add header files alphabetically + +#ifndef PAGENUMBER_H +#define PAGENUMBER_H + +#include <qglobal.h> + + +/** \brief Class to represent a page number + +The class PageNumber is really nothing but an alias for Q_UINT16, and +can be casted to and from Q_UINT16. It is used in kviewshell to remind +the programmer of the convention that page numbers start at '1' (for +'first page'), and that the value '0' means 'illegal page number' or +'no page number'. Accordingly, the value '0' is also named +PageNumber::invalidPage, and there is a trivial method isInvalid() +that checks if the page number is 0. + +@author Stefan Kebekus <[email protected]> +@version 1.0 0 +*/ + +class PageNumber +{ + public: + enum pageNums { + invalidPage = 0 /*! Invalid page number */ + }; + + /** The default constructor sets the page number to 'invalidPage' */ + PageNumber() {pgNum = invalidPage;} + + /** \brief Constructor that sets the page number + + @param num page number that is set initially + */ + PageNumber(Q_UINT16 num) {pgNum = num;} + + /** \brief this method implements typecasts from Q_UINT16 */ + PageNumber &operator=(const Q_UINT16 p) { pgNum = p; return *this; } + + /** \brief This method implements typecasts to Q_UINT16 */ + operator Q_UINT16() const { return pgNum; } + + /** \brief Checks if the page number is invalid + + @returns true, if pgNum != invalidPage, i.e., does not equal 0 + */ + bool isValid() const {return (pgNum != invalidPage);} + + private: + /** \brief Single number that represents the page number */ + Q_UINT16 pgNum; +}; + +#endif |