mirror of https://github.com/fltk/fltk
80 lines
1.9 KiB
C++
80 lines
1.9 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);
|
|
|
|
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;
|
|
|
|
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);
|
|
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);
|
|
};
|
|
|
|
#endif // _FLUID_FILE_H
|