2014-03-08 13:26:49 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2014, Timothy Stack
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
2022-03-16 22:38:08 +00:00
|
|
|
*
|
2014-03-08 13:26:49 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
2022-03-16 22:38:08 +00:00
|
|
|
*
|
2014-03-08 13:26:49 +00:00
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Timothy Stack nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
2022-03-16 22:38:08 +00:00
|
|
|
*
|
2014-03-08 13:26:49 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
2022-03-16 22:38:08 +00:00
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
2014-03-08 13:26:49 +00:00
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
#include <locale.h>
|
2014-03-08 13:26:49 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
#include "config.h"
|
2014-03-08 13:26:49 +00:00
|
|
|
#include "view_curses.hh"
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
int
|
|
|
|
main(int argc, char* argv[])
|
2014-03-08 13:26:49 +00:00
|
|
|
{
|
|
|
|
int c, retval = EXIT_SUCCESS;
|
|
|
|
bool wait_for_input = false;
|
|
|
|
|
|
|
|
while ((c = getopt(argc, argv, "w")) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 'w':
|
2022-03-16 22:38:08 +00:00
|
|
|
wait_for_input = true;
|
|
|
|
break;
|
2014-03-08 13:26:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-04 14:41:09 +00:00
|
|
|
setenv("LANG", "en_US.utf-8", 1);
|
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
|
2014-03-08 13:26:49 +00:00
|
|
|
{
|
|
|
|
screen_curses sc;
|
2022-03-16 22:38:08 +00:00
|
|
|
WINDOW* win = sc.get_window();
|
2014-03-08 13:26:49 +00:00
|
|
|
struct line_range lr(0, 40);
|
|
|
|
attr_line_t al;
|
|
|
|
int y = 0;
|
|
|
|
|
2018-04-04 14:41:09 +00:00
|
|
|
curs_set(0);
|
2014-03-08 13:26:49 +00:00
|
|
|
noecho();
|
|
|
|
view_colors::singleton().init();
|
|
|
|
|
|
|
|
al.with_string("Plain text");
|
|
|
|
view_curses::mvwattrline(win, y++, 0, al, lr);
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
al.clear()
|
|
|
|
.with_string("\tLeading tab")
|
2022-04-01 06:21:59 +00:00
|
|
|
.with_attr(string_attr(line_range(0, 1),
|
2022-04-12 23:07:13 +00:00
|
|
|
VC_STYLE.value(A_REVERSE)));
|
2014-03-08 13:26:49 +00:00
|
|
|
view_curses::mvwattrline(win, y++, 0, al, lr);
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
al.clear()
|
|
|
|
.with_string("Tab\twith text")
|
2022-04-01 06:21:59 +00:00
|
|
|
.with_attr(string_attr(line_range(1, 4),
|
2022-04-12 23:07:13 +00:00
|
|
|
VC_STYLE.value(A_REVERSE)));
|
2014-03-08 13:26:49 +00:00
|
|
|
view_curses::mvwattrline(win, y++, 0, al, lr);
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
al.clear()
|
|
|
|
.with_string("Tab\twith text #2")
|
2022-04-01 06:21:59 +00:00
|
|
|
.with_attr(string_attr(line_range(3, 4),
|
2022-04-12 23:07:13 +00:00
|
|
|
VC_STYLE.value(A_REVERSE)));
|
2014-03-08 13:26:49 +00:00
|
|
|
view_curses::mvwattrline(win, y++, 0, al, lr);
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
al.clear()
|
|
|
|
.with_string("Two\ttabs\twith text")
|
2022-04-01 06:21:59 +00:00
|
|
|
.with_attr(string_attr(line_range(4, 6),
|
2022-04-12 23:07:13 +00:00
|
|
|
VC_STYLE.value(A_REVERSE)))
|
2022-04-01 06:21:59 +00:00
|
|
|
.with_attr(string_attr(line_range(9, 13),
|
2022-04-12 23:07:13 +00:00
|
|
|
VC_STYLE.value(A_REVERSE)));
|
2018-04-04 15:00:25 +00:00
|
|
|
view_curses::mvwattrline(win, y++, 0, al, lr);
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
al.clear()
|
|
|
|
.with_string("Text with mixed attributes.")
|
|
|
|
.with_attr(string_attr(
|
|
|
|
line_range(5, 9),
|
2022-04-12 23:07:13 +00:00
|
|
|
VC_STYLE.value(
|
2022-04-01 06:21:59 +00:00
|
|
|
view_colors::ansi_color_pair(COLOR_RED, COLOR_BLACK))))
|
|
|
|
.with_attr(string_attr(line_range(7, 12),
|
2022-04-12 23:07:13 +00:00
|
|
|
VC_STYLE.value(A_REVERSE)));
|
2014-03-08 13:26:49 +00:00
|
|
|
view_curses::mvwattrline(win, y++, 0, al, lr);
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
const char* text = u8"Text with unicode ▶ characters";
|
2018-04-04 14:41:09 +00:00
|
|
|
int offset = strstr(text, "char") - text;
|
2022-04-01 06:21:59 +00:00
|
|
|
al.clear().with_string(text).with_attr(
|
|
|
|
string_attr(line_range(offset, offset + 4),
|
2022-04-12 23:07:13 +00:00
|
|
|
VC_STYLE.value(A_REVERSE)));
|
2018-04-04 14:41:09 +00:00
|
|
|
view_curses::mvwattrline(win, y++, 0, al, lr);
|
|
|
|
|
2014-03-08 13:26:49 +00:00
|
|
|
wmove(win, y, 0);
|
|
|
|
refresh();
|
|
|
|
if (wait_for_input) {
|
|
|
|
getch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|