File: hscroll.h

package info (click to toggle)
ncmpc 0.25-0.1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,616 kB
  • sloc: ansic: 12,229; sh: 4,157; makefile: 282; ruby: 28
file content (120 lines) | stat: -rw-r--r-- 2,824 bytes parent folder | download | duplicates (2)
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
/* ncmpc (Ncurses MPD Client)
 * (c) 2004-2010 The Music Player Daemon Project
 * Project homepage: http://musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef HSCROLL_H
#define HSCROLL_H

#include "config.h"
#include "ncmpc_curses.h"

#include <glib.h>

/**
 * This class is used to auto-scroll text which does not fit on the
 * screen.  Call hscroll_init() to initialize the object,
 * hscroll_clear() to free resources, and hscroll_set() to begin
 * scrolling.
 */
struct hscroll {
	WINDOW *w;
	const char *separator;

	/**
	 * The bounding coordinates on the screen.
	 */
	unsigned x, y, width;

	/**
	 * ncurses attributes for drawing the text.
	 */
	attr_t attrs;

	/**
	 * ncurses colors for drawing the text.
	 */
	short pair;

	/**
	 * The scrolled text, in the current locale.
	 */
	char *text;

	/**
	 * The current scrolling offset.  This is a character
	 * position, not a screen column.
	 */
	gsize offset;

	/**
	 * The id of the timer which updates the scrolled area every
	 * second.
	 */
	guint source_id;
};

static inline void
hscroll_reset(struct hscroll *hscroll)
{
	hscroll->offset = 0;
}

static inline void
hscroll_step(struct hscroll *hscroll)
{
	++hscroll->offset;
}

char *
strscroll(struct hscroll *hscroll, const char *str, const char *separator,
	  unsigned width);

/**
 * Initializes a #hscroll object allocated by the caller.
 */
static inline void
hscroll_init(struct hscroll *hscroll, WINDOW *w, const char *separator)
{
	hscroll->w = w;
	hscroll->separator = separator;
}

/**
 * Sets a text to scroll.  This installs a timer which redraws every
 * second with the current window attributes.  Call hscroll_clear() to
 * disable it.  This function automatically removes the old text.
 */
void
hscroll_set(struct hscroll *hscroll, unsigned x, unsigned y, unsigned width,
	    const char *text);

/**
 * Removes the text and the timer.  It may be reused with
 * hscroll_set().
 */
void
hscroll_clear(struct hscroll *hscroll);

/**
 * Explicitly draws the scrolled text.  Calling this function is only
 * allowed if there is a text currently.
 */
void
hscroll_draw(struct hscroll *hscroll);

#endif