/* filelist.c - for drawing a scrollable filelist with size, permissions etc. Copyright (C) 1996-2000 Paul Sheer This program 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; either version 2 of the License, or (at your option) any later version. This program 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, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include #include "stringtools.h" #include #if HAVE_DIRENT_H #include #define NAMLEN(dirent) strlen((dirent)->d_name) #else #define dirent direct #define NAMLEN(dirent) (dirent)->d_namlen #if HAVE_SYS_NDIR_H #include #endif #if HAVE_SYS_DIR_H #include #endif #if HAVE_NDIR_H #include #endif #endif #include #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #ifdef HAVE_UNISTD_H #include #endif #include "coolwidget.h" #include "mad.h" extern struct look *look; /* reset with timestr = 0 */ void get_file_time (char *timestr, time_t file_time, int l) { #ifndef HAVE_STRFTIME static char monthstr[12][8] = { /* Month list */ gettext_noop ("Jan"), gettext_noop ("Feb"), gettext_noop ("Mar"), gettext_noop ("Apr"), gettext_noop ("May"), gettext_noop ("Jun"), gettext_noop ("Jul"), gettext_noop ("Aug"), gettext_noop ("Sep"), gettext_noop ("Oct"), gettext_noop ("Nov"), gettext_noop ("Dec") }; #endif static struct tm tm_current = {-1}; struct tm *tm; static int i = 0; if (!timestr) { i = 0; return; } #ifndef HAVE_STRFTIME if (!i) for (i = 0; i < 12; i++) strcpy (monthstr[i], _ (monthstr[i])); #endif if (tm_current.tm_sec == -1) { time_t t; time (&t); memcpy ((void *) &tm_current, (void *) localtime (&t), sizeof (struct tm)); } tm = localtime (&(file_time)); #if HAVE_STRFTIME if (l) { strftime (timestr, 31, "%b %e %H:%M %Y", tm); } else { if (tm->tm_year == tm_current.tm_year) /* date with year and without time */ strftime (timestr, 31, "%b %d %H:%M", tm); else /* date without year and with time */ strftime (timestr, 31, "%Y %b %d", tm); } #else if (l) { sprintf (timestr, "%s %2d %.2d:%.2d %d", monthstr[tm->tm_mon], tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_year + 1900); } else { if (tm->tm_year == tm_current.tm_year) /* date with year and without time */ sprintf (timestr, "%s %.2d %.2d:%.2d", monthstr[tm->tm_mon], tm->tm_mday, tm->tm_hour, tm->tm_min); else /* date without year and with time */ sprintf (timestr, "%d %s %.2d", tm->tm_year + 1900, monthstr[tm->tm_mon], tm->tm_mday); } #endif } CWidget *CDrawFilelist (const char *identifier, Window parent, int x, int y, int width, int height, int line, int column, struct file_entry *directentry, long options) { return (*look->draw_file_list) (identifier, parent, x, y, width, height, line, column, directentry, options); } CWidget *CRedrawFilelist (const char *identifier, struct file_entry *directentry, int preserve) { return (*look->redraw_file_list) (identifier, directentry, preserve); } struct file_entry *CGetFilelistLine (CWidget * w, int line) { return (*look->get_file_list_line) (w, line); }