The Pedigree Project  0.1
Scrollable.h
1 /*
2  * Copyright (c) 2008-2014, Pedigree Developers
3  *
4  * Please see the CONTRIB file in the root of the source tree for a full
5  * list of contributors.
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #ifndef SCROLLABLE_H
21 #define SCROLLABLE_H
22 
23 #include "pedigree/kernel/debugger/DebuggerIO.h"
24 #include "pedigree/kernel/processor/types.h"
25 
30 {
31  public:
32  Scrollable();
33 
34  void move(size_t x, size_t y);
35  void resize(size_t width, size_t height);
36  void scroll(ssize_t lines);
37  void scrollTo(size_t absolute);
38  void refresh(DebuggerIO *pScreen);
39  void setScrollKeys(char up, char down);
40  ssize_t getLine();
41 
42  void centreOn(size_t line);
43 
44  size_t height() const;
45  size_t width() const;
46 
47  virtual const char *getLine1(
48  size_t index, DebuggerIO::Colour &colour,
49  DebuggerIO::Colour &bgColour) = 0;
50  virtual const char *getLine2(
51  size_t index, size_t &colOffset, DebuggerIO::Colour &colour,
52  DebuggerIO::Colour &bgColour) = 0;
53  virtual size_t getLineCount() = 0;
54  virtual ~Scrollable();
55 
56  protected:
57  size_t m_x;
58  size_t m_y;
59  size_t m_width;
60  size_t m_height;
61  ssize_t m_line;
62  char m_ScrollUp;
63  char m_ScrollDown;
64 };
65 
68 #endif