Patch Launcher Add or Delete Pages

From WebOS Internals
Revision as of 15:19, 20 July 2009 by Pyrognome (talk | contribs)
Jump to navigation Jump to search

Someone in the forum talked about being able to add and delete pages in the Launcher app and I thought I would look into it further. They stated that they were able to add new pages and delete existing pages.

Upon further investigation, they were correct. There is existing code in a particular js file that has been commented out that will allow you to create a new page and delete the current page you are on in the Launcher. There is a variable that stores the max number of pages to 10. This value can probably be increased, but I don't recommend it and seriously, who would need more that 10 pages anyway, right?

After I uncommented these said lines and rebooted, I was able to perform these functions. So I tested the new page function.

The new page and delete page functions will appear in the launcher app menu.

Creating/adding a page:

This will create a new page and move whatever page you were on to the right. There is nothing special to this page besides the fact that you now have a new page. I was able to drag icons to it just like any other page. To test this new page out I added a contact to that page.

Deleting/Removing a page:

The code is already set up to automagically move any icons to the page to the left of the page you are deleting. What I mean is if the page you delete is in the middle of other pages it will toss whatever was on your current page to the page to the left of it.

When I deleted a page that was to the left of the apps page that had web app defaulted to it, it tossed the icons to that page because there is no page to the left of the one I just deleted.

Creating/adding multiple pages:

So I was on page 1 and created a new page. Then I moved over to the page where device info, backup, screen & lock was at and created a new page there. It tossed the page to the right and made a new page.


Uncomment the Following


/usr/lib/luna/system/luna-applauncher/app/controllers/launcher-assistant.js

Look for "appMenuModel" (line 27) a few lines below you will see a line that has "newpage" in it.
On the line that remove the "/*" and on the line that has "deletepage" remove the "*/"

Next look further in the file (line 119) for "switch" again remove the "/* and "*/" that surrounds the cases for newpage and deletepage.

reboot and now you'll have new page and delete page in the launcher app menu.

Note that you can download a patch for this at http://gitorious.org/webos-internals/modifications/blobs/raw/master/applauncher/add-delete-pages-in-the-launcher.patch

You can see a picture of the new menu here: http://img195.imageshack.us/img195/7636/unknown20091306141631.png

-PS I moved the location of the edit menu down…

-Enjoy


The credit to this goes to someone in the forums, at the time this was written I wasn't able to find out who exactly was it who wrote about it first (purely I don't have the time to look.) Pyrognome tested and confirmed the new page and delete page functionality.