summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/ZText.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-reader/ZText.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/ZText.h61
1 files changed, 46 insertions, 15 deletions
diff --git a/noncore/apps/opie-reader/ZText.h b/noncore/apps/opie-reader/ZText.h
index ab81a5e..06e3bf8 100644
--- a/noncore/apps/opie-reader/ZText.h
+++ b/noncore/apps/opie-reader/ZText.h
@@ -12,21 +12,27 @@ class Text: public CExpander {
public:
void suspend()
- {
+ {
#ifdef USEQPE
- bSuspended = true;
- suspos = gztell(file);
- gzclose(file);
- file = NULL;
- sustime = time(NULL);
+ if (!bSuspended)
+ {
+ bSuspended = true;
+ suspos = gztell(file);
+ gzclose(file);
+ file = NULL;
+ sustime = time(NULL);
+ }
#endif
}
void unsuspend()
{
-#ifdef USEQPE
+#ifdef USEQPE
if (bSuspended)
{
bSuspended = false;
- int delay = time(NULL) - sustime;
- if (delay < 10) sleep(10-delay);
+ if (sustime != ((time_t)-1))
+ {
+ int delay = time(NULL) - sustime;
+ if (delay < 10) sleep(10-delay);
+ }
file = gzopen(fname, "rb");
for (int i = 0; file == NULL && i < 5; i++)
@@ -41,5 +47,5 @@ public:
}
suspos = gzseek(file, suspos, SEEK_SET);
- }
+ }
#endif
}
@@ -47,5 +53,11 @@ public:
virtual ~Text()
{
- if (file != NULL) gzclose(file);
+ if (file != NULL)
+ {
+#ifdef USEQPE
+ unsuspend();
+#endif
+ gzclose(file);
+ }
}
int OpenFile(const char *src)
@@ -57,7 +69,25 @@ public:
return ((file = gzopen(src,"rb")) == NULL);
}
- int getch() { return gzgetc(file); }
- unsigned int locate() { return gztell(file); }
- void locate(unsigned int n) { gzseek(file,n,SEEK_SET); }
+ int getch()
+ {
+#ifdef USEQPE
+ unsuspend();
+#endif
+ return gzgetc(file);
+ }
+ unsigned int locate()
+ {
+#ifdef USEQPE
+ unsuspend();
+#endif
+ return gztell(file);
+ }
+ void locate(unsigned int n)
+ {
+#ifdef USEQPE
+ unsuspend();
+#endif
+ gzseek(file,n,SEEK_SET);
+ }
bool hasrandomaccess() { return true; }
void sizes(unsigned long& _file, unsigned long& _text)
@@ -70,5 +100,5 @@ public:
fread(mn, 1, 2, f);
if ((mn[0] == 31) && (mn[1] == 139))
- {
+ {
int tmp = sizeof(_text);
fseek(f,-tmp,SEEK_END);
@@ -82,4 +112,5 @@ public:
return cTEXT;
}
+ QString about() { return QString("Text/gzipped text codec (c) Tim Wentford"); }
};
#endif