maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Development (https://talk.maemo.org/forumdisplay.php?f=13)
-   -   work in progress: simple vertical sms app: vertsms (https://talk.maemo.org/showthread.php?t=51635)

ossipena 2010-05-05 04:03

Re: work in progress: simple vertical sms app: vertsms
 
new thread created:
http://talk.maemo.org/showthread.php?p=643862

please put your feature request etc there, and all beneath the surface -stuff (code snippets etc) here.

benik 2010-05-05 04:12

Re: work in progress: simple vertical sms app: vertsms
 
what about other languages? will they in program?

ossipena 2010-05-05 04:13

Re: work in progress: simple vertical sms app: vertsms
 
Quote:

Originally Posted by raverpol (Post 643593)
for me doesnt work with +48xxxxx and all numbers I have in my adress book are with with country prefix. with 0xxxx works fine

I even can't correct that number which was taken from the book

what does the notification say about your number? does it convert it to 0048xxxxx?

ossipena 2010-05-05 09:05

Re: work in progress: simple vertical sms app: vertsms
 
does someone have some tips with conversations database?

(where it lies?, to which table are all messages written?, .....)

e: nevermind. it is el.db (/home/user/.rtcom-events/el.db)
and table name is events. phone number = remote_uid

qwerty12 2010-05-05 14:39

Re: work in progress: simple vertical sms app: vertsms
 
One last thing:

Code:

--- vertsms.py.1        2010-05-04 21:30:01.000000000 +0100
+++ vertsms.py        2010-05-05 15:35:34.000000000 +0100
@@ -330,6 +330,9 @@
        sms.send()
 #        sms.print_pdustring()
 
+def backspace_tap_and_hold(widget):
+    buffer.delete(buffer.get_start_iter(), buffer.get_end_iter())
+
 def main():
    program = hildon.Program.get_instance()
    program.add_window(window)
@@ -440,8 +443,11 @@
    table.attach(button_0, 1, 2, 7, 8)
    table.attach(button_pound, 2, 3, 7, 8)
 
+    button_back.tap_and_hold_setup(None, None, 0)
+
    button_send.connect("clicked", send)
    button_back.connect("clicked", backspace)
+    button_back.connect("tap-and-hold", backspace_tap_and_hold)
    button_to.connect("clicked", addrbook)
    button_1.connect("clicked", number_pressed)
    button_2.connect("clicked", number_pressed)

This patch will delete all of the message text when the backspace is held down. This is somewhat reminiscent of my SE's behaviour, however, I think that people would prefer to have the text deleted character by character when the button is held down so I leave this here for "educational" purposes...

MohammadAG 2010-05-05 15:26

Re: work in progress: simple vertical sms app: vertsms
 
Might be a good way to start looking into (py)GTK
http://i43.tinypic.com/mwtdtw.jpg

Patch:
Edit: see below

bit.ly link redirects to the [ANNOUNCE] thread, I could've made it bit.ly/VertSMS but I'll leave you to decide where that redirects to.
Original talk.maemo.org link would be very long to be shown on one line in a portrait dialog.

qwerty12 2010-05-05 15:34

Re: work in progress: simple vertical sms app: vertsms
 
Quote:

Originally Posted by MohammadAG (Post 644688)
Might be a good way to start looking into (py)GTK

My name shouldn't be there (my contributions pale in comparision to aspidites'); please leave it out. :)

Also, personal preference, but I really like thp's HeAboutDialog (a Python version can be found in the gPodder tarball).

ossipena 2010-05-05 15:46

Re: work in progress: simple vertical sms app: vertsms
 
Quote:

Originally Posted by qwerty12 (Post 644642)
One last thing:

Code:

--- vertsms.py.1    2010-05-04 21:30:01.000000000 +0100
+++ vertsms.py    2010-05-05 15:35:34.000000000 +0100
@@ -330,6 +330,9 @@
        sms.send()
 #        sms.print_pdustring()
 
+def backspace_tap_and_hold(widget):
+    buffer.delete(buffer.get_start_iter(), buffer.get_end_iter())
+
 def main():
    program = hildon.Program.get_instance()
    program.add_window(window)
@@ -440,8 +443,11 @@
    table.attach(button_0, 1, 2, 7, 8)
    table.attach(button_pound, 2, 3, 7, 8)
 
+    button_back.tap_and_hold_setup(None, None, 0)
+
    button_send.connect("clicked", send)
    button_back.connect("clicked", backspace)
+    button_back.connect("tap-and-hold", backspace_tap_and_hold)
    button_to.connect("clicked", addrbook)
    button_1.connect("clicked", number_pressed)
    button_2.connect("clicked", number_pressed)

This patch will delete all of the message text when the backspace is held down. This is somewhat reminiscent of my SE's behaviour, however, I think that people would prefer to have the text deleted character by character when the button is held down so I leave this here for "educational" purposes...

do you know how that tap and hold function works? does its execution stop as soon as pressing is stopped? if not how can I get signal for stopping the deletion char by char?

MohammadAG 2010-05-05 15:46

Re: work in progress: simple vertical sms app: vertsms
 
Quote:

Originally Posted by qwerty12 (Post 644705)
My name shouldn't be there (my contributions pale in comparision to aspidites'); please leave it out. :)

Also, personal preference, but I really like thp's HeAboutDialog (a Python version can be found in the gPodder tarball).

I'll have a look at that in a bit.
My patch above is a bit primitive, had a look at the wiki and I think I got it :)

Had a look at your patch above (for clear all), it might be a good option to have it in the app menu (above the about button).

Code:

def backspace_tap_and_hold(widget):
    buffer.delete(buffer.get_start_iter(), buffer.get_end_iter())

Code:

def create_menu(label):
    menu = hildon.AppMenu()

    for i in xrange(1, 6):
        # Clear all button
        clearall = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
        command_id = "Clear all"
        clearall.set_label(command_id)
        clearall.connect("clicked", backspace_tap_and_hold, label)
        menu.append(clearall)


        # About button
        aboutbutton = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
        command_id = "About"
        aboutbutton.set_label(command_id)
        aboutbutton.connect("clicked", about, label)
        menu.append(aboutbutton)

but it keeps throwing TypeError: backspace_tap_and_hold() takes exactly 1 argument (2 given) at me.
I realize I still have a long way ahead of me before I start understanding all this python stuff ;)

qwerty12 2010-05-05 15:53

Re: work in progress: simple vertical sms app: vertsms
 
Quote:

Originally Posted by ossipena (Post 644724)
do you know how that tap and hold function works? does its execution stop as soon as pressing is stopped? if not how can I get signal for stopping the deletion char by char?

The function executes once for each time the button is held; you have to let go and hold again for the function to be called again

Quote:

Originally Posted by MohammadAG (Post 644726)
I'll have a look at that in a bit.
My patch above is a bit primitive, had a look at the wiki and I think I got it :)

I realize I still have a long way ahead of me before I start understanding all this python stuff ;)

I'm no Python person either (I deal in dodgily-written C and Vala) but there's no need to pass label to backspace_tap_and_hold
Also, I'd remove the "for i in range..." statement - no need to have it running multiple times


All times are GMT. The time now is 08:11.

vBulletin® Version 3.8.8