EDE code
Go to file
Sanel Zukan fcf808bd82 Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
datas Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
docs/ede Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
ecolorconf Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
econtrol Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
edelib2 Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
edewm Cleaned some junk. 2007-03-14 23:43:02 +00:00
edialog Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
edisplayconf Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
efiler Considerable speedups in mime type resolving 2006-09-02 12:54:42 +00:00
efinder Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
eiconman Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
eiconsconf Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
eimage Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
einstaller Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
ekeyconf Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
elauncher Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
emenueditor Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
epanelconf Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
esvrconf Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
etimedate Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
etip Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
evolume Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
ewmconf Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
eworkpanel Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
exset Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
AUTHORS Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
BUGS Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
COPYING Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
ChangeLog Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
EDE Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
INSTALL Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
Makefile Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
NEWS Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
README.alpha Commit README.alpha 2006-08-23 10:59:00 +00:00
README.in Importing EDE2 code to svn... NOTE: It doesn't compile! Stuff thats broken: edewm, eworkpanel, eiconman, 2006-08-20 18:43:09 +00:00
README.patches Importing EDE2 code to svn... NOTE: It doesn't compile! Stuff thats broken: edewm, eworkpanel, eiconman, 2006-08-20 18:43:09 +00:00
configure.in Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
ede.spec.in Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
edeconf.h.in Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
install-sh Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
l10n-prepare.pl Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
makeinclude.in Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
mkinstalldirs Now did a real chmod -x. 2007-03-15 01:06:18 +00:00
tempfile.tmp Importing EDE2 code to svn... NOTE: It doesn't compile! Stuff thats broken: edewm, eworkpanel, eiconman, 2006-08-20 18:43:09 +00:00
vedran.plan My .plan 2006-08-30 10:52:30 +00:00

README.patches

Quick and dirty document for patchers
-------------------------------------

Before sending any type of code patches, make sure to
check a few things:

Tabs
----
Althought we currently does not require specific coding style (aren't we liberate :)
we are very sensitive on tabs. So _use_ them. This will enable not only to us, but
to others, easier switching between screen resolutions etc. (many modern editors allow
setting tab sizes). Also it is much easier to convert tabs to spaces, than otherwise
(if we change opinion to tabs and switch to spaces only). Boring know, but keep it in mind.

eFLTK/FLTK knowledge
--------------------
This is one of the most important things. Make sure you have at least basic understainding of
eFLTK/FLTK, especially for draw() and handle(int) functions. They are very sensitive which
means every move/resize/etc. will call these functions (aka. do not use heavy calculations
inside, reading/writing files etc.)

Memory
------
What you allocate, make sure to deallocate too. Some things should not be deallocated 
explicitly like some eFLTK/FLTK widgets, but for this, check above.


After you read above, applied on code, and decided to send us, please test your code before
sending. Test on everything. Test on power loss, bad food, cold coffee... And, of course
test on speed. If it looks nice, but slow as hell, big as big's mamas house, recosider to
remove these glitches, or if that is not possible, note us like "I want that feature,
have a patch, but it is slooooowww". We will came up with something.

End, for now...