Reply
Thread Tools
Posts: 2,153 | Thanked: 8,462 times | Joined on May 2010
#91
Originally Posted by Android_808 View Post
whats the license of the software using it? it sounds like if osso-uri is gnu v2 then osso-uri-l10n is gnu v2.
same feeling...
 

The Following User Says Thank You to pali For This Useful Post:
Posts: 3,074 | Thanked: 12,960 times | Joined on Mar 2010 @ Sofia,Bulgaria
#92
Originally Posted by Android_808 View Post
Is that running with via the Cordia-based Hildon?
yes. I am still to get your latest libs
__________________
Never fear. I is here.

720p video support on N900,SmartReflex on N900,Keyboard and mouse support on N900
Nothing is impossible - Stable thumb2 on n900

Community SSU developer
kernel-power developer and maintainer

 

The Following 2 Users Say Thank You to freemangordon For This Useful Post:
Posts: 1,203 | Thanked: 3,027 times | Joined on Dec 2010
#93
Been a bit slow this week, ie one file, due to work and other commitments. The next file is going to be similar to the last so should be a bit easier. I need to take some more time off work next week and the week after so should be able to get through a bit more.
 

The Following 3 Users Say Thank You to Android_808 For This Useful Post:
Posts: 3,074 | Thanked: 12,960 times | Joined on Mar 2010 @ Sofia,Bulgaria
#94
Originally Posted by Android_808 View Post
Been a bit slow this week, ie one file, due to work and other commitments. The next file is going to be similar to the last so should be a bit easier. I need to take some more time off work next week and the week after so should be able to get through a bit more.
No worry, I was on small holiday as well

However, after the latest commit, h-d on fremantle-gtk3 repo seems to work, besides I need to fix shaders in TidyBlurGroup to work with GL.
__________________
Never fear. I is here.

720p video support on N900,SmartReflex on N900,Keyboard and mouse support on N900
Nothing is impossible - Stable thumb2 on n900

Community SSU developer
kernel-power developer and maintainer

 

The Following 6 Users Say Thank You to freemangordon For This Useful Post:
Posts: 1,203 | Thanked: 3,027 times | Joined on Dec 2010
#95
I've started on hildon-time-editor but hit a small snag with the hildon tap-and-hold feature. My initial guess was it needs to be replaced with a GtkGestureLongPress but there is little to no docs on it. It would appear though that the flags don't actually do anything.

The flags feature was marked as deprecated and is only used in one place, which seems to read if (flags ..) do this else do exactly the same!
https://github.com/community-ssu/gtk...tainer.c#L2832
 

The Following 7 Users Say Thank You to Android_808 For This Useful Post:
Posts: 1,203 | Thanked: 3,027 times | Joined on Dec 2010
#96
Just commented out the tap-and-hold code for now.

Pushed a few more commits. Need to work on solution for HildonUIMode and HildonInputMode related features. For now I've added HildonUIMode enum to hildon-gtk.h to allow some features to build but a working compatibility solution would be needed for allowing devs to set the values using the existing funtionality and mapping the values to GtkInputPurpose and GtkInputHints.
 

The Following 3 Users Say Thank You to Android_808 For This Useful Post:
Posts: 1,203 | Thanked: 3,027 times | Joined on Dec 2010
#97
Another small batch of commits for today. A quick count of object files makes me think that I'm about 22 *.c files done out of 62

I've been giving some thought to HildonGtkInputMode. Without injecting properties using something like GtkModule I don't think we can remain 100% compatibile with Maemo. I'm wondering if we could do something along the lines of adding some of the functions from Maemo's GTK (eg hildon_gtk_entry_get/set_input_mode) into libhildon instead, replacing the functions so that they call mapping them to GtkInputHint and GtkInputPurpose. Something like:

Code:
hildon_gtk_entry_set_input_mode(entry, mode)
{
Do checks for invalid modes (ie multiline in singleline entry) eg.
mode &= ~HILDON_GTK_INPUT_MODE_MULTILINE;
gtk_entry_set_input_purpose(entry , hildon_gtk_get_input_purpose(mode));
  gtk_entry_set_input_hints(entry , hildon_gtk_get_input_hints(mode));
}

hildon_gtk_get_input_purpose(mode)
{
if mode is HILDON_GTK_INPUT_MODE_NUMERIC
  return HILDON_GTK_INPUT_MODE_DIGITS
etc.
}

hildon_gtk_get_input_hints(mode)
{
if mode contains HILDON_GTK_INPUT_MODE_AUTOCAP
 then add GTK_INPUT_HINT_UPPERCASE_SENTENCES to return
if mode contains HILDON_GTK_INPUT_MODE_DICTIONARY
 then add GTK_INPUT_HINT_WORD_COMPLETION to return
etc
}
The problem comes with modes that don't have equivalents, such as HILDON_GTK_INPUT_MODE_HEXA.
 

The Following 10 Users Say Thank You to Android_808 For This Useful Post:
Posts: 3,074 | Thanked: 12,960 times | Joined on Mar 2010 @ Sofia,Bulgaria
#98
Finally managed to migrate most of tidyblurgroup effect magic to clutter 1.x

Fortunately most of the other tidy effects are stock in clutter 1.x, so it will be easier
__________________
Never fear. I is here.

720p video support on N900,SmartReflex on N900,Keyboard and mouse support on N900
Nothing is impossible - Stable thumb2 on n900

Community SSU developer
kernel-power developer and maintainer

 

The Following 6 Users Say Thank You to freemangordon For This Useful Post:
Posts: 1,163 | Thanked: 1,873 times | Joined on Feb 2011 @ The Netherlands
#99
Originally Posted by Android_808 View Post
I've started on hildon-time-editor but hit a small snag with the hildon tap-and-hold feature. My initial guess was it needs to be replaced with a GtkGestureLongPress but there is little to no docs on it. It would appear though that the flags don't actually do anything.

The flags feature was marked as deprecated and is only used in one place, which seems to read if (flags ..) do this else do exactly the same!
https://github.com/community-ssu/gtk...tainer.c#L2832

By no means I am into to this but maybe you could make all tap and holds right clicks and then in the end write an function that makes tap-hold act as right click.
__________________
N900 loaded with:
CSSU-T (Thumb)
720p recording,
Pierogi, Lanterne, Cooktimer, Frogatto
N9 16GB loaded with:
Kernel-Plus
--
[TCPdump & libpcap | ngrep]
--
donate
 

The Following 5 Users Say Thank You to mr_pingu For This Useful Post:
Posts: 1,203 | Thanked: 3,027 times | Joined on Dec 2010
#100
thats one option, but with gtk3 having built in touch support, I'd prefer to adapt it to whatever mechanism/route they are using. at the moment its just a case of fixing is much as possible to get it to build and then go back and fix the rest.
 

The Following 5 Users Say Thank You to Android_808 For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 12:54.