summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2011-09-04 02:02:28 +0200
committerSebastian Rasmussen <sebras@gmail.com>2011-09-04 04:14:54 +0200
commit4999cae3fe1e35d52a143584264190dcb76ab779 (patch)
treeba5d0a32329c3a228dc19e551a07497d6a2edcbd
parent833b179e9f8da52a7a207884bfb2e42e22c74ef8 (diff)
downloadmupdf-4999cae3fe1e35d52a143584264190dcb76ab779.tar.xz
Remove unused redraw timeout from X11 viewer.
-rw-r--r--apps/x11_main.c74
1 files changed, 1 insertions, 73 deletions
diff --git a/apps/x11_main.c b/apps/x11_main.c
index c3a9b15d..1d18d0d5 100644
--- a/apps/x11_main.c
+++ b/apps/x11_main.c
@@ -74,7 +74,6 @@ static XEvent xevt;
static int mapped = 0;
static Cursor xcarrow, xchand, xcwait;
static int justcopied = 0;
-static int isshowingpage = 0;
static int dirty = 0;
static char *password = "";
static XColor xbgcolor;
@@ -521,48 +520,6 @@ static void usage(void)
exit(1);
}
-static void winawaitevent(struct timeval *tmo, struct timeval *tmo_at)
-{
- if (tmo_at->tv_sec == 0 && tmo_at->tv_usec == 0 &&
- tmo->tv_sec == 0 && tmo->tv_usec == 0)
- XNextEvent(xdpy, &xevt);
- else
- {
- fd_set fds;
- struct timeval now;
-
- FD_ZERO(&fds);
- FD_SET(x11fd, &fds);
-
- if (select(x11fd + 1, &fds, NULL, NULL, tmo))
- {
- gettimeofday(&now, NULL);
- timersub(tmo_at, &now, tmo);
- XNextEvent(xdpy, &xevt);
- }
- }
-}
-
-static void winsettmo(struct timeval *tmo, struct timeval *tmo_at)
-{
- struct timeval now;
-
- tmo->tv_sec = 2;
- tmo->tv_usec = 0;
-
- gettimeofday(&now, NULL);
- timeradd(&now, tmo, tmo_at);
-}
-
-static void winresettmo(struct timeval *tmo, struct timeval *tmo_at)
-{
- tmo->tv_sec = 0;
- tmo->tv_usec = 0;
-
- tmo_at->tv_sec = 0;
- tmo_at->tv_usec = 0;
-}
-
int main(int argc, char **argv)
{
int c;
@@ -573,8 +530,6 @@ int main(int argc, char **argv)
int oldy = 0;
int resolution = 72;
int pageno = 1;
- int wasshowingpage;
- struct timeval tmo, tmo_at;
int accelerate = 1;
int fd;
@@ -620,24 +575,12 @@ int main(int argc, char **argv)
pdfapp_open(&gapp, filename, fd, 0);
- winresettmo(&tmo, &tmo_at);
-
closing = 0;
while (!closing)
{
do
{
- winawaitevent(&tmo, &tmo_at);
-
- if (tmo_at.tv_sec != 0 && tmo_at.tv_usec != 0 &&
- tmo.tv_sec == 0 && tmo.tv_usec == 0)
- {
- /* redraw page */
- winblit(&gapp);
- isshowingpage = 0;
- winresettmo(&tmo, &tmo_at);
- continue;
- }
+ XNextEvent(xdpy, &xevt);
switch (xevt.type)
{
@@ -658,8 +601,6 @@ int main(int argc, char **argv)
break;
case KeyPress:
- wasshowingpage = isshowingpage;
-
len = XLookupString(&xevt.xkey, buf, sizeof buf, &keysym, NULL);
if (!gapp.isediting)
@@ -699,11 +640,6 @@ int main(int argc, char **argv)
{
winblit(&gapp);
dirty = 0;
- if (isshowingpage)
- {
- isshowingpage = 0;
- winresettmo(&tmo, &tmo_at);
- }
}
if (gapp.isediting)
@@ -715,9 +651,6 @@ int main(int argc, char **argv)
windrawstring(&gapp, 10, 20, str);
}
- if (!wasshowingpage && isshowingpage)
- winsettmo(&tmo, &tmo_at);
-
break;
case MotionNotify:
@@ -755,11 +688,6 @@ int main(int argc, char **argv)
{
winblit(&gapp);
dirty = 0;
- if (isshowingpage)
- {
- isshowingpage = 0;
- winresettmo(&tmo, &tmo_at);
- }
}
}