summaryrefslogtreecommitdiff
path: root/src/plugins/devices.services/src/com/motorola/studio/android/devices/services/lang/model/LangWizardPage.java
blob: 6ab2296930f7e72be8e541a8d082e9dd5f1bd6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.motorola.studio.android.devices.services.lang.model;

import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.ui.PlatformUI;

import com.motorola.studio.android.devices.services.DeviceServicesPlugin;
import com.motorola.studio.android.devices.services.i18n.ServicesNLS;

/**
 * Page where the user can choose the language the user wants
 * to apply to the emulator
 */
public class LangWizardPage extends WizardPage
{

    // main composite
    LocationComposite locationComposite = null;

    private String[] currentLangAndCountry = null;

    /**
     * Constructor
     */
    public LangWizardPage()
    {
        this(null);
    }

    /**
     * Constructor
     */
    public LangWizardPage(String[] currentLangAndCountry)
    {
        super("langWizardPage");
        this.currentLangAndCountry = currentLangAndCountry;
        setTitle(ServicesNLS.UI_Wizard_Page_Locale_Title);
        setDescription(ServicesNLS.UI_Wizard_Page_Locale_Description);
        setPageComplete(false);
    }

    /* (non-Javadoc)
     * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
     */
    public void createControl(Composite parent)
    {

        // Set Help ID
        PlatformUI.getWorkbench().getHelpSystem()
                .setHelp(parent, DeviceServicesPlugin.LANG_PAGE_CONTEXT_HELP_ID);

        // Define layout
        GridLayout mainLayout = new GridLayout(1, false);
        mainLayout.marginTop = 0;
        mainLayout.marginWidth = 0;
        mainLayout.marginHeight = 0;

        if (currentLangAndCountry != null)
        {
            locationComposite =
                    new LocationComposite(parent, currentLangAndCountry[0],
                            currentLangAndCountry[1]);
        }
        else
        {
            locationComposite = new LocationComposite(parent);
        }

        locationComposite.addListener(LocationComposite.LOCATION_CHANGE, new Listener()
        {
            public void handleEvent(Event arg0)
            {
                updatePageComplete();
            }
        });

        locationComposite.setLayoutData(mainLayout);
        setControl(locationComposite);
    }

    /**
     * Check if the "Next" button can be enabled by checking if the user has filled all the fields
     */
    private void updatePageComplete()
    {
        setPageComplete(false);
        String language = Language.getIdFromName(locationComposite.getLanguage());
        String country = Country.getIdFromName(locationComposite.getCountry());
        if ((currentLangAndCountry == null)
                || (!currentLangAndCountry[0].equals(language) || !currentLangAndCountry[1]
                        .equals(country)))
        {
            setPageComplete(true);
        }
    }

    /**
     * Get the selected language
     * 
     * @return selected language name
     */
    public String getLanguage()
    {
        return locationComposite.getLanguage();
    }

    /**
     * Get the selected country
     * 
     * @return selected country name
     */
    public String getCountry()
    {
        return locationComposite.getCountry();
    }

}