2005-03-20 16:38:04 +03:00
|
|
|
//
|
|
|
|
// FLUID undo definitions for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2024-08-31 21:36:34 +03:00
|
|
|
// Copyright 1998-2024 by Bill Spitzak and others.
|
2005-03-20 16:38:04 +03: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
|
2005-03-20 16:38:04 +03:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-03-20 16:38:04 +03:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
2005-03-20 16:38:04 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef undo_h
|
2021-12-08 17:52:15 +03:00
|
|
|
#define undo_h
|
|
|
|
|
|
|
|
class Fl_Widget;
|
2005-03-20 16:38:04 +03:00
|
|
|
|
2024-08-31 21:36:34 +03:00
|
|
|
#define kUndoWindowResize 1
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
extern int undo_current; // Current undo level in buffer
|
|
|
|
extern int undo_last; // Last undo level in buffer
|
|
|
|
extern int undo_save; // Last undo level that was saved
|
2024-08-31 21:36:34 +03:00
|
|
|
extern int undo_once_type; // Suspend further undos of the same type
|
2005-03-20 16:38:04 +03:00
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
void redo_cb(Fl_Widget *, void *); // Redo menu callback
|
|
|
|
void undo_cb(Fl_Widget *, void *); // Undo menu callback
|
|
|
|
void undo_checkpoint(); // Save current file to undo buffer
|
2024-08-31 21:36:34 +03:00
|
|
|
void undo_checkpoint_once(int type); // Save undo buffer once until a different checkpoint type is called
|
2020-07-01 19:03:10 +03:00
|
|
|
void undo_clear(); // Clear undo buffer
|
|
|
|
void undo_resume(); // Resume undo checkpoints
|
|
|
|
void undo_suspend(); // Suspend undo checkpoints
|
2005-03-20 16:38:04 +03:00
|
|
|
|
|
|
|
#endif // !undo_h
|