Boris Faure
1619b744f3
update man page
10 years ago
Boris Faure
4f05397bd5
tabs are implemented
10 years ago
Boris Faure
35627a9395
remove useless code
10 years ago
Boris Faure
03802df2a9
simple click doesn't create one-char selection
...
(for real…)
10 years ago
Boris Faure
06337a8d67
only require 1.7.0 for smart git users
10 years ago
Boris Faure
05ea863dc5
disable selection when resizing
...
because I don't want to deal with that for the moment
10 years ago
Boris Faure
2fcdd866ad
remove debug =]
10 years ago
Boris Faure
997b83cad4
fix simple click producing one-char selection
10 years ago
Boris Faure
8c7dab9fdf
remove selection when content selected changes
10 years ago
Boris Faure
bc15fc6ff6
keep selection when scrolling
10 years ago
Boris Faure
d682db21fb
selection to the edges scrolls
10 years ago
Boris Faure
90d3bf483c
fix stretching selection
10 years ago
Boris Faure
082942ef55
fix clicking to unselect
10 years ago
Boris Faure
c16786416d
simplify selection code
10 years ago
Boris Faure
e9db7e6ed9
_smart_xy_to_cursor() now returns inside coordinates
10 years ago
Boris Faure
4ac9704be2
"#if defined(SUPPORT_DBLWIDTH)"--
...
and let the compiler remove the calls whenever needed
10 years ago
Boris Faure
4a9e61cb2e
fix selection going up/left
10 years ago
Boris Faure
1dc0d30b60
reorganize structures about selection
10 years ago
Boris Faure
7617f39f1a
small debug-related changes
10 years ago
Boris Faure
4d629c5575
do not try to reflow altbuf
10 years ago
Daniel Juyung Seo
abaee4afd9
main: Fixed dereferencing null pointer issues.
...
This fixes coverity CID 1100652 and 1100653.
10 years ago
Daniel Juyung Seo
b242383234
config: fixed dereferencing null pointer issue.
...
This fixes coverity CID 1100654.
10 years ago
Daniel Juyung Seo
20afe23c5b
termio: fixed null pointer dereferencing issue.
...
This fixes coverity CID 1100645.
10 years ago
Daniel Juyung Seo
f5df6ce99d
termptyesc: removed unnecessary null check for free.
...
This fixes coverity CID 1100643.
10 years ago
Daniel Juyung Seo
e0bd4fd6f7
termptyesc: fixed up wrong null check.
...
This solves coverity CID 1100642.
10 years ago
Doug Newgard
a84841a078
PKGBUILD Cleanup
...
Summary:
Change pkgname to variable instead of array
Remove optdepend, no more efl_x11 package
Remove strip and zipman options, they are default and we shouldn't override them if we don't need to
Set CFLAGS correctly and remove -02 and -g, again defaults we shouldn't override unless necessary
Only run make clean distclean when there is a Makefile to prevent build failure
Quote all paths with $pkgdir
Add PKGBUILD to EXTRA_DIST so it gets included in make dist
Reviewers: raster
Reviewed By: raster
Differential Revision: https://phab.enlightenment.org/D284
10 years ago
Carsten Haitzler
109e1b124d
readme is 0.4.0 now
10 years ago
Boris Faure
e724c8d0db
missing EINA_UNUSED
10 years ago
Boris Faure
432587bc79
fix typo. CID 1126105, 1126106
10 years ago
Carsten Haitzler
af2b85bb0e
set up an alpha1 for terminology 0.4
10 years ago
Carsten Haitzler
0734ed8d57
efl version - bump version req for e18 to efl 1.8 (thus the coming alpha)
10 years ago
Gustavo Sverzut Barbieri
016faae650
termio: right click on links show special menu.
...
This patches uses ctxpopup (ugh, this bitch is awful) to show a
contextual menu about that link with options such Preview (if able to
inline), Open (forces xdg-open) and Copy, then you don't have to
select a link in order to copy it :-)
This fixes T430 (terminology should copy link on right-click and no selection)
10 years ago
Gustavo Sverzut Barbieri
1745503b89
termio: do not handle selection if it doesn't exist.
...
A typical case is when you try to force xdg-open on a media (instead
of inline) by pressing "Control". This would trigger single-click box
selection on mouse-down but on mouse up the mouse didn't move yet. By
processing this as selection one also leaves the "didclick ==
EINA_TRUE" from mouse-down, leading the link to not be processed
(_activate_link() wasn't called).
PS: what an awful name is "didclick".
10 years ago
Gustavo Sverzut Barbieri
b50e64f80b
controls: disable "copy" when there is no selection.
10 years ago
Gustavo Sverzut Barbieri
6562cdabc2
termio: allow monitoring if selection exists.
...
Export new termio_selection_exists() and two signals: "selection,on"
and "selection,off". These will be used to control the state of the
"copy" button and menus (when those exist).
10 years ago
Cedric Bail
7b3b25634e
terminology: add support for some more file extension.
...
The way to detect image is not that great in fact. Wondering if we
could improve it. Those new type are quite slow btw.
10 years ago
Carsten Haitzler
476915c5cf
oops - i thought i committed this - remove commented out code from prev commit
10 years ago
Carsten Haitzler
5958eff338
unbreak inlined media being unparented when tab selector is used
...
82f4d3546a
introduced this bug (oct 20
2013 - discomfitor). now missing a _smart_apply() causes the bug. why
- not sure.
10 years ago
Doug Newgard
854c5479e0
[terminology] Fix make dist
...
Summary: Just a couple of missing pngs
Reviewers: raster
Differential Revision: https://phab.enlightenment.org/D283
10 years ago
Cedric Bail
964e1f39a9
terminology: factorise some code and help the compiler figure out which branch is the most likely one.
10 years ago
Cedric Bail
433b18b211
terminology: let the compiler inline more agressively the common case for a 1% win.
10 years ago
Cedric Bail
c1b516f231
terminology: inline the most common case for a small 2% speed up.
10 years ago
Carsten Haitzler
8585c3e9c2
maybe speed up term scroll byt skipping compare work
...
since nothing useful is actually done unless either oldc or newc have
a media char - then try return/skip early. might speed up by 2-5%...
(i see 4.05 vs 4.15 or so cat times for a test case).
10 years ago
discomfitor
82f4d3546a
improve previous smart queue commit by deleting existing animator
...
this completely fixes annoying issues where mousing out of the terminal fails to de-linkify text
moderately reviewed by: billiob
10 years ago
discomfitor
2ad1d55e59
only queue smart updates from termio_mouseover_suspend_pushpop when link.suspend is 0
...
almost reviewed-by: billiob
10 years ago
Boris Faure
e45fec3127
try to avoid a race when moving cursor out
10 years ago
Boris Faure
5bf1dd9ca2
now that T441 is fixed, always remove links on MOUSE_OUT
10 years ago
Daniel Juyung Seo
ab982fa9a6
zoom option: tab zoom animation time can go down to zero if users want.
10 years ago
Sebastian Dransfeld
cf19e3f987
Fix define
...
Seems gcc 4.6.3 on ubuntu 12.04 (gcc version 4.6.3 (Ubuntu/Linaro
4.6.3-1ubuntu5)) does not R as define.
error: stray ‘R’ in program
10 years ago
Carsten Haitzler
aef3d275d2
lets reduce the theme color strings in size since there are so many - memory
10 years ago