2 Widgets for the Midnight Commander
4 Copyright (C) 1994-2024
5 Free Software Foundation, Inc.
8 Radek Doulik, 1994, 1995
9 Miguel de Icaza, 1994, 1995
11 Andrej Borsenkow, 1996
13 Andrew Borodin <aborodin@vmail.ru>, 2009-2022
15 This file is part of the Midnight Commander.
17 The Midnight Commander is free software: you can redistribute it
18 and/or modify it under the terms of the GNU General Public License as
19 published by the Free Software Foundation, either version 3 of the License,
20 or (at your option) any later version.
22 The Midnight Commander is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
27 You should have received a copy of the GNU General Public License
28 along with this program. If not, see <http://www.gnu.org/licenses/>.
32 * \brief Source: WGauge widget (progress indicator)
40 #include "lib/global.h"
42 #include "lib/tty/tty.h"
43 #include "lib/tty/color.h"
45 #include "lib/widget.h"
47 /*** global variables ****************************************************************************/
49 /*** file scope macro definitions ****************************************************************/
51 /*** file scope type declarations ****************************************************************/
53 /*** forward declarations (file scope functions) *************************************************/
55 /*** file scope variables ************************************************************************/
57 /* --------------------------------------------------------------------------------------------- */
58 /*** file scope functions ************************************************************************/
59 /* --------------------------------------------------------------------------------------------- */
62 gauge_callback (Widget
*w
, Widget
*sender
, widget_msg_t msg
, int parm
, void *data
)
64 WGauge
*g
= GAUGE (w
);
70 colors
= widget_get_colors (w
);
71 widget_gotoyx (w
, 0, 0);
74 tty_setcolor (colors
[DLG_COLOR_NORMAL
]);
75 tty_printf ("%*s", w
->rect
.cols
, "");
80 int percentage
, columns
;
82 int done
= g
->current
;
84 if (total
<= 0 || done
< 0)
97 gauge_len
= w
->rect
.cols
- 7; /* 7 positions for percentage */
99 percentage
= (200 * done
/ total
+ 1) / 2;
100 columns
= (2 * gauge_len
* done
/ total
+ 1) / 2;
101 tty_print_char ('[');
102 if (g
->from_left_to_right
)
104 tty_setcolor (GAUGE_COLOR
);
105 tty_printf ("%*s", columns
, "");
106 tty_setcolor (colors
[DLG_COLOR_NORMAL
]);
107 tty_printf ("%*s] %3d%%", gauge_len
- columns
, "", percentage
);
111 tty_setcolor (colors
[DLG_COLOR_NORMAL
]);
112 tty_printf ("%*s", gauge_len
- columns
, "");
113 tty_setcolor (GAUGE_COLOR
);
114 tty_printf ("%*s", columns
, "");
115 tty_setcolor (colors
[DLG_COLOR_NORMAL
]);
116 tty_printf ("] %3d%%", percentage
);
122 return widget_default_callback (w
, sender
, msg
, parm
, data
);
126 /* --------------------------------------------------------------------------------------------- */
127 /*** public functions ****************************************************************************/
128 /* --------------------------------------------------------------------------------------------- */
131 gauge_new (int y
, int x
, int cols
, gboolean shown
, int max
, int current
)
133 WRect r
= { y
, x
, 1, cols
};
137 g
= g_new (WGauge
, 1);
139 widget_init (w
, &r
, gauge_callback
, NULL
);
143 max
= 1; /* I do not like division by zero :) */
145 g
->current
= current
;
146 g
->from_left_to_right
= TRUE
;
151 /* --------------------------------------------------------------------------------------------- */
154 gauge_set_value (WGauge
*g
, int max
, int current
)
156 if (g
->current
== current
&& g
->max
== max
)
157 return; /* Do not flicker */
160 max
= 1; /* I do not like division by zero :) */
161 g
->current
= current
;
163 widget_draw (WIDGET (g
));
166 /* --------------------------------------------------------------------------------------------- */
169 gauge_show (WGauge
*g
, gboolean shown
)
171 if (g
->shown
!= shown
)
174 widget_draw (WIDGET (g
));
178 /* --------------------------------------------------------------------------------------------- */