Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a4278c7bc7af7a94cbd2a4481754dfd28b524ecc (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2005, 2006 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.internal.ccvs.ui;

import org.eclipse.jface.preference.RadioGroupFieldEditor;

public class UpdateMergePreferencePage extends CVSFieldEditorPreferencePage {

	private RadioGroupFieldEditor updateStyle;
	private RadioGroupFieldEditor updatePreviewStyle;

	protected String getPageHelpContextId() {
		return IHelpContextIds.UPDATE_MERGE_PREFERENCE_PAGE; 
	}

	protected String getPageDescription() {
		return null;
	}

	protected void createFieldEditors() {
		
		updateStyle = new RadioGroupFieldEditor(
						ICVSUIConstants.PREF_UPDATE_HANDLING,
						CVSUIMessages.WorkInProgressPage_0,
						1,
						new String[][] {
							new String[] {CVSUIMessages.WorkInProgressPage_1, ICVSUIConstants.PREF_UPDATE_HANDLING_PREVIEW},
							new String[] {CVSUIMessages.WorkInProgressPage_2, ICVSUIConstants.PREF_UPDATE_HANDLING_PERFORM},
							new String[] {CVSUIMessages.UpdateMergePreferencePage_0, ICVSUIConstants.PREF_UPDATE_HANDLING_TRADITIONAL}
						},
						getFieldEditorParent(),
						true);
		addField(updateStyle);
		
		updatePreviewStyle = new RadioGroupFieldEditor(
				ICVSUIConstants.PREF_UPDATE_PREVIEW,
				CVSUIMessages.UpdateMergePreferencePage_1,
				1,
				new String[][] {
					new String[] {CVSUIMessages.UpdateMergePreferencePage_2,  ICVSUIConstants.PREF_UPDATE_PREVIEW_IN_DIALOG},
					new String[] {CVSUIMessages.UpdateMergePreferencePage_3, ICVSUIConstants.PREF_UPDATE_PREVIEW_IN_SYNCVIEW}
				},
				getFieldEditorParent(),
				true);
		addField(updatePreviewStyle);
		
		// TODO: Add option for sync and compare to use old or new (add to sync compare page)
		
	}

}

Back to the top