diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-15 16:14:25 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-15 16:14:25 +0000 |
commit | 73d8d35b5f145a65c623ffb17ff1a653d6c3a724 (patch) | |
tree | ca5e2b70dcc3cffdb328f448fbbe5a387ba9a333 /fm.h | |
parent | fix indent (diff) | |
download | w3m-73d8d35b5f145a65c623ffb17ff1a653d6c3a724.tar.gz w3m-73d8d35b5f145a65c623ffb17ff1a653d6c3a724.zip |
[w3m-dev 03440] Re: restore alarm event
* fm.h (BP_RELOAD): added
(DOWNLOAD_LIST_TITLE): added
* main.c (main): if BP_RELOAD, do reload
(reload): if buffer is DOWNLOAD_LIST, ldDL()
(DownloadListBuffer): rewrite with DOWNLOAD_LIST_TITLE
(download_action): delete "update"
don't delete prev buffer
(ldDL): rewrite to do reload
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | fm.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: fm.h,v 1.81 2002/11/15 16:05:15 ukai Exp $ */ +/* $Id: fm.h,v 1.82 2002/11/15 16:14:25 ukai Exp $ */ /* * w3m: WWW wo Miru utility * @@ -177,6 +177,7 @@ void bzero(void *, int); #define BP_NO_URL 0x10 #define BP_REDIRECTED 0x20 #define BP_CLOSE 0x40 +#define BP_RELOAD 0x80 /* Link Buffer */ #define LB_NOLINK -1 @@ -466,6 +467,7 @@ typedef struct _DownloadList { struct _DownloadList *next; struct _DownloadList *prev; } DownloadList; +#define DOWNLOAD_LIST_TITLE "Download List Panel" #define COPY_BUFPOSITION(dstbuf, srcbuf) {\ (dstbuf)->topLine = (srcbuf)->topLine; \ |