2005-03-21 09:28:30 +03:00
|
|
|
//
|
|
|
|
// Code editor widget for the Fast Light Tool Kit (FLTK).
|
2021-12-08 17:52:15 +03:00
|
|
|
// Syntax highlighting rewritten by erco@seriss.com 09/15/20.
|
2005-03-21 09:28:30 +03:00
|
|
|
//
|
2022-11-10 01:12:55 +03:00
|
|
|
// Copyright 1998-2022 by Bill Spitzak and others.
|
2005-03-21 09:28:30 +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-21 09:28:30 +03:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-03-21 09:28:30 +03:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
2005-03-21 09:28:30 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef CodeEditor_h
|
2020-09-16 19:33:24 +03:00
|
|
|
#define CodeEditor_h
|
2005-03-21 09:28:30 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// Include necessary headers...
|
|
|
|
//
|
|
|
|
|
2021-12-08 17:52:15 +03:00
|
|
|
#include "StyleParse.h"
|
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Text_Buffer.H>
|
|
|
|
#include <FL/Fl_Text_Editor.H>
|
|
|
|
|
2020-09-16 19:33:24 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2021-12-08 17:52:15 +03:00
|
|
|
|
|
|
|
// ---- CodeEditor declaration
|
2005-03-21 09:28:30 +03:00
|
|
|
|
|
|
|
class CodeEditor : public Fl_Text_Editor {
|
2020-09-19 20:43:27 +03:00
|
|
|
friend class StyleParse;
|
|
|
|
|
2005-03-21 09:28:30 +03:00
|
|
|
static Fl_Text_Display::Style_Table_Entry styletable[];
|
2020-09-16 19:33:24 +03:00
|
|
|
static void style_parse(const char *tbuff, char *sbuff, int len, char style);
|
2005-03-21 09:28:30 +03:00
|
|
|
static void style_unfinished_cb(int, void*);
|
|
|
|
static void style_update(int pos, int nInserted, int nDeleted,
|
|
|
|
int /*nRestyled*/, const char * /*deletedText*/,
|
|
|
|
void *cbArg);
|
2005-04-12 01:16:25 +04:00
|
|
|
static int auto_indent(int, CodeEditor* e);
|
2005-03-24 07:07:19 +03:00
|
|
|
|
2021-12-08 17:52:15 +03:00
|
|
|
public:
|
2005-03-21 09:28:30 +03:00
|
|
|
CodeEditor(int X, int Y, int W, int H, const char *L=0);
|
|
|
|
~CodeEditor();
|
2005-11-03 23:43:19 +03:00
|
|
|
int top_line() { return get_absolute_top_line_number(); }
|
2012-04-13 18:45:18 +04:00
|
|
|
void textsize(Fl_Fontsize s);
|
2021-12-08 20:55:34 +03:00
|
|
|
int scroll_row() { return mTopLineNum; }
|
|
|
|
int scroll_col() { return mHorizOffset; }
|
2005-03-21 09:28:30 +03:00
|
|
|
};
|
|
|
|
|
2021-12-08 17:52:15 +03:00
|
|
|
// ---- CodeViewer declaration
|
2006-04-28 05:00:41 +04:00
|
|
|
|
2021-12-08 17:52:15 +03:00
|
|
|
class CodeViewer : public CodeEditor {
|
|
|
|
public:
|
2006-04-28 05:00:41 +04:00
|
|
|
CodeViewer(int X, int Y, int W, int H, const char *L=0);
|
2012-04-13 18:45:18 +04:00
|
|
|
|
2021-12-08 17:52:15 +03:00
|
|
|
protected:
|
2022-12-30 21:14:36 +03:00
|
|
|
int handle(int ev) FL_OVERRIDE{ return Fl_Text_Display::handle(ev); }
|
|
|
|
void draw() FL_OVERRIDE;
|
2006-04-28 05:00:41 +04:00
|
|
|
};
|
|
|
|
|
2022-11-10 01:12:55 +03:00
|
|
|
// ---- DesignViewer declaration
|
|
|
|
|
2022-11-23 17:17:54 +03:00
|
|
|
class TextViewer : public Fl_Text_Display {
|
2022-11-10 01:12:55 +03:00
|
|
|
public:
|
2022-11-23 17:17:54 +03:00
|
|
|
TextViewer(int X, int Y, int W, int H, const char *L=0);
|
|
|
|
~TextViewer();
|
2022-11-10 01:12:55 +03:00
|
|
|
int top_line() { return get_absolute_top_line_number(); }
|
|
|
|
};
|
|
|
|
|
2005-03-21 09:28:30 +03:00
|
|
|
#endif // !CodeEditor_h
|