fltk/fluid/file.h
Matthias Melcher e8d218109e FLUID: Adds much more detailed CodeView
in preparation for "find" and "reveal"
2023-10-24 14:29:01 +02:00

83 lines
2.0 KiB
C++

//
// Fluid file routines for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2023 by Bill Spitzak and others.
//
// 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:
//
// https://www.fltk.org/COPYING.php
//
// Please see the following page on how to report bugs and issues:
//
// https://www.fltk.org/bugs.php
//
#ifndef _FLUID_FILE_H
#define _FLUID_FILE_H
#include "Fl_Type.h"
#include <FL/fl_attr.h>
class Fl_Type;
extern int fdesign_flip;
int read_file(const char *, int merge, Strategy strategy=kAddAsLastChild);
int write_file(const char *, int selected_only = 0, bool to_sourceview = false);
class Fd_Project_Reader
{
protected:
FILE *fin;
int lineno;
const char *fname;
char *buffer;
int buflen;
void expand_buffer(int length);
public:
double read_version;
public:
Fd_Project_Reader();
~Fd_Project_Reader();
int open_read(const char *s);
int close_read();
const char *filename_name();
int read_quoted();
void read_children(Fl_Type *p, int paste, Strategy strategy, char skip_options=0);
int read_project(const char *, int merge, Strategy strategy=kAddAsLastChild);
void read_error(const char *format, ...);
const char *read_word(int wantbrace = 0);
int read_int();
int read_fdesign_line(const char*& name, const char*& value);
void read_fdesign();
};
class Fd_Project_Writer
{
protected:
FILE *fout;
int needspace;
bool write_sourceview_;
public:
Fd_Project_Writer();
~Fd_Project_Writer();
int open_write(const char *s);
int close_write();
int write_project(const char *filename, int selected_only, bool sourceview);
void write_word(const char *);
void write_string(const char *,...) __fl_attr((__format__ (__printf__, 2, 3)));
void write_indent(int n);
void write_open(int);
void write_close(int n);
FILE *file() const { return fout; }
bool write_sourceview() const { return write_sourceview_; }
};
#endif // _FLUID_FILE_H