| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
there was a 'line-height: 0%;' that resulted in unreadable edc code in
the Edje Data Collection reference documentation page.
Thank you Jeremy Suntheimer for spotting that!
fix T5438
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Summary:
Since eina_model was dropped some years ago.
Also a few other points where related stuff is just commented out.
Reviewers: iscaro, barbieri
Reviewed By: barbieri
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4442
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Summary:
fix warnings while generating documents
- end of file while inside a group (eina_util.h)
- missing title after \defgroup
- ignoring title "Ecore_Con_Lib_Group" that does not match old title
Reviewers: Hermet
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4420
|
|
|
|
|
|
|
| |
This was missing in the release tarballs before breaking a make doc run from
them.
@fix
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
While elm docs have been merged in they never have been accessible from the
main page of our docs. Fix this by including elm_intro.h and referencing it
from the main page. While we are at it rename it to the scheme we used in EFL.
Another missing piece was the index with all widget references. Never brought
over form the elm legacy tree. Putting this in and we are now at least able to
navigate to all elm widget pages.
|
|
|
|
|
| |
The preview example code was already there but not hooked up in our preview
screenshot magic.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
These is no such file.
Hopefully this will fix make dist.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Test Plan:
elementary_test -to "nstate"
@feature
Reviewers: yashu21985, tasn, Hermet, seoz, smohanty, felipealmeida, JackDanielZ, jypark, woohyun, herdsman, raster, cedric, jpeg
Subscribers: saurabhbunty, seoz
Differential Revision: https://phab.enlightenment.org/D3786
|
| |
|
|
|
|
|
|
| |
I didn't know preview generation was so slow and done completely serialy.
There is potential improvement here. Still need to kind of merge the
documentation into something readable.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Doxygen uses its on preprocessor and this one missed the
EFL_BETA_API_SUPPORT=1 define so none our our BETA api hidden behind
it was build for our documentation.
ref T2541
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Summary:
Fix a sentence.
Changes:
src/examples/eio/eio_file_ls.c
Reviewers: cedric
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D2894
|
|
|
|
|
|
|
| |
Thanks @aerodynamik for even giving the proper environment
variable to set :)
Fixes T2614
|
|
|
|
|
|
| |
The error message was:
/usr/bin/ld: preview_text_filter.o: undefined reference to symbol 'efl_gfx_filter_program_set'
//home/batden/Enlightenment20/efl/src/lib/efl/.libs/libefl.so.1: error adding symbols: DSO missing from command line
|
|
|
|
|
|
|
|
|
| |
Until we're happy with it, keep the API as beta.
The EDC support should not change, and the Lua either, but the
API could potentially still change to accomodate for new needs
(vector graphics, anyone?). If we're happy with the current
interface, then we can remove the @beta flags.
|
|
|
|
|
|
|
| |
Deep down internally there was already a name, but no API could
really set it properly.
Here Edje will set the name of the filter based on the part name
or the data item name if relevant.
|
|
|
|
|
|
|
|
|
|
|
| |
This creates the new interface
Efl.Gfx.Filter
And the implementation is a mixin (evas_filter_mixin.c):
Evas.Filter
All the filter rendering code has now been moved to this
new file. TODO: Merge image filtering.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Using eina::string_view in eolian generated interfaces (instead of
std::string) to allow lightweight passing of both C strings and C++
std::string.
Also, No longer using eina::optional in generated headers for types
that already implements the concept of null state (like Eo wrappers
and eina_accessor).
Also fix allocating callback objects require by class methods
(i.e. static) in static vectors so the memory will be freed when the
programs exit.
Added a new test case for testing callbacks on class methods.
Moved method definitions and supplementary code from generated C++
wrappers to auxiliary header file (.eo.impl.hh) generated together
with the main ".eo.hh" file. Updated Makefiles to list such files in
the compilation and cleanup processes. Updated .gitignore to include
these new generated files.
Made general adjustments on the documentation of generated C++ wrappers
Added "PREDEFINED" preprocessor macro definition in the Doxyfile.in in
order to make some adjustments for better documentation in the C++
generated headers. Excluding generation of documentation for classes
in the "eo_cxx" namespace (the namespace for "abstract" eolian C++
wrappers). Now generating the documentation for the events too.
Hiding some auxiliary code from being documented. Some aesthetic
adjustments for generated white space. Generate documentation for the
main constructor of C++ wrappers and added auxiliary grammars to list
parameters names.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Summary:
emmited ==> emitted
resistence ==> resistance
occured ==> occurred
Reviewers: cedric, zmike, devilhorns
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D2192
|
| |
|
|
|
|
| |
This reverts commit 3ed4f745907d3e842e64b341e2426c0c99cf3297.
|
|
|
|
|
|
|
| |
While we used different variation of mkdir -p all over we also had spots
where we did not use the option. This is one step in trying to make our
build system ready for parallel install. Using something like -j 10 even
for the install should help to speed up our jenkins jobs as well as distcheck.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Summary:
While going through eina for understanding, wrote a program to understand
he differences between different eina inarray functions. Thought, this might
be useful for others too, so adding the same.
Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com>
Reviewers: devilhorns
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D1803
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Summary:
Add top padding to prevent overlapping between "Value:" and below
strings when long macro is used.
Reviewers: raster, cedric
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D1582
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
|
| |
|
|
|
|
| |
Like we do in Elementary already.
|
| |
|
|
|
|
| |
Make sure these are marked as BETA as we don't guarantee API for these just now.
|
| |
|
|
|
|
|
|
| |
This reverts commit 4341c8a4373fbfeb1a1879b25ca4a496ae214d85.
This patch was pushed I guess after an automatic git rebase without conflict.
|
|
|
|
|
| |
doc/preview/Makefile.am must include $(srcdir)/lib/efl/ to be able to
find Efl.h.
|
| |
|
|
|
|
|
| |
The entry point to our docs (docs.enlightenment.org) makes clear what is links
go to the docs for the latest release and which goes to development.
|
| |
|
| |
|
|
|
|
| |
I still don't know why there is still a warning.
|
|
|
|
|
| |
* Be consistent with the way we specify parameters
* A last css refinement
|