home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / ui / interval.h < prev    next >
C/C++ Source or Header  |  1995-04-08  |  3KB  |  144 lines

  1.  
  2. #ifndef _interval_h_
  3. #define _interval_h_
  4.  
  5.  
  6.  
  7.  
  8.  
  9. /*
  10.  *
  11.  *          Copyright (C) 1994, M. A. Sridhar
  12.  *  
  13.  *
  14.  *     This software is Copyright M. A. Sridhar, 1994. You are free
  15.  *     to copy, modify or distribute this software  as you see fit,
  16.  *     and to use  it  for  any  purpose, provided   this copyright
  17.  *     notice and the following   disclaimer are included  with all
  18.  *     copies.
  19.  *
  20.  *                        DISCLAIMER
  21.  *
  22.  *     The author makes no warranties, either expressed or implied,
  23.  *     with respect  to  this  software, its  quality, performance,
  24.  *     merchantability, or fitness for any particular purpose. This
  25.  *     software is distributed  AS IS.  The  user of this  software
  26.  *     assumes all risks  as to its quality  and performance. In no
  27.  *     event shall the author be liable for any direct, indirect or
  28.  *     consequential damages, even if the  author has been  advised
  29.  *     as to the possibility of such damages.
  30.  *
  31.  */
  32.  
  33.  
  34.  
  35. #if defined(__GNUC__)
  36. #pragma interface
  37. #endif
  38.  
  39.  
  40.  
  41. #include "base/map.h"
  42. #include "base/binding.h"
  43.  
  44.  
  45. //  The Interval represents a range of integers, including both
  46. //  endpoints (i.e., a ``closed'' interval). It is used as model for
  47. //  scroll bars.
  48.  
  49.  
  50. class CL_EXPORT CL_Interval: public CL_Object {
  51.  
  52. public:
  53.  
  54.     CL_Interval (long from, long to);
  55.     // Construct an interval of the given range.
  56.  
  57.     CL_Interval ();
  58.     // Construct an interval from -1 to -1.
  59.  
  60.     CL_Interval (const CL_Interval&);
  61.     // Copy constructor.
  62.  
  63.     ~CL_Interval () {};
  64.  
  65.     long Low () const;
  66.     // Return the low value of the interval.
  67.  
  68.     void Low (long value);
  69.     // Set the low value of the interval. If the given value exceeds our
  70.     // high value, the low value will be set to our high value.
  71.  
  72.     long High () const;
  73.     // Return the high value of the interval.
  74.  
  75.     void High (long value);
  76.     // Set the high value of the interval. If the given value is less than our
  77.     // low value, the high value will be set to our low value.
  78.  
  79.     long Length () const {return High() - Low() + 1;};
  80.     // Return the length of the interval, including both end points.
  81.  
  82.     bool operator== (const CL_Object& ) const;
  83.     // Override the operator inherited from {\small\tt CL_Object}.
  84.     
  85.     virtual void operator= (const CL_Interval& ) ;
  86.     // Assign the given interval to this one.
  87.  
  88.     CL_Interval operator+ (long n) const;
  89.     // Return an Interval obtained by ``shifting'' the values of this
  90.     // interval up by $n$.
  91.  
  92.     virtual void operator+= (long n) {*this = *this + n;};
  93.  
  94.     CL_Interval operator- (long n) const;
  95.     // Return an Interval obtained by ``shifting'' the values of this
  96.     // interval down by $n$.
  97.  
  98.     virtual void operator-= (long n) {*this = *this - n;};
  99.  
  100.     
  101.     void operator= (const CL_Object& o)
  102.         {*this = (const CL_Interval&) o;};
  103.  
  104.     void operator= (const CL_String&)
  105.         {NotImplemented ("operator= (CL_String)");};
  106.  
  107.     CL_Object* Clone () const;
  108.  
  109.     const char* ClassName() const {return "CL_Interval";};
  110.  
  111.     CL_String AsString () const;
  112.     
  113.  
  114. protected:
  115.  
  116.     long _low;
  117.     long _hi;
  118. };
  119.  
  120.  
  121.  
  122. inline long CL_Interval::Low () const
  123. {
  124.     return _low;
  125. }
  126.  
  127.  
  128. inline long CL_Interval::High () const
  129. {
  130.     return _hi;
  131. }
  132.  
  133.  
  134.  
  135. inline CL_Object* CL_Interval::Clone () const
  136. {
  137.     return new CL_Interval (*this);
  138. }
  139.  
  140.     
  141.  
  142. #endif
  143.  
  144.