• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-

fox/H03-May-2022-3,6742,901

include/H03-May-2022-7,7966,769

lexers/H03-May-2022-38,28730,885

lexlib/H03-May-2022-2,5382,001

m4/H09-Aug-2011-8,4497,610

src/H03-May-2022-23,69519,228

tests/H03-May-2022-664551

util/H09-Aug-2011-274221

COPYINGH A D09-Aug-201125.8 KiB506418

COPYRIGHTSH A D09-Aug-2011178 73

ChangeLogH A D09-Aug-20112.8 KiB10768

INSTALLH A D09-Aug-20118.4 KiB207157

Makefile.amH A D09-Aug-2011349 1915

Makefile.inH A D03-May-202224.3 KiB781691

READMEH A D09-Aug-20112.9 KiB10168

aclocal.m4H A D09-Aug-2011335.5 KiB9,5398,587

bootstrap.shH A D09-Aug-2011347 2217

config.guessH A D09-Aug-201143.9 KiB1,5021,291

config.subH A D09-Aug-201133.6 KiB1,7061,558

configureH A D09-Aug-2011533.3 KiB17,72113,650

configure.inH A D09-Aug-20112.2 KiB8370

depcompH A D09-Aug-201118.2 KiB631407

fxscintilla.pc.inH A D09-Aug-2011314 119

install-shH A D09-Aug-201113.3 KiB521344

ltmain.shH A D09-Aug-2011276.1 KiB9,6377,288

missingH A D09-Aug-201111.2 KiB377281

README

1What is FXScintilla ?
2---------------------
3
4Scintilla is a free source code editing component for Win32 and GTK+
5developped by Neil Hodgson.
6For more information about Scintilla, see http://www.scintilla.org.
7
8The FOX GUI toolkit is a platform independent GUI library developped
9by Jeroen van der Zijp.
10For more information about FOX, see http://fox-toolkit.org.
11
12FXScintilla is an implementation of Scintilla for the FOX GUI Library.
13
14
15Where to get it ?
16-----------------
17
18FXScintilla can be downloaded from the FXScintilla project pages on
19Savannah:
20
21	http://savannah.gnu.org/projects/fxscintilla/
22
23
24Mailing list
25------------
26
27There is two mailing lists related to FXScintilla:
28- fxscintilla-announce : FXScintilla new release and events announcement
29- fxscintilla-users    : FXScintilla end users questions and discussions
30To subscribe to any of these lists, please see instuctions on the
31FXScintilla project page (http://savannah.gnu.org/projects/fxscintilla/).
32
33
34Installation
35------------
36
37Please refer to the file INSTALL.
38FXScintilla should compile on every platform where both FOX and Scintilla
39are available : Win32 and Unix systems.
40
41
42Getting started
43---------------
44
45Here is a rough sample about how to integrate FXScintilla into a FOX app
46
47//--------------------------------------------------------
48#include <fx.h>
49#include <Scintilla.h>
50#include <FXScintilla.h>
51
52int main(int argc, char ** argv)
53{
54	FXApp application("test");
55	application.init(argc, argv);
56	FXMainWindow * win = new FXMainWindow(&application, "Test");
57
58	// Instanciating an FXScintilla widget
59	FXScintilla * scint = new FXScintilla(win, NULL, 0, LAYOUT_FILL_X|LAYOUT_FILL_Y);
60
61  // The Scintilla programming interface is through messages
62	// � la Windows (see scintilla/doc/ScintillaDoc.html)
63	scint->sendMessage(SCI_STYLESETFONT, STYLE_DEFAULT, (long)"lucida");
64	scint->sendMessage(SCI_STYLESETSIZE, STYLE_DEFAULT, (long)10);
65	scint->sendMessage(SCI_STYLECLEARALL, 0, 0);
66
67	application.create();
68	win->show(PLACEMENT_SCREEN);
69	application.run();
70	return 0;
71}
72//--------------------------------------------------------
73
74Bugs
75----
76
77Please file bugs and questions to the mailing list fxscintilla-users.
78
79
80License
81-------
82
83FXScintilla is free software; you can redistribute it and/or modify
84it under the terms of the GNU Lesser General Public License as published by
85the Free Software Foundation; either version 2.1 of the License, or
86(at your option) any later version.
87
88FXScintilla is distributed in the hope that it will be useful,
89but WITHOUT ANY WARRANTY; without even the implied warranty of
90MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
91GNU Lesser General Public License for more details.
92
93You should have received a copy of the GNU Lesser General Public License
94along with FXScintilla; if not, write to the Free Software
95Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
96
97
98
99
100_______Gilles Filippini <gilles.filippini@free.fr>_______
101