~ubuntu-branches/ubuntu/saucy/geary/saucy-updates

« back to all changes in this revision

Viewing changes to src/client/accounts/account-spinner-page.vala

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-03-14 13:48:23 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130314134823-gyk5av1g508zyj8a
Tags: 0.3.0~pr1-0ubuntu1
New upstream version (FFE lp: #1154316), supports multiple account as
well as full conversation views with inline replies

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2013 Yorba Foundation
 
2
 *
 
3
 * This software is licensed under the GNU Lesser General Public License
 
4
 * (version 2.1 or later).  See the COPYING file in this distribution.
 
5
 */
 
6
 
 
7
// Shows a simple spinner and a message indicating the account is being validated.
 
8
public class AccountSpinnerPage : Gtk.Box {
 
9
    public AccountSpinnerPage() {
 
10
        Object(orientation: Gtk.Orientation.VERTICAL, spacing: 4);
 
11
        
 
12
        Gtk.Builder builder = GearyApplication.instance.create_builder("account_spinner.glade");
 
13
        pack_end((Gtk.Box) builder.get_object("container"));
 
14
    }
 
15
}
 
16