2006-08-16 01:29:20 +04:00
|
|
|
/*
|
2008-06-02 20:47:15 +04:00
|
|
|
* Copyright 2008 Rob Kendrick <rjek@netsurf-browser.org>
|
Merged revisions 4345-4346,4350-4351,4389,4391,4395,4401-4403,4423,4485-4486 via svnmerge from
svn://semichrome.net/branches/dynis/netsurf
........
r4345 | dynis | 2008-06-15 18:37:23 -0500 (Sun, 15 Jun 2008) | 1 line
Move NetSurf's gifread.h to libnsgif
........
r4346 | dynis | 2008-06-15 18:38:38 -0500 (Sun, 15 Jun 2008) | 1 line
Remove NetSurf's gifread.c (replaced by libnsgif)
........
r4350 | dynis | 2008-06-15 18:57:17 -0500 (Sun, 15 Jun 2008) | 1 line
Added references to libnsgif where necessary; corrected function calls where callbacks were implemented
........
r4351 | dynis | 2008-06-15 19:00:33 -0500 (Sun, 15 Jun 2008) | 1 line
Updated Makefile to compile with libnsgif
........
r4389 | dynis | 2008-06-18 13:58:51 -0500 (Wed, 18 Jun 2008) | 1 line
Altered bitmap callback table name for gif images to avoid ambiguity when bmp image library is created
........
r4391 | dynis | 2008-06-18 14:08:39 -0500 (Wed, 18 Jun 2008) | 1 line
Updated netsurf branch to use new bitmap callback table structure name that was altered in libnsgif
........
r4395 | dynis | 2008-06-18 14:54:51 -0500 (Wed, 18 Jun 2008) | 1 line
Corrected param comments for bitmap_set_suspendable()
........
r4401 | dynis | 2008-06-18 18:39:50 -0500 (Wed, 18 Jun 2008) | 1 line
Added references to libnsbmp where necessary; corrected function calls where callbacks were implemented
........
r4402 | dynis | 2008-06-18 18:40:47 -0500 (Wed, 18 Jun 2008) | 1 line
Updated Makefile to compile with libnsbmp
........
r4403 | dynis | 2008-06-18 18:41:53 -0500 (Wed, 18 Jun 2008) | 1 line
Remove NetSurf's bmpread.c and bmpread.h (replaced by libnsbmp)
........
r4423 | dynis | 2008-06-22 14:21:30 -0500 (Sun, 22 Jun 2008) | 1 line
Correct a silly mistake in nsbmp_bitmap_create
........
r4485 | dynis | 2008-07-01 04:13:48 -0500 (Tue, 01 Jul 2008) | 1 line
Integrated the latest versions of libnsgif and libnsbmp into NetSurf
........
r4486 | dynis | 2008-07-01 05:27:10 -0500 (Tue, 01 Jul 2008) | 1 line
Altered bitmap functions to receive void pointers for proper utilisation of libnsgif and libnsbmp
........
svn path=/trunk/netsurf/; revision=5071
2008-08-12 07:49:34 +04:00
|
|
|
* Copyright 2008 Sean Fox <dyntryx@gmail.com>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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, see <http://www.gnu.org/licenses/>.
|
2006-08-16 01:29:20 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2008-06-02 20:47:15 +04:00
|
|
|
#include <stdarg.h>
|
2015-06-16 02:20:37 +03:00
|
|
|
#include <gtk/gtk.h>
|
2015-06-17 23:29:48 +03:00
|
|
|
#include <stdint.h>
|
2015-06-16 02:20:37 +03:00
|
|
|
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "utils/log.h"
|
2015-06-16 02:20:37 +03:00
|
|
|
|
|
|
|
#include "gtk/resources.h"
|
2011-01-30 02:40:22 +03:00
|
|
|
#include "gtk/throbber.h"
|
2006-08-16 01:29:20 +04:00
|
|
|
|
2019-08-18 16:41:31 +03:00
|
|
|
/**
|
|
|
|
* Throbber images context
|
|
|
|
*/
|
|
|
|
struct nsgtk_throbber
|
|
|
|
{
|
|
|
|
int nframes; /**< Number of frames in the throbber */
|
|
|
|
GdkPixbuf **framedata; /* pixbuf data for the frames */
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct nsgtk_throbber *nsgtk_throbber = NULL;
|
2006-08-16 01:29:20 +04:00
|
|
|
|
2015-06-16 02:20:37 +03:00
|
|
|
#define THROBBER_FRAMES 9
|
|
|
|
#define THROBBER_FMT "throbber/throbber%d.png"
|
|
|
|
|
|
|
|
/* exported interface documented in gtk/throbber.h */
|
|
|
|
nserror nsgtk_throbber_init(void)
|
2008-06-02 20:47:15 +04:00
|
|
|
{
|
2019-08-18 16:41:31 +03:00
|
|
|
nserror res = NSERROR_OK;
|
|
|
|
struct nsgtk_throbber *throb;
|
2015-06-16 02:20:37 +03:00
|
|
|
int frame;
|
|
|
|
char resname[] = THROBBER_FMT;
|
|
|
|
|
2008-07-29 18:46:06 +04:00
|
|
|
throb = malloc(sizeof(*throb));
|
2015-06-16 02:20:37 +03:00
|
|
|
if (throb == NULL) {
|
|
|
|
return NSERROR_NOMEM;
|
|
|
|
}
|
2009-12-20 15:05:12 +03:00
|
|
|
|
2015-06-16 02:20:37 +03:00
|
|
|
throb->framedata = malloc(sizeof(GdkPixbuf *) * THROBBER_FRAMES);
|
2009-12-20 15:05:12 +03:00
|
|
|
if (throb->framedata == NULL) {
|
|
|
|
free(throb);
|
2019-08-18 16:41:31 +03:00
|
|
|
return NSERROR_NOMEM;
|
2009-12-20 15:05:12 +03:00
|
|
|
}
|
2015-06-16 02:20:37 +03:00
|
|
|
|
|
|
|
for (frame = 0; frame < THROBBER_FRAMES; frame++) {
|
|
|
|
snprintf(resname, sizeof(resname), THROBBER_FMT, frame);
|
|
|
|
res = nsgdk_pixbuf_new_from_resname(resname,
|
|
|
|
throb->framedata + frame);
|
|
|
|
if (res != NSERROR_OK) {
|
|
|
|
break;
|
2008-06-02 20:47:15 +04:00
|
|
|
}
|
Use coccinelle to change logging macro calls in c files
for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done
@@ expression E; @@
-LOG(E);
+NSLOG(netsurf, INFO, E);
@@ expression E, E1; @@
-LOG(E, E1);
+NSLOG(netsurf, INFO, E, E1);
@@ expression E, E1, E2; @@
-LOG(E, E1, E2);
+NSLOG(netsurf, INFO, E, E1, E2);
@@ expression E, E1, E2, E3; @@
-LOG(E, E1, E2, E3);
+NSLOG(netsurf, INFO, E, E1, E2, E3);
@@ expression E, E1, E2, E3, E4; @@
-LOG(E, E1, E2, E3, E4);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4);
@@ expression E, E1, E2, E3, E4, E5; @@
-LOG(E, E1, E2, E3, E4, E5);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5);
@@ expression E, E1, E2, E3, E4, E5, E6; @@
-LOG(E, E1, E2, E3, E4, E5, E6);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6);
@@ expression E, E1, E2, E3, E4, E5, E6, E7; @@
-LOG(E, E1, E2, E3, E4, E5, E6, E7);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
2017-09-06 20:28:12 +03:00
|
|
|
NSLOG(netsurf, INFO, "%s", resname);
|
2008-06-02 20:47:15 +04:00
|
|
|
}
|
|
|
|
|
2015-06-16 02:20:37 +03:00
|
|
|
if (frame < 1) {
|
|
|
|
/* we need at least two frames - one for idle, one for active */
|
Use coccinelle to change logging macro calls in c files
for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done
@@ expression E; @@
-LOG(E);
+NSLOG(netsurf, INFO, E);
@@ expression E, E1; @@
-LOG(E, E1);
+NSLOG(netsurf, INFO, E, E1);
@@ expression E, E1, E2; @@
-LOG(E, E1, E2);
+NSLOG(netsurf, INFO, E, E1, E2);
@@ expression E, E1, E2, E3; @@
-LOG(E, E1, E2, E3);
+NSLOG(netsurf, INFO, E, E1, E2, E3);
@@ expression E, E1, E2, E3, E4; @@
-LOG(E, E1, E2, E3, E4);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4);
@@ expression E, E1, E2, E3, E4, E5; @@
-LOG(E, E1, E2, E3, E4, E5);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5);
@@ expression E, E1, E2, E3, E4, E5, E6; @@
-LOG(E, E1, E2, E3, E4, E5, E6);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6);
@@ expression E, E1, E2, E3, E4, E5, E6, E7; @@
-LOG(E, E1, E2, E3, E4, E5, E6, E7);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
2017-09-06 20:28:12 +03:00
|
|
|
NSLOG(netsurf, INFO,
|
|
|
|
"Insufficent number of frames (%d) in throbber animation.",
|
|
|
|
frame);
|
2015-06-16 02:20:37 +03:00
|
|
|
res = NSERROR_INIT_FAILED;
|
2008-06-02 20:47:15 +04:00
|
|
|
}
|
2015-06-16 02:20:37 +03:00
|
|
|
|
|
|
|
throb->nframes = frame;
|
2008-06-02 20:47:15 +04:00
|
|
|
nsgtk_throbber = throb;
|
2015-06-16 02:20:37 +03:00
|
|
|
return res;
|
2008-06-02 20:47:15 +04:00
|
|
|
}
|
|
|
|
|
2019-08-18 16:41:31 +03:00
|
|
|
/* exported interface documented in gtk/throbber.h */
|
2006-08-16 01:29:20 +04:00
|
|
|
void nsgtk_throbber_finalise(void)
|
|
|
|
{
|
|
|
|
int i;
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2006-08-16 01:29:20 +04:00
|
|
|
for (i = 0; i < nsgtk_throbber->nframes; i++)
|
2011-03-26 23:56:59 +03:00
|
|
|
g_object_unref(nsgtk_throbber->framedata[i]);
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2006-08-16 01:29:20 +04:00
|
|
|
free(nsgtk_throbber->framedata);
|
|
|
|
free(nsgtk_throbber);
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2006-08-16 01:29:20 +04:00
|
|
|
nsgtk_throbber = NULL;
|
|
|
|
}
|
2008-08-13 17:44:10 +04:00
|
|
|
|
2019-08-18 16:41:31 +03:00
|
|
|
|
|
|
|
/* exported interface documented in gtk/throbber.h */
|
|
|
|
nserror nsgtk_throbber_get_frame(int frame, GdkPixbuf **pixbuf)
|
|
|
|
{
|
|
|
|
nserror res = NSERROR_OK;
|
|
|
|
|
|
|
|
/* ensure initialisation */
|
|
|
|
if (nsgtk_throbber == NULL) {
|
|
|
|
res = nsgtk_throbber_init();
|
|
|
|
}
|
|
|
|
if (res != NSERROR_OK) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ensure frame in range */
|
|
|
|
if ((frame < 0) || (frame >= nsgtk_throbber->nframes)) {
|
|
|
|
return NSERROR_BAD_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ensure there is frame data */
|
|
|
|
if (nsgtk_throbber->framedata[frame] == NULL) {
|
|
|
|
return NSERROR_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pixbuf = nsgtk_throbber->framedata[frame];
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|