Menu

Main Menu
Talk Get Daily Search

Member's Online

    User Name
    Password

    [Announce] N900 qtedger (N9 Swipe to N900!)

    Reply
    Page 23 of 27 | Prev | 13   21     22   23   24     25   | Next | Last
    elros34 | # 221 | 2013-08-31, 15:56 | Report

    just press twice power button.

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following 2 Users Say Thank You to elros34 For This Useful Post:
    bill_klpd, nokiabot

     
    bill_klpd | # 222 | 2013-08-31, 15:59 | Report

    Originally Posted by elros34 View Post
    just press twice power button.
    I didn't know this

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following User Says Thank You to bill_klpd For This Useful Post:
    nokiabot

     
    bill_klpd | # 223 | 2013-08-31, 22:34 | Report

    Here is a something I wrote that I thing that might help on making the app a little faster
    (There are some names that are not right and some things that won't function but it is a small try )
    Code:
        Connections {
            target: utils
            onSignalEdge: {
                txt.text = edge
                txt2.text = activeWindow
    
                if (edge == "right1") //top right swipe
                            {
                                if (activeWindow == "Desktop")
                            {
                                utils.runProgram("appMenu")
                            }
                                if (activeWindow == "Menu")
                            {
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }
                                if (activeWindow == "Task Manager")
                            {
                                utils.runProgram("desktop")
                            }
                                else
                            {
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }        
                            }
    
                if (edge == "right2") //right swipe
                            {
                                if (activeWindow == "Desktop")
                            {
                                utils.runProgram("appMenu")
                            }
                                if (activeWindow == "Menu")
                            {
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }
                                if (activeWindow == "Task Manager")
                            {
                                utils.runProgram("desktop")
                            }
                                else
                            {
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }        
                            }
    
                if (edge == "right3") //bottom right swipe
                            {
                                if (activeWindow == "Desktop")
                            {
                                utils.runProgram("appMenu")
                            }
                                if (activeWindow == "Menu")
                            {
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }
                                if (activeWindow == "Task Manager")
                            {
                                utils.runProgram("desktop")
                            }
                                else
                            {
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }        
                            }
    
                if (edge == "left1") //top left swipe
                            {
                                if (activeWindow == "Desktop")
                            {
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }
                                if (activeWindow == "Menu")
                            {
                                utils.runProgram("desktop")
                            }
                                if (activeWindow == "Task Manager")
                            {
                                utils.runProgram("appMenu")
                            }
                                else
                            {        
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }
                            }
    
                if (edge == "left2") //left swipe
                            {
                                if (activeWindow == "Desktop")
                            {
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }
                                if (activeWindow == "Menu")
                            {
                                utils.runProgram("desktop")
                            }
                                if (activeWindow == "Task Manager")
                            {
                                utils.runProgram("appMenu")
                            }
                                else
                            {        
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }
                            }
    
                if (edge == "left3") //bottom left swipe
                            {
                                if (activeWindow == "Desktop")
                            {
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }
                                if (activeWindow == "Menu")
                            {
                                utils.runProgram("desktop")
                            }
                                if (activeWindow == "Task Manager")
                            {
                                utils.runProgram("appMenu")
                            }
                                else
                            {        
                                utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                            }
                            }
    
                if (edge == "bottom") //bottom swipe
                            {
                                if (activeWindow == "Task Manager")
                            {
                                utils.runProgram("close all running programs")
                            }
                                else
                            {
                                utils.runProgram("wmctrl -c :ACTIVE:")
                            }
    
                            }
    
                if (edge == "top") //top swipe
    
                            {
                                utils.runProgram("Hildon Status Menu")
                            }
            }
        }

    Edit | Forward | Quote | Quick Reply | Thanks

     
    enne30 | # 224 | 2013-09-22, 20:30 | Report

    Originally Posted by elros34 View Post
    Latest and last version.
    Now most of the programs may have their own profile.
    Close option close all osso-xterm windows and doesn't work on microb instead, better use:
    Code:
    dbus-send --session --type=method_call --print-reply --dest="com.nokia.osso_browser" /com/nokia/osso_browser/request com.nokia.osso_browser.request string:"close_window"
    hi elros34, I tried above command but no success.. maybe I have to use new command 'dbus-signal'? how to do it?

    thanx in advance

    Edit | Forward | Quote | Quick Reply | Thanks

     
    elros34 | # 225 | 2013-09-22, 21:05 | Report

    sorry my bad I corrected second post.

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following 2 Users Say Thank You to elros34 For This Useful Post:
    bill_klpd, enne30

     
    bill_klpd | # 226 | 2013-09-22, 21:09 | Report

    Originally Posted by elros34 View Post
    Latest and last version.
    Now most of the programs may have their own profile.
    Close option close all osso-xterm windows and doesn't work on microb instead, better use:
    Code:
    dbus-send --session --type=method_call --print-reply --dest="com.nokia.osso_browser" /com/nokia/osso_browser/request com.nokia.osso_browser.close_window
    Is this the latest version?

    Edit | Forward | Quote | Quick Reply | Thanks

     
    elros34 | # 227 | 2013-09-22, 21:11 | Report

    There is nothing to improve so..

    Edit | Forward | Quote | Quick Reply | Thanks

     
    bill_klpd | # 228 | 2013-09-22, 21:34 | Report

    I will try it now
    Thanks for your great work

    Edit | Forward | Quote | Quick Reply | Thanks

     
    bill_klpd | # 229 | 2013-09-22, 21:42 | Report

    One more thing!
    How do we edit the profile of each program?

    By the way what's going on with you qt lockscreen?

    Edit | Forward | Quote | Quick Reply | Thanks

    Last edited by bill_klpd; 2013-09-22 at 21:51.

     
    elros34 | # 230 | 2013-09-22, 21:52 | Report

    Just press "Add new".
    Originally Posted by bill_klpd View Post
    By the way what's going on with you qt lockscreen?
    I don't have much time now. It's usable but buggy
    http://www.youtube.com/watch?v=qWJip2AwmI4

    Edit | Forward | Quote | Quick Reply | Thanks

     
    Page 23 of 27 | Prev | 13   21     22   23   24     25   | Next | Last
vBulletin® Version 3.8.8
Normal Logout