1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// File loading routines for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2010-11-29 00:06:39 +03:00
|
|
|
// Copyright 1998-2010 by Bill Spitzak and others.
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Browser.H>
|
|
|
|
#include <stdio.h>
|
2008-09-19 21:40:20 +04:00
|
|
|
#include <FL/fl_utf8.h>
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2008-09-14 16:45:42 +04:00
|
|
|
/**
|
|
|
|
Clears the browser and reads the file, adding each line from the file
|
|
|
|
to the browser. If the filename is NULL or a zero-length
|
|
|
|
string then this just clears the browser. This returns zero if there
|
|
|
|
was any error in opening or reading the file, in which case errno
|
|
|
|
is set to the system error. The data() of each line is set
|
|
|
|
to NULL.
|
2009-03-27 19:52:31 +03:00
|
|
|
\param[in] filename The filename to load
|
|
|
|
\returns 1 if OK, 0 on error (errno has reason)
|
|
|
|
\see add()
|
2008-09-14 16:45:42 +04:00
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
int Fl_Browser::load(const char *filename) {
|
|
|
|
#define MAXFL_BLINE 1024
|
|
|
|
char newtext[MAXFL_BLINE];
|
|
|
|
int c;
|
|
|
|
int i;
|
|
|
|
clear();
|
|
|
|
if (!filename || !(filename[0])) return 1;
|
2008-09-11 03:56:49 +04:00
|
|
|
FILE *fl = fl_fopen(filename,"r");
|
1998-10-06 22:21:25 +04:00
|
|
|
if (!fl) return 0;
|
|
|
|
i = 0;
|
|
|
|
do {
|
2020-07-01 19:03:10 +03:00
|
|
|
c = getc(fl);
|
|
|
|
if (c == '\n' || c <= 0 || i>=(MAXFL_BLINE-1)) {
|
|
|
|
newtext[i] = 0;
|
|
|
|
add(newtext);
|
|
|
|
i = 0;
|
|
|
|
} else {
|
|
|
|
newtext[i++] = c;
|
|
|
|
}
|
1998-10-06 22:21:25 +04:00
|
|
|
} while (c >= 0);
|
|
|
|
fclose(fl);
|
|
|
|
return 1;
|
|
|
|
}
|