Commit Graph

2343 Commits

Author SHA1 Message Date
Carsten Haitzler 4d034f4643 tone donw shine on top, add a glint, and actually make cursor sexy :)
SVN revision: 72441
2012-06-19 06:56:25 +00:00
Jihoon Kim 362bc6b233 terminology: fix build error in case of no ecore-imf
SVN revision: 72433
2012-06-19 04:29:10 +00:00
Jihoon Kim b9d7a35e74 terminology: set cursor location whenever cursor is moved
SVN revision: 72432
2012-06-19 04:16:36 +00:00
Jihoon Kim f49c145869 terminology: add __UNUSED__ for unused parameter
SVN revision: 72431
2012-06-19 03:42:20 +00:00
Gustavo Sverzut Barbieri 9ad9f44669 fix ecore-imf linkage
SVN revision: 72429
2012-06-19 01:07:33 +00:00
Rafael Antognolli ec18871272 terminology: Fix ecore-imf DSO missing flag.
SVN revision: 72428
2012-06-19 01:02:19 +00:00
Gustavo Sverzut Barbieri 4f4dd65c97 add IMF support, composited keys! usable with us-intl keyboard ;-)
SVN revision: 72427
2012-06-19 00:37:27 +00:00
Gustavo Sverzut Barbieri a68eeeca8f minor speedup to lookup keynames.
just compare the string if input size matches.



SVN revision: 72420
2012-06-18 21:36:42 +00:00
Gustavo Sverzut Barbieri 40a519c8d9 support box drawing codes.
Many thanks to KainX for his help to understand the code and
rxvt-unicode for his table to convert the code to unicode codepoints.



SVN revision: 72419
2012-06-18 21:24:33 +00:00
Carsten Haitzler 561e86c6c8 fix warnings, adjust license to BSD in -L output.
SVN revision: 72407
2012-06-18 14:22:15 +00:00
Carsten Haitzler a36cce4ef6 support intense colors.
SVN revision: 72406
2012-06-18 13:59:09 +00:00
Christopher Michael b12b4da7e9 Terminology: Add autogen.sh to Makefile.am for Sleep_Walker.
SVN revision: 72391
2012-06-18 12:42:25 +00:00
Carsten Haitzler bb5a03f0af limit updates to fps.
SVN revision: 72388
2012-06-18 12:14:36 +00:00
Carsten Haitzler 4a071403a0 fix backscroll reconfig segv
SVN revision: 72384
2012-06-18 11:18:46 +00:00
Carsten Haitzler 464b2986ed fix file set for font preview to use config theme path return.
SVN revision: 72383
2012-06-18 11:07:05 +00:00
Carsten Haitzler 9568fb677f debugprintf-- - not needed anymore
SVN revision: 72378
2012-06-18 09:55:52 +00:00
Tom Hacohen 12fcd78ef2 Terminology: Fixed shift + arrows to send the right escapes.
SVN revision: 72375
2012-06-18 09:18:29 +00:00
Cedric BAIL 8735794442 terminology: shift + double click now expand the selection to the clicked word.
SVN revision: 72374
2012-06-18 08:56:27 +00:00
Carsten Haitzler 0f9656408f fix options/fontpreivew for mild.
SVN revision: 72371
2012-06-18 08:29:34 +00:00
Tom Hacohen 1412485b6d Terminology: Support CTRL+Arrow sequences.
SVN revision: 72368
2012-06-18 08:07:41 +00:00
Carsten Haitzler efb9cd7567 actually get elm scale config val and set on textgrid nd preview
objects.



SVN revision: 72367
2012-06-18 07:54:40 +00:00
Carsten Haitzler 4ea4ab4d32 use new item styles for genlist and make font preview wide.
SVN revision: 72366
2012-06-18 07:43:44 +00:00
Carsten Haitzler a97e4a8763 sorry gustavo -> font preview has gone back to how it was before. it
was bithc-slow on creation and its a shame to waste the spare icon
slot. i'll add a new style ot genlist in e17 to have ONLy a start or
end icon and then use that. the preview text entry i feel has dubious
use... lets discuss, but it doesnt belong in that dialog/pane.



SVN revision: 72335
2012-06-18 06:32:56 +00:00
Cedric BAIL fa397e90f6 terminology: reload theme when file change.
NOTE: use edje_watch to test the change to your own theme faster.


SVN revision: 72332
2012-06-18 02:56:58 +00:00
Carsten Haitzler b090970d16 ok then - BSD. so it can be a lib.
SVN revision: 72324
2012-06-17 23:20:17 +00:00
Gustavo Sverzut Barbieri 3382690cb2 oops, do not need to del it.
SVN revision: 72321
2012-06-17 22:34:41 +00:00
Gustavo Sverzut Barbieri d2321e4f65 improve and simplify font preview.
Allow user-defined text to be used, some letters are a pain like zero
x "o", "l" x "1"...

I've simplified the preview to use a single edje object and text
class, but the item is not growing as expected on updates... Edje bug?



SVN revision: 72320
2012-06-17 22:30:07 +00:00
Gustavo Sverzut Barbieri b220b1e468 play nice: use XDG_CONFIG_HOME for configuration files.
SVN revision: 72317
2012-06-17 20:59:54 +00:00
Gustavo Sverzut Barbieri ffa6d0ab67 bugfix showing options.
SVN revision: 72316
2012-06-17 20:29:25 +00:00
Gustavo Sverzut Barbieri 652df62d45 options infrastructure refactor.
There is no global config option anymore, we have option instances
that are set to the termio and media for future queries.

The idea is that we can later have different configuration per termio,
like multiple windows or tabs with different font size, background,
etc.

It's just a refactor. It would be better to define if things like
background is up to the whole terminal and then save to a different
config entry... or just save the global and copy it for next termio,
defining the other instances as 'temporary'. Anyway: policy to be defined.



SVN revision: 72315
2012-06-17 20:24:23 +00:00
Gustavo Sverzut Barbieri 35e7dbbf4e better handle -e 'command' if there is a shell expression.
If command contains spaces, $ or other known shell commands, it's
spawned with a "sh -c $COMMAND" instead.

this allows us to start terminology to "watch ps" or things like that.

Also changed the return code on failure to 127, similar to system(3).

NOTE: should we reset some signals? Remember that ecore traps most of them.



SVN revision: 72313
2012-06-17 19:13:03 +00:00
Gustavo Sverzut Barbieri 329c558c5d performance: allow limiting the maximum log level at compile time.
Although eina_log is not that harmful, allowing the user to remove
debug/info messages for production is good, it reduces the overhead
and also allows removing the strings from the final binary.

I'd recommend production builds with:

   ./configure --with-maximum-log-level=2





SVN revision: 72311
2012-06-17 18:41:23 +00:00
Gustavo Sverzut Barbieri 1a15b87491 use $SHELL and simplify logic a bit.
SVN revision: 72310
2012-06-17 18:28:19 +00:00
Gustavo Sverzut Barbieri e099b4a8d9 add mild theme without that weird highlight.
SVN revision: 72309
2012-06-17 18:12:38 +00:00
Gustavo Sverzut Barbieri 03e58cbad2 fix cursor and fontpreview when theme is an absolute path.
SVN revision: 72308
2012-06-17 18:03:33 +00:00
Gustavo Sverzut Barbieri 7f0c9cdc47 remove shadow warning.
"i" is already defined at the beginning of the function and is
(ab)used everywhere.

I'd rather narrow the variable scope to where it's used, but would
require a major refactor of the code.



SVN revision: 72307
2012-06-17 17:38:03 +00:00
Daniel Juyung Seo 8497f7a389 terminology .gitignore: Updated .gitignore
SVN revision: 72305
2012-06-17 17:20:27 +00:00
Gustavo Sverzut Barbieri 4a31ed1658 remove shadow warnings of math.h y1 constant.
to make it readable I've used 'start_y = y1'

to make it sane, I've replaced 'end_y = y2', then x1, x2 as well.



SVN revision: 72303
2012-06-17 17:13:50 +00:00
Gustavo Sverzut Barbieri 3fe325aad5 reduce number of warnings with -Wall -Wextra.
there are still some shadow cases to be fixed and some parameters I've
left unused since it seems like a bug in the API or code.



SVN revision: 72302
2012-06-17 17:04:17 +00:00
Gustavo Sverzut Barbieri 3ecf32e825 ignore built/generated files
SVN revision: 72301
2012-06-17 16:36:59 +00:00
Gustavo Sverzut Barbieri fec0f1e071 add logging for our sanity
SVN revision: 72300
2012-06-17 16:32:23 +00:00
Gustavo Sverzut Barbieri 98a197c4b2 use autoconf to define system extensions for us.
SVN revision: 72299
2012-06-17 16:28:02 +00:00
Gustavo Sverzut Barbieri f7d8b9627d use getopt for our sanity.
It would be fine to review the options, particularly the short
options, to match common -t/--title, etc.



SVN revision: 72298
2012-06-17 16:03:46 +00:00
Carsten Haitzler 567fb934df fix typo
SVN revision: 72292
2012-06-17 11:04:33 +00:00
Carsten Haitzler 78affdfbdb weird if case in termio - fix.
SVN revision: 72290
2012-06-17 10:56:21 +00:00
Carsten Haitzler ce4096f1cd del options widget after 10 sec delay when they popped down.
SVN revision: 72287
2012-06-17 09:54:36 +00:00
Carsten Haitzler 6ccc3bbb9c dont need calc call.
SVN revision: 72286
2012-06-17 09:45:28 +00:00
Carsten Haitzler 9cb38365ab update todo more.
SVN revision: 72285
2012-06-17 09:44:55 +00:00
Carsten Haitzler a93b94e2fd update TODO and add tmp changes checkbox.
SVN revision: 72284
2012-06-17 09:43:47 +00:00
Carsten Haitzler 27cdf9753d set genlist to homogenous for fonts.
SVN revision: 72283
2012-06-17 09:30:10 +00:00