Carsten Haitzler [Fri, 19 Sep 2008 23:58:07 +0000 (23:58 +0000)]
fix dnd for desktop - if you have multiple zones! remove printf's too. lots
of noisiness in e.
SVN revision: 36103
Carsten Haitzler [Fri, 19 Sep 2008 09:47:00 +0000 (09:47 +0000)]
remvoe printfs's
SVN revision: 36094
Carsten Haitzler [Fri, 19 Sep 2008 09:44:07 +0000 (09:44 +0000)]
and - that vlc fullscreen bug. found. fixed. but vlc's x11 code is really
nasty. does some utterly evil things. should i send off some suggestions to
them? (like 1. dont reparent the window in xcommon.c line 217, dont play with
wm focus policies in xcommon.c line 2269 - just dont send the
_NET_ACTIVE_WINDOW, you shouldnt' need to (wm should make the focus be
correct itself and wm's that don't should get a freindly reminder from users
when they dont remain consistent with focus policy), and then... xcommon.c
2317 remove the do {} while loop - i can think of many reasons the wm may
choose not to map your client window (yet - or ever), so this will never work
"reliably" always. just put in an XSync(p_vout->p_sys->p_display, False);
instead to force the x pipe to flush and do everything you asked before
returning control to the code and thus avoiding any badaccess stuff from x).
SVN revision: 36093
ptomaine [Thu, 18 Sep 2008 10:35:57 +0000 (10:35 +0000)]
Allow fileman binding to open various directories, not only favorites.
SVN revision: 36074
ptomaine [Wed, 17 Sep 2008 11:16:01 +0000 (11:16 +0000)]
Fix drag'n'drop on desktop.
SVN revision: 36043
Carsten Haitzler [Wed, 17 Sep 2008 06:29:16 +0000 (06:29 +0000)]
get geometry form edje - not obj. deferred calc bork bork
SVN revision: 36039
Carsten Haitzler [Wed, 17 Sep 2008 06:03:00 +0000 (06:03 +0000)]
remove some printf's
SVN revision: 36036
Carsten Haitzler [Wed, 17 Sep 2008 05:58:46 +0000 (05:58 +0000)]
add a widget resize to min size call - convenience. tnx k-s for the oopsie
catch!
SVN revision: 36035
Gustavo Sverzut Barbieri [Wed, 17 Sep 2008 05:22:08 +0000 (05:22 +0000)]
Fix e_widget hierarchy.
e_widget_resize_object_set() gets the SUB (child) object as the second
parameter, it's named "sobj", but it's being used as the SMART
(parent) object with evas_object_smart_member_add(), so hierarchy was
all swapped.
SVN revision: 36034
Carsten Haitzler [Wed, 17 Sep 2008 02:21:00 +0000 (02:21 +0000)]
been hacking... umm. config dialog additions.
SVN revision: 36033
Gustavo Sverzut Barbieri [Tue, 16 Sep 2008 18:33:09 +0000 (18:33 +0000)]
fix make dist: Include new fileman images in distribution.
SVN revision: 36021
Gustavo Sverzut Barbieri [Tue, 16 Sep 2008 00:11:26 +0000 (00:11 +0000)]
Move and Resize using keyboard.
These new shortcuts will trigger move and resize modes that are
interactive using keyboard. Use arrows to move or resize (left/top =
shrink, right/bottom = enlarge), presse Escape to abort, Return or
mouse click or timeout to confirm.
This should work like WindowMaker or Kwin.
TODO:
- add customizable thresholds.
- figure out what to do with the old action "Move" and "Resize",
they're really useless for keyboard, just works with mouse.
SVN revision: 36010
Gustavo Sverzut Barbieri [Sun, 14 Sep 2008 20:31:03 +0000 (20:31 +0000)]
e_border_resize() now updates the popup.
SVN revision: 35986
Nicholas Hughart [Fri, 12 Sep 2008 21:31:46 +0000 (21:31 +0000)]
Fix a couple typos and detection of sysfs acpi battery info.
SVN revision: 35971
Carsten Haitzler [Thu, 11 Sep 2008 23:31:11 +0000 (23:31 +0000)]
fix hotspot in e17 - cedrics deferred edje stuff b0rked it! :(
SVN revision: 35959
Carsten Haitzler [Thu, 11 Sep 2008 03:37:06 +0000 (03:37 +0000)]
simplify thumbscroll a little.
SVN revision: 35940
Carsten Haitzler [Thu, 11 Sep 2008 03:27:34 +0000 (03:27 +0000)]
just a env var hack for playing with scaling.. for now.
SVN revision: 35938
Gustavo Sverzut Barbieri [Wed, 10 Sep 2008 18:58:18 +0000 (18:58 +0000)]
Delete the correct callback.
Actually none of these delete were required, but since we're doing
them, do it right.
SVN revision: 35934
Carsten Haitzler [Wed, 10 Sep 2008 12:42:39 +0000 (12:42 +0000)]
fix focus set loop.
SVN revision: 35928
Carsten Haitzler [Wed, 10 Sep 2008 07:31:44 +0000 (07:31 +0000)]
delete remembers works now... again.
SVN revision: 35926
Carsten Haitzler [Wed, 10 Sep 2008 06:40:24 +0000 (06:40 +0000)]
just testing.
SVN revision: 35923
Gustavo Sverzut Barbieri [Wed, 10 Sep 2008 05:47:13 +0000 (05:47 +0000)]
New version of _e_editable_text_insert, fixed.
Old version was bogus because unicode and char length were not updated
if the buffer was large enough, the usual case.
SVN revision: 35921
Carsten Haitzler [Wed, 10 Sep 2008 04:34:42 +0000 (04:34 +0000)]
commented out.. scale testing!
SVN revision: 35915
Carsten Haitzler [Wed, 10 Sep 2008 04:33:57 +0000 (04:33 +0000)]
removed editable change - breaks entering text!
SVN revision: 35914
Gustavo Sverzut Barbieri [Wed, 10 Sep 2008 02:44:49 +0000 (02:44 +0000)]
Fix various invalid memory access problems with _e_editable_text_insert
Patch by Helder Ribeiro:
Hi people,
I found a couple errors in the function _e_editable_text_insert.
- when copying from the old string (n bytes) to the new one (m > n
bytes) it was writing garbage into the new one (copying m bytes from
old);
- when memsetting the old string with 0's (part of extra security
measure for password entry) it was writing m 0's into old, therefore
writing past old's boundary, into unreserved memory;
- a couple checks for NULL were missing.
SVN revision: 35911
Gustavo Sverzut Barbieri [Sun, 7 Sep 2008 01:25:49 +0000 (01:25 +0000)]
Add calculate callback to Evas_Smart_Class.
Some people is using it for some time now without problems, so I'm
adding it to SVN to get some broader use. Remember to recompile ALL
libraries that depend on Evas as it will change the
EVAS_SMART_CLASS_VERSION and old classes will fail to load.
This will also change Edje so it will postpone _edje_recalc() to
render time, calculate() callback, however some methods will force
early recalculation.
SVN revision: 35860
Massimo Maiurana [Sat, 6 Sep 2008 08:30:07 +0000 (08:30 +0000)]
SVN revision: 35848
Massimo Maiurana [Sat, 6 Sep 2008 08:29:52 +0000 (08:29 +0000)]
don't know if there are other translatable strings because I can't build connman.
these are the most obvious.
SVN revision: 35847
Massimo Maiurana [Sat, 6 Sep 2008 08:28:19 +0000 (08:28 +0000)]
without this, compilation of e will fail on system without dbus
SVN revision: 35846
Massimo Maiurana [Sat, 6 Sep 2008 08:26:57 +0000 (08:26 +0000)]
SVN revision: 35845
Massimo Maiurana [Sat, 6 Sep 2008 08:25:57 +0000 (08:25 +0000)]
SVN revision: 35844
Carsten Haitzler [Fri, 5 Sep 2008 02:12:41 +0000 (02:12 +0000)]
useless evas_list_free()'s
SVN revision: 35835
Carsten Haitzler [Thu, 4 Sep 2008 13:57:52 +0000 (13:57 +0000)]
support ilist-stule stacking info in odd/even items
SVN revision: 35826
toma [Wed, 3 Sep 2008 12:54:31 +0000 (12:54 +0000)]
Battery popup. Need some code to make it set messages that can be translated. Another fix to the textblock. Added an urgent tag for more important things than just a hilight. Hopefully this will encourage its use a little more. Cleaned up some FIXME's and added a couple more.
SVN revision: 35808
Carsten Haitzler [Wed, 3 Sep 2008 06:04:56 +0000 (06:04 +0000)]
tmp work... tmp directory for a play area... for now.
SVN revision: 35799
Sebastian Dransfeld [Tue, 2 Sep 2008 05:36:27 +0000 (05:36 +0000)]
formatting
SVN revision: 35790
Nicholas Hughart [Tue, 2 Sep 2008 03:11:55 +0000 (03:11 +0000)]
Uhh, who was freeing local list pointers?
SVN revision: 35788
Nicholas Hughart [Mon, 1 Sep 2008 20:15:13 +0000 (20:15 +0000)]
Be a little more careful with saving config data. Don't assume rename will work in all cases. Make sure to rebuild ecore before updating E, otherwise your config will not save.
SVN revision: 35782
toma [Mon, 1 Sep 2008 15:24:32 +0000 (15:24 +0000)]
Textblock in. Revised the use of textblock tags and fixed up all the modules to use it more correctly. This style may need to be repeated across all the E-MODULES-EXTRA modules for unification of styles. The altered .desktop files still look perfectly fine on BlingBling and a few other themes Ive tested it with. The textblock style itself could probably do with a little tweaking.
SVN revision: 35776
ptomaine [Mon, 1 Sep 2008 09:51:30 +0000 (09:51 +0000)]
* Default theme: fix preview when dragging from list view.
* Add DND modifiers: Control for copy, Shift for move, Alt for ask. Default action is move. Config for these comes later.
* Add EDJE signals for theme to act on DND action change.
* Default theme: Show current DND action using overlay icons. Icons done by Tom 'Toma-' Haste, thank you very much.
SVN revision: 35772
Carsten Haitzler [Mon, 1 Sep 2008 06:23:20 +0000 (06:23 +0000)]
my bad! fix.
SVN revision: 35768
Carsten Haitzler [Sun, 31 Aug 2008 06:20:39 +0000 (06:20 +0000)]
and allow unloading of module... grrr.. no segv
SVN revision: 35759
Carsten Haitzler [Sun, 31 Aug 2008 06:16:25 +0000 (06:16 +0000)]
1. clean up loose ends... and..
2. see comment. fuck.
SVN revision: 35758
Carsten Haitzler [Sun, 31 Aug 2008 01:51:27 +0000 (01:51 +0000)]
some mixer fixes (icon, code), a connman module - beware. not fully working
(well working up to the point whre you can select a network - at that point
connman itself just stares dumbly at you and does nothing - so right now it's
some form of connman bug i suspect). it doesnt save config or load - so you
need to re-init each time and the graphcis are... let's just say.. sucky. for
now theyare test graphics only. suto-connect if network found etc. doesnt
work as well.. can't even connect first time... i can clean the rest up so in
theory it works - but in practice, won't be useful until connmand (back end)
works properly.
SVN revision: 35755
Nicholas Hughart [Sat, 30 Aug 2008 19:14:04 +0000 (19:14 +0000)]
Correct help message.
SVN revision: 35752
Carsten Haitzler [Sat, 30 Aug 2008 06:12:57 +0000 (06:12 +0000)]
oops missed - alread win_del handled.
SVN revision: 35749
Carsten Haitzler [Sat, 30 Aug 2008 06:05:36 +0000 (06:05 +0000)]
leak if we use X - fix. fix icons.
SVN revision: 35748
Carsten Haitzler [Fri, 29 Aug 2008 03:30:45 +0000 (03:30 +0000)]
some debugging printfs - also avoid feeding focus back to the last focused
window if its one of a set of types.
SVN revision: 35726
Carsten Haitzler [Fri, 29 Aug 2008 02:48:36 +0000 (02:48 +0000)]
gadman -> ctrl+alt
SVN revision: 35725
Miculcy Brian [Thu, 28 Aug 2008 00:16:15 +0000 (00:16 +0000)]
sort exe matches with most recently selected matches at the start - patch by sECuRE - thanks
SVN revision: 35701
Carsten Haitzler [Tue, 26 Aug 2008 04:12:41 +0000 (04:12 +0000)]
emove debug printf's
SVN revision: 35676
Carsten Haitzler [Tue, 26 Aug 2008 03:04:07 +0000 (03:04 +0000)]
add soem debugging.
SVN revision: 35675
Carsten Haitzler [Tue, 26 Aug 2008 02:21:51 +0000 (02:21 +0000)]
1. set focuse on activate in illume
2. fix focus set when not visible
SVN revision: 35673
Massimo Maiurana [Mon, 25 Aug 2008 19:10:07 +0000 (19:10 +0000)]
make mixer translatable.
SVN revision: 35672
Massimo Maiurana [Mon, 25 Aug 2008 19:06:50 +0000 (19:06 +0000)]
added italian translation
SVN revision: 35671
Massimo Maiurana [Mon, 25 Aug 2008 19:05:49 +0000 (19:05 +0000)]
SVN revision: 35670
Carsten Haitzler [Mon, 25 Aug 2008 15:11:04 +0000 (15:11 +0000)]
and install config in right place! oops!
SVN revision: 35664
Carsten Haitzler [Mon, 25 Aug 2008 08:35:41 +0000 (08:35 +0000)]
fix self-feeding grab + event and in/out loop!
SVN revision: 35652
Carsten Haitzler [Mon, 25 Aug 2008 04:34:19 +0000 (04:34 +0000)]
and only put border on latest focused once it actually is focused.
SVN revision: 35650
Carsten Haitzler [Mon, 25 Aug 2008 02:22:31 +0000 (02:22 +0000)]
remove annoyances with focus stuff.
SVN revision: 35648
Carsten Haitzler [Fri, 22 Aug 2008 06:55:37 +0000 (06:55 +0000)]
allow for a default installed config file set.. and use it.. and allow the
default profiel to be named etc. etc.
SVN revision: 35614
Sebastian Dransfeld [Tue, 19 Aug 2008 05:59:12 +0000 (05:59 +0000)]
To fit a square icon into a rectangle, find the min side length.
SVN revision: 35573
Carsten Haitzler [Mon, 18 Aug 2008 12:57:15 +0000 (12:57 +0000)]
allow ilist items to determin stacking
SVN revision: 35541
Carsten Haitzler [Mon, 18 Aug 2008 09:39:20 +0000 (09:39 +0000)]
some ilist stackign changes...
SVN revision: 35536
toma [Mon, 18 Aug 2008 03:47:35 +0000 (03:47 +0000)]
Fix the ilist header text shadow
SVN revision: 35532
toma [Mon, 18 Aug 2008 03:41:54 +0000 (03:41 +0000)]
Fix the min size of the wallpaper file chooser so its in line with theme selector and wallpaper advanced dialogs.
SVN revision: 35531
Carsten Haitzler [Mon, 18 Aug 2008 00:02:26 +0000 (00:02 +0000)]
ok. i think most binary files are now fixed.
SVN revision: 35525
Carsten Haitzler [Sun, 17 Aug 2008 15:03:18 +0000 (15:03 +0000)]
fix bins
SVN revision: 35511
Carsten Haitzler [Sun, 17 Aug 2008 14:29:25 +0000 (14:29 +0000)]
fix binaries
SVN revision: 35507
Sebastian Dransfeld [Thu, 14 Aug 2008 20:49:37 +0000 (20:49 +0000)]
fix against efreet API breakage
SVN revision: 35492
Sebastian Dransfeld [Thu, 14 Aug 2008 17:58:22 +0000 (17:58 +0000)]
Battery does not depend on ecore-txt
SVN revision: 35482
Sebastian Dransfeld [Thu, 14 Aug 2008 06:15:35 +0000 (06:15 +0000)]
remove unused variables
SVN revision: 35479
Sebastian Dransfeld [Thu, 14 Aug 2008 06:09:37 +0000 (06:09 +0000)]
export public function in header
SVN revision: 35478
Sebastian Dransfeld [Thu, 14 Aug 2008 06:06:24 +0000 (06:06 +0000)]
Remove unused variable
SVN revision: 35477
Sebastian Dransfeld [Thu, 14 Aug 2008 06:06:01 +0000 (06:06 +0000)]
Add header which declares function
SVN revision: 35476
Sebastian Dransfeld [Thu, 14 Aug 2008 06:05:29 +0000 (06:05 +0000)]
Declare public function in header.
SVN revision: 35475
Carsten Haitzler [Thu, 14 Aug 2008 01:29:02 +0000 (01:29 +0000)]
and use the right.... func.. that exists!
SVN revision: 35474
Carsten Haitzler [Thu, 14 Aug 2008 01:16:27 +0000 (01:16 +0000)]
build! fix breaks!
SVN revision: 35473
Sebastian Dransfeld [Wed, 13 Aug 2008 19:22:01 +0000 (19:22 +0000)]
- embryo is not a needed pkg
- make ecore_imf optional
- add pkg-config requirements to enlightenment.pc
- remove battery check dependant on ecore-txt
- move Ecore_Txt.h from e.h to temperature module
SVN revision: 35470
Sebastian Dransfeld [Wed, 13 Aug 2008 18:56:09 +0000 (18:56 +0000)]
- Add e_prefix.h for e_prefix_bin_get()
- Formatting
SVN revision: 35469
Sebastian Dransfeld [Wed, 13 Aug 2008 18:51:23 +0000 (18:51 +0000)]
ignore++
SVN revision: 35468
Sebastian Dransfeld [Wed, 13 Aug 2008 18:50:50 +0000 (18:50 +0000)]
ignore
SVN revision: 35467
Sebastian Dransfeld [Wed, 13 Aug 2008 18:31:15 +0000 (18:31 +0000)]
Web dialog returns an E_Dialog object, not E_Win.
SVN revision: 35466
Sebastian Dransfeld [Wed, 13 Aug 2008 16:36:20 +0000 (16:36 +0000)]
Add packages which e requires
SVN revision: 35461
Sebastian Dransfeld [Tue, 12 Aug 2008 19:04:01 +0000 (19:04 +0000)]
include limits.h for PATH_MAX
SVN revision: 35450
Nicholas Hughart [Mon, 11 Aug 2008 02:13:22 +0000 (02:13 +0000)]
Patches from ptomaine.
* Fix for URI escpaing.
* Add the ability for EFM to recognize different drop actions from other FMs. The reverse soon to come :)
* Add option to disable HAL device icons on the desktop.
* Performing an operation on multiple files will now be done in a single slave process instead of many.
More to come before and after GSOC :) If you see him in the channel, give him a high five because he's finally helped pull EFM out of the crapper :P
SVN revision: 35432
Carsten Haitzler [Mon, 11 Aug 2008 01:22:33 +0000 (01:22 +0000)]
and respect focus lock out flag more
SVN revision: 35431
Carsten Haitzler [Sun, 10 Aug 2008 01:56:24 +0000 (01:56 +0000)]
notes
SVN revision: 35422
Carsten Haitzler [Thu, 7 Aug 2008 23:37:14 +0000 (23:37 +0000)]
handle other states for "state" - not charging is an... interesting one...
(as a replacement for discharging)
SVN revision: 35401
Nicholas Hughart [Thu, 7 Aug 2008 12:04:44 +0000 (12:04 +0000)]
Add some more fallbacks that seem to work on other OS.
SVN revision: 35377
Carsten Haitzler [Thu, 7 Aug 2008 07:08:16 +0000 (07:08 +0000)]
remove debugging! works!
SVN revision: 35375
Carsten Haitzler [Thu, 7 Aug 2008 06:45:02 +0000 (06:45 +0000)]
oops. missed case.
SVN revision: 35374
Carsten Haitzler [Thu, 7 Aug 2008 06:16:35 +0000 (06:16 +0000)]
try this...
SVN revision: 35373
Carsten Haitzler [Thu, 7 Aug 2008 06:00:09 +0000 (06:00 +0000)]
add debugging... nasty focus issue to find...
SVN revision: 35372
Carsten Haitzler [Thu, 7 Aug 2008 05:11:45 +0000 (05:11 +0000)]
more testing...
SVN revision: 35371
Carsten Haitzler [Thu, 7 Aug 2008 04:57:23 +0000 (04:57 +0000)]
debugging...
SVN revision: 35370
Carsten Haitzler [Thu, 7 Aug 2008 04:30:02 +0000 (04:30 +0000)]
try this now...
SVN revision: 35369
Carsten Haitzler [Thu, 7 Aug 2008 04:16:21 +0000 (04:16 +0000)]
ok - try this instead.
SVN revision: 35368
Carsten Haitzler [Thu, 7 Aug 2008 03:09:46 +0000 (03:09 +0000)]
testing...
SVN revision: 35366
Carsten Haitzler [Wed, 6 Aug 2008 22:57:37 +0000 (22:57 +0000)]
handle bizarre focus properties. ie take_focus - but a window that never
actually takes focus...
SVN revision: 35365