1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
//--------------------------------------------------------------------
// $Id: ConWin.cpp 4617 2005-03-23 23:04:29Z cjm $
//--------------------------------------------------------------------
//
// Visual Binary Diff
// Copyright 1997-2005 by Christopher J. Madsen
//
// Support class for curses applications
//
//--------------------------------------------------------------------
#include <stdlib.h>
#include "ConWin.hpp"
void exitMsg(int status, const char* message); // From vbindiff.cpp
enum ColorPair {
pairWhiteBlue= 1,
pairWhiteBlack,
pairRedBlue,
pairYellowBlue
};
static const ColorPair colorStyle[] = {
pairWhiteBlue, // cBackground
pairWhiteBlue, // cPromptWin
pairWhiteBlue, // cPromptKey
pairWhiteBlue, // cPromptBdr
pairWhiteBlack, // cCurrentMode
pairWhiteBlack, // cFileName
pairWhiteBlue, // cFileWin
pairRedBlue, // cFileDiff
pairYellowBlue // cFileEdit
};
static const attr_t attribStyle[] = {
COLOR_PAIR(colorStyle[ cBackground ]),
COLOR_PAIR(colorStyle[ cPromptWin ]),
A_BOLD | COLOR_PAIR(colorStyle[ cPromptKey ]),
A_BOLD | COLOR_PAIR(colorStyle[ cPromptBdr ]),
A_REVERSE | COLOR_PAIR(colorStyle[ cCurrentMode]),
A_REVERSE | COLOR_PAIR(colorStyle[ cFileName ]),
COLOR_PAIR(colorStyle[ cFileWin ]),
A_BOLD | COLOR_PAIR(colorStyle[ cFileDiff ]),
A_BOLD | COLOR_PAIR(colorStyle[ cFileEdit ])
};
//====================================================================
// Class ConWindow:
//--------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////
// Static Member Functions:
//--------------------------------------------------------------------
// Start up the window system:
//
// Allocates a screen buffer and sets input mode:
//
// Returns:
// true: Everything set up properly
// false: Unable to initialize
bool ConWindow::startup()
{
if (!initscr()) return false; // initialize the curses library
atexit(ConWindow::shutdown); // just in case
keypad(stdscr, true); // enable keyboard mapping
nonl(); // tell curses not to do NL->CR/NL on output
cbreak(); // take input chars one at a time, no wait for \n
noecho(); // do not echo input
if (has_colors()) {
start_color();
init_pair(pairWhiteBlue, COLOR_WHITE, COLOR_BLUE);
init_pair(pairWhiteBlack, COLOR_WHITE, COLOR_BLACK);
init_pair(pairRedBlue, COLOR_RED, COLOR_BLUE);
init_pair(pairYellowBlue, COLOR_YELLOW, COLOR_BLUE);
} // end if terminal has color
return true;
} // end ConWindow::startup
//--------------------------------------------------------------------
// Shut down the window system:
//
// Deallocate the screen buffer and restore the original input mode.
void ConWindow::shutdown()
{
if (!isendwin()) {
showCursor();
endwin();
}
} // end ConWindow::shutdown
//////////////////////////////////////////////////////////////////////
// Member Functions:
//--------------------------------------------------------------------
// Constructor:
ConWindow::ConWindow()
: pan(NULL),
win(NULL)
{
} // end ConWindow::ConWindow
//--------------------------------------------------------------------
// Destructor:
ConWindow::~ConWindow()
{
close();
} // end ConWindow::~ConWindow
//--------------------------------------------------------------------
// Initialize the window:
//
// Must be called only once, before any other functions are called.
// Allocates the data structures and clears the window buffer, but
// does not display anything.
//
// Input:
// x,y: The position of the window in the screen buffer
// width,height: The size of the window
// attrib: The default attributes for the window
void ConWindow::init(short x, short y, short width, short height, Style attrib)
{
if ((win = newwin(height, width, y, x)) == 0)
exitMsg(99, "Internal error: Failed to create window");
if ((pan = new_panel(win)) == 0)
exitMsg(99, "Internal error: Failed to create panel");
wbkgdset(win, attribStyle[attrib] | ' ');
keypad(win, TRUE); // enable keyboard mapping
clear();
} // end ConWindow::init
//--------------------------------------------------------------------
void ConWindow::close()
{
if (pan) {
del_panel(pan);
pan = NULL;
}
if (win) {
delwin(win);
win = NULL;
}
} // end ConWindow::close
//--------------------------------------------------------------------
// Write a string using the current attributes:
//
// Input:
// x,y: The start of the string in the window
// s: The string to write
//void ConWindow::put(short x, short y, const char* s)
///void ConWindow::put(short x, short y, const String& s)
///{
/// PCHAR_INFO out = data + x + size.X * y;
/// StrConstItr c = s.begin();
///
/// while (c != s.end()) {
/// out->Char.AsciiChar = *c;
/// out->Attributes = attribs;
/// ++out;
/// ++c;
/// }
///} // end ConWindow::put
//--------------------------------------------------------------------
// Change the attributes of characters in the window:
//
// Input:
// x,y: The position in the window to start changing attributes
// color: The attribute to set
// count: The number of characters to change
void ConWindow::putAttribs(short x, short y, Style color, short count)
{
mvwchgat(win, y, x, count, attribStyle[color], colorStyle[color], NULL);
touchwin(win);
} // end ConWindow::putAttribs
//--------------------------------------------------------------------
// Write a character using the current attributes:
//
// Input:
// x,y: The position in the window to start writing
// c: The character to write
// count: The number of characters to write
void ConWindow::putChar(short x, short y, char c, short count)
{
wmove(win, y, x);
while (count--) {
waddch(win, c);
}
} // end ConWindow::putAttribs
//--------------------------------------------------------------------
// Read the next key down event:
//
// Output:
// event: Contains a key down event
int ConWindow::readKey()
{
top_panel(pan);
update_panels();
doupdate();
return wgetch(win);
} // end ConWindow::readKey
//--------------------------------------------------------------------
void ConWindow::resize(short width, short height)
{
if (wresize(win, height, width) != OK)
exitMsg(99, "Internal error: Failed to resize window");
replace_panel(pan, win);
clear();
} // end ConWindow::resize
//--------------------------------------------------------------------
void ConWindow::setAttribs(Style color)
{
wattrset(win, attribStyle[color]);
} // end ConWindow::setAttribs
//--------------------------------------------------------------------
// Position the cursor in the window:
//
// There is only one cursor, and each window does not maintain its own
// cursor position.
//
// Input:
// x,y: The position in the window for the cursor
void ConWindow::setCursor(short x, short y)
{
// ASSERT((x>=0)&&(x<size.X)&&(y>=0)&&(y<size.Y));
wmove(win, y, x);
} // end ConWindow::setCursor
//--------------------------------------------------------------------
// Local Variables:
// c-file-style: "cjm"
// End:
|