~vrruiz/gnome-control-center-signon/quantal-autoreconf

« back to all changes in this revision

Viewing changes to src/cc-credentials-accounts-page.vala

* New upstream release.
  - removed the clutter based transition, it broke the scrollbar and was 
    inconsistent with the other panels (LP: #1043697) (LP: #1043732)
  - Selection style in account type list is inconsistent with the rest 
    of Ubuntu (LP: #1043724)
* debian/control
  - removed clutter build depends
* New upstream release.
* debian/control
  - added libclutter-gtk-1.0-dev and libclutter-1.0-dev to build depends
  - depend on gnome-control-center >= 3.4.2-0ubuntu10, which includes 
    the clutter init patch
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
    public signal void account_options_request (AccountApplicationRow application_row);
59
59
 
60
60
    /**
 
61
     * Emitted when an account needs to show options. Copied from
 
62
     * AccountDetailsPage, to be emitted again to the main panel.
 
63
     *
 
64
     * @param plugin the Ap.Plugin for the account that needs configuration
 
65
     */
 
66
    public signal void account_edit_options_request (Ap.Plugin plugin);
 
67
 
 
68
    /**
61
69
     * Select the desired page of @link accounts_notebook to select an account
62
70
     * to view settings of, or for showing details of an existing account.
63
71
     *
204
212
        providers_page.new_account_request.connect (on_providers_page_new_account_request);
205
213
        account_details_page.reauthenticate_account_request.connect (on_account_details_page_reauthenticate_account_request);
206
214
        account_details_page.account_options_request.connect (on_account_details_page_account_options_request);
 
215
        account_details_page.account_edit_options_request.connect (on_account_details_page_account_edit_options_request);
207
216
 
208
217
        accounts_notebook.append_page (providers_page);
209
218
        accounts_notebook.append_page (account_details_page);
367
376
    {
368
377
        account_options_request (application_row);
369
378
    }
 
379
 
 
380
    /**
 
381
     * Tell the main panel to show the options page for an account that
 
382
     * required configuration in the account details view.
 
383
     *
 
384
     * @param plugin the Ap.Plugin of the account to show options for
 
385
     */
 
386
    private void on_account_details_page_account_edit_options_request (Ap.Plugin plugin)
 
387
    {
 
388
        account_edit_options_request (plugin);
 
389
    }
370
390
}