maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Themes (https://talk.maemo.org/forumdisplay.php?f=49)
-   -   [MOD] N9 keyboard themes (https://talk.maemo.org/showthread.php?t=87537)

thedead1440 2013-01-19 15:33

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by darkphantom93 (Post 1315893)

The error is fine; the re-installation has gone thru...

darkphantom93 2013-01-19 15:44

Re: [MOD] N9 keyboard themes
 
but after reboot, i install the keyboard. Result still same, just show no such file& directory

AMD 2013-01-21 13:26

Re: [MOD] N9 keyboard themes
 
Sorry guys, I did not even give a try to make the Jolla keyboard, I know I said I will.. But my grandma passed away..so..

ThraxZzz 2013-01-21 14:03

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by AMD (Post 1316309)
Sorry guys, I did not even give a try to make the Jolla keyboard, I know I said I will.. But my grandma passed away..so..

Sorry to hear about this dude,cheer up :)

Akkumaru 2013-01-21 14:08

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by AMD (Post 1316309)
Sorry guys, I did not even give a try to make the Jolla keyboard, I know I said I will.. But my grandma passed away..so..

No worries bro. Hope you feel better soon :)

AMD 2013-01-21 14:15

Re: [MOD] N9 keyboard themes
 
Thank you both, much appreciated :-)

michdeskunk 2013-01-24 16:08

Re: [MOD] N9 keyboard themes
 
if you have an other theme in use and not Blanco theme
you could copy every file in image's theme folder

/usr/share/themes/Nlero/meegotouch/images/theme/basement/meegotouch-virtual-keyboard


i already done this! all running right

efion 2013-02-05 03:50

Re: [MOD] N9 keyboard themes
 
1 Attachment(s)
So, i try to remake the Blackberry Z10 keyboard, but there's a problem with background lines when in landscape mode.
Any idea how to implement a different background between landscape and portrait screen?
Well, if not, locking the screen in portrait mode will be the only solution.

MK99 2013-02-05 05:42

Re: [MOD] N9 keyboard themes
 
The background is stretched, so you can do directly to the right size.
Portrait: 480x320
Landscape: 854x240

An example of the background, if the name is background-landscape.png
Install:
Code:

sed -i 's/MImAbstractKeyAreaStyle.Landscape {/MImAbstractKeyAreaStyle.Landscape { background-image: "background-landscape" $ROUNDED_CORNERS;/' /usr/share/themes/base/meegotouch/libmeego-keyboard/style/libmeego-keyboard.css
default:
Code:

sed -i 's/MImAbstractKeyAreaStyle.Landscape {.*/MImAbstractKeyAreaStyle.Landscape {/' /usr/share/themes/base/meegotouch/libmeego-keyboard/style/libmeego-keyboard.css

efion 2013-02-05 07:21

Re: [MOD] N9 keyboard themes
 
1 Attachment(s)
i attached the keyboard files, if someone interested (updated)

@MK99: where i should put the landscape background?
still in the .../meegotouch-virtual-keyboard?
And can i straight type the theme folder if i'm using a custom theme?

MK99 2013-02-05 08:27

Re: [MOD] N9 keyboard themes
 
In the same folder as the other images.
I think it doesn't matter whether they are in the base, blanco or you own theme.

/usr/share/themes/theme/meegotouch/images/theme/basement/meegotouch-virtual-keyboard/

efion 2013-02-05 09:43

Re: [MOD] N9 keyboard themes
 
but how to implemented this mod only in my custom theme?
if i change the base files it will effect all the themes i have.
My custom theme is based on blanco, so the libmeego-keyboard.css would be the same.
Sorry for bothering, i'm not good in script :)

MK99 2013-02-05 09:59

Re: [MOD] N9 keyboard themes
 
Add some extra-lines:

Code:

MImAbstractKeyAreaStyle.Portrait {
background-image: "meegotouch-keyboard-background-portrait";
}
MImAbstractKeyAreaStyle.Landscape {
background-image: "meegotouch-keyboard-background-landscape";
}


efion 2013-02-12 04:45

Re: [MOD] N9 keyboard themes
 
1 Attachment(s)
Any idea how to increase the size of the keys?
Maybe little bit more square and bigger size for the letter keys
I found the /usr/share/themes/base/meegotouch/libmeego-keyboard/style/libmeego-keyborad.css is the source file of the keyboard configuraton, but dont know what to change.
Or else, if someone has done it could share the libmeego-keyboard files.
Thanks

MK99 2013-02-12 07:38

Re: [MOD] N9 keyboard themes
 
Here are the lines which you can play with. :D
These are the originals. You can copy them to the Blanco css or your own theme.

https://dl.dropbox.com/u/40680080/key-size.txt

For example, if you want the keyboard area remains the same size:
Change key-height-*.*: 60px; to 70px, also change key-margin-bottom: 18px; to 8px (+/-10)

efion 2013-02-12 08:25

Re: [MOD] N9 keyboard themes
 
Code:

/* otherwise key accepts touch events which are not farther from button edge than keyExtraSpace pixels. */
    key-extra-space : 5mm;

Is this script is for setting the left and right space between letter keys? or else?

MK99 2013-02-12 09:07

Re: [MOD] N9 keyboard themes
 
Try these from that which I gave earlier:
key-width*.*fixed:
key-margin-left:
key-margin-right:

efion 2013-02-12 10:29

Re: [MOD] N9 keyboard themes
 
3 Attachment(s)
Now, we have 95% similarity of the WP8 keyboard :D

MK99 2013-02-12 11:09

Re: [MOD] N9 keyboard themes
 
1 Attachment(s)
Thanks, your css without background-image lines and wp8 theme from N9QTweak. :D

DJJonosound 2013-02-12 12:00

Re: [MOD] N9 keyboard themes
 
Is there some way these themes can be made to suit swype as well?

efion 2013-02-12 12:28

Re: [MOD] N9 keyboard themes
 
AFAIK, it cant
Swype is an app, and not attached from the theme files

MK99 2013-02-12 12:45

Re: [MOD] N9 keyboard themes
 
3 Attachment(s)
Yes it is possible! :p:D

/usr/share/swype/data/images

efion 2013-02-12 13:03

Re: [MOD] N9 keyboard themes
 
ouuuwww....it can?
@MK99: #ExtendedKeys is for function keys like enter, backspace etc?
i try change it but take no effects

MK99 2013-02-12 13:20

Search "wp8" this tread. There is my install.sh.
It changing some line to css with "sed".

E: Maybe this one:
Code:

sed 's/key-background-special-highlighted.*/key-background-special-highlighted: "meegotouch-keyboard-function-key" $ROUNDED_CORNERS;/' -i /usr/share/themes/base/meegotouch/libmeego-keyboard/style/libmeego-keyboard.css

efion 2013-02-13 01:30

Re: [MOD] N9 keyboard themes
 
1 Attachment(s)
No, i mean to stretch special keys to match the entire key grid.
found it!

roman2205 2013-02-19 05:59

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by MK99 (Post 1287949)
New transparent theme. Installation to blanco-theme.
Copy .keyboardtheme-folder to MyDocs.

Edit: Added package with "space" text to space-key.

Code:

sh /home/user/MyDocs/.keyboardtheme/install.sh

sh /home/user/MyDocs/.keyboardtheme/uninstall.sh


Is this theme available via N9 Qtweak and if available name please :-) Thanks in advance.

MK99 2013-02-19 06:16

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by roman2205 (Post 1323762)
Is this theme available via N9 Qtweak and if available name please :-) Thanks in advance.

It is 24. ;)

roman2205 2013-02-19 07:18

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by MK99 (Post 1323763)
It is 24. ;)

I tried it but the thing is I am looking for the arrows besides the space keys.....which were not there.......

MK99 2013-02-19 07:52

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by roman2205 (Post 1323770)
I tried it but the thing is I am looking for the arrows besides the space keys.....which were not there.......

Tweak D-1-1-10
Quote:

English vkb with arrows

roman2205 2013-02-19 10:58

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by MK99 (Post 1323771)
Tweak D-1-1-10

Applied but no arrows in the Keyboard.....sorry to bother u again nd again......

MK99 2013-02-19 11:07

Re: [MOD] N9 keyboard themes
 
What is you keyboard language?
Go to "time and language" settings and select the installed input methods: "English (US) with arrows"

DJJonosound 2013-02-22 10:58

Re: [MOD] N9 keyboard themes
 
http://i48.tinypic.com/119zfog.png
Used the key images from TheDead1440's ocean blue, added a caps indicator, with the default swipe background :D

Kozzi 2013-02-23 16:32

Re: [MOD] N9 keyboard themes
 
For whoever interested in "squaring" N9 UI
Source:
http://www.tinhte.vn/threads/shendu3...r-1-3.1321113/

http://www.mediafire.com/?p4f548pv2cv1whh
inside the zip file:
anzhuang = edited files
huanyuan = original

copy and replace usr folder inside with system's, be aware that this might brick your phone or mess it up totally

http://i.imgur.com/Ux9DB8a.jpg
http://i.imgur.com/mU4yLt3.jpg

bibek 2013-02-23 16:52

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by efion (Post 1322745)
No, i mean to stretch special keys to match the entire key grid.
found it!http://talk.maemo.org/attachment.php...1&d=1360719033

Where do I get this theme? :)

efion 2013-02-25 01:25

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by bibek (Post 1324649)
Where do I get this theme? :)

it's not a theme, i just modded the messaging bubbles and the virtual keyboard :)

bibek 2013-02-25 09:38

Yes, I mean can you share the keyboard images and the needed tweaks? I only need the keyboard

vishwas 2013-02-25 09:44

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by bibek (Post 1324988)
Yes, I mean can you share the keyboard images and the needed tweaks? I only need the keyboard

Anand, I am using the same keyboard, one of the best themed keyboards. Here you go

http://talk.maemo.org/showpost.php?p...&postcount=337

vishwas 2013-02-25 09:48

Re: [MOD] N9 keyboard themes
 
Quote:

Originally Posted by bibek (Post 1324988)
Yes, I mean can you share the keyboard images and the needed tweaks? I only need the keyboard

Anand, I have been using the same keyboard. One of the best themed keyboards.

Here you go

http://talk.maemo.org/showpost.php?p...&postcount=337

efion 2013-02-25 10:28

Re: [MOD] N9 keyboard themes
 
1 Attachment(s)
here you go :)

efion 2013-02-26 04:34

Re: [MOD] N9 keyboard themes
 
3 Attachment(s)
I manage to made a Sailfish keyboard parameter inside the css files
Unfortunately i dont have any software resource to made the similar transparent keys to Sailfish
So, maybe someone here can help to made the similar keys?


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

vBulletin® Version 3.8.8