當前位置: 首頁>>代碼示例>>Java>>正文


Java BooleanFieldEditor.setPage方法代碼示例

本文整理匯總了Java中org.eclipse.jface.preference.BooleanFieldEditor.setPage方法的典型用法代碼示例。如果您正苦於以下問題:Java BooleanFieldEditor.setPage方法的具體用法?Java BooleanFieldEditor.setPage怎麽用?Java BooleanFieldEditor.setPage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.eclipse.jface.preference.BooleanFieldEditor的用法示例。


在下文中一共展示了BooleanFieldEditor.setPage方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: createUI_30_ApplyOption

import org.eclipse.jface.preference.BooleanFieldEditor; //導入方法依賴的package包/類
private void createUI_30_ApplyOption(final Composite parent) {

		/*
		 * checkbox: pace min/max value
		 */
		_booleanEditorApplyOption = new BooleanFieldEditor(
				IPreferences.SRTM_APPLY_WHEN_PROFILE_IS_SELECTED,
				Messages.prefPage_srtm_profile_option_apply_when_selected,
				parent);
		_booleanEditorApplyOption.setPreferenceStore(_prefStore);
		_booleanEditorApplyOption.setPage(this);
		_booleanEditorApplyOption.setPropertyChangeListener(new IPropertyChangeListener() {
			@Override
			public void propertyChange(final PropertyChangeEvent event) {
				if (((Boolean) event.getNewValue())) {
					// apply profile
					final Object firstElement = ((StructuredSelection) _profileViewer.getSelection()).getFirstElement();
					if (firstElement instanceof SRTMProfile) {
						onSelectProfile((SRTMProfile) firstElement, true);
					}
				}
			}
		});
	}
 
開發者ID:wolfgang-ch,項目名稱:mytourbook,代碼行數:25,代碼來源:PrefPageSRTMColors.java

示例2: createUI_20_Cleanup

import org.eclipse.jface.preference.BooleanFieldEditor; //導入方法依賴的package包/類
private void createUI_20_Cleanup(final Composite parent) {

		final Group group = new Group(parent, SWT.NONE);
		group.setText(Messages.PrefPage_Photo_ThumbStore_Group_Cleanup);
		GridDataFactory.fillDefaults().grab(true, false).applyTo(group);
		{
			/*
			 * field: use default location
			 */
			_editorBoolDoCleanup = new BooleanFieldEditor(
					IPhotoPreferences.PHOTO_THUMBNAIL_STORE_IS_CLEANUP,
					Messages.PrefPage_Photo_ThumbStore_Checkbox_Cleanup,
					group);
			_editorBoolDoCleanup.setPage(this);
			_editorBoolDoCleanup.setPreferenceStore(_prefStore);
			addField(_editorBoolDoCleanup);

			createUI_30_CleanupOptions(group);
			createUI_40_CleanupNow(group);
			createUI_50_LastCleanup(group);
		}

		// !!! set layout after the editor was created because the editor sets the parents layout
		GridLayoutFactory.swtDefaults().numColumns(1).applyTo(group);
	}
 
開發者ID:wolfgang-ch,項目名稱:mytourbook,代碼行數:26,代碼來源:PrefPagePhotoThumbnailStore.java

示例3: createUI

import org.eclipse.jface.preference.BooleanFieldEditor; //導入方法依賴的package包/類
private void createUI(final Composite parent) {

		final IPreferenceStore prefStore = getPreferenceStore();

		fPrefContainer = new Composite(parent, SWT.NONE);
		GridDataFactory.swtDefaults().grab(true, false).applyTo(fPrefContainer);
		GridLayoutFactory.fillDefaults().applyTo(fPrefContainer);
//		fPrefContainer.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_YELLOW));

		// checkbox: is offline enabled
		fUseOffLineCache = new BooleanFieldEditor(IMappingPreferences.OFFLINE_CACHE_USE_OFFLINE,
				Messages.pref_cache_use_offline,
				fPrefContainer);
		fUseOffLineCache.setPreferenceStore(prefStore);
		fUseOffLineCache.setPage(this);
		fUseOffLineCache.load();
		fUseOffLineCache.setPropertyChangeListener(new IPropertyChangeListener() {
			public void propertyChange(final PropertyChangeEvent event) {
				enableControls();
			}
		});

		/*
		 * offline cache settings
		 */
		final Composite offlineContainer = new Composite(fPrefContainer, SWT.NONE);
		GridDataFactory.fillDefaults().grab(true, false).indent(15, 5).applyTo(offlineContainer);
		GridLayoutFactory.fillDefaults().applyTo(offlineContainer);

		createUICacheSettings(offlineContainer);
		createUICacheInfo(offlineContainer);

		/*
		 * hide error messages, this happend when the cache path is invalid but the offline cache is
		 * disabled
		 */
		if (fUseOffLineCache.getBooleanValue() == false) {
			setErrorMessage(null);
		}
	}
 
開發者ID:wolfgang-ch,項目名稱:mytourbook,代碼行數:41,代碼來源:PrefPageCache.java

示例4: createUI

import org.eclipse.jface.preference.BooleanFieldEditor; //導入方法依賴的package包/類
private Control createUI(final Composite parent) {

		final IPreferenceStore prefStore = getPreferenceStore();

		final Composite uiContainer = new Composite(parent, SWT.NONE);
		GridDataFactory.swtDefaults().grab(true, false).applyTo(uiContainer);
		GridLayoutFactory.fillDefaults().applyTo(uiContainer);
//		fPrefContainer.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_YELLOW));
		{
			// checkbox: is offline enabled
			_boolEditorUseOffLineCache = new BooleanFieldEditor(
					IMappingPreferences.OFFLINE_CACHE_USE_OFFLINE,
					Messages.pref_cache_use_offline,
					uiContainer);
			_boolEditorUseOffLineCache.setPreferenceStore(prefStore);
			_boolEditorUseOffLineCache.setPage(this);
			_boolEditorUseOffLineCache.load();
			_boolEditorUseOffLineCache.setPropertyChangeListener(new IPropertyChangeListener() {
				public void propertyChange(final PropertyChangeEvent event) {
					enableControls();
				}
			});

			/*
			 * offline cache settings
			 */
			final Composite offlineContainer = new Composite(uiContainer, SWT.NONE);
			GridDataFactory.fillDefaults().grab(true, false).indent(15, 5).applyTo(offlineContainer);
			GridLayoutFactory.fillDefaults().applyTo(offlineContainer);

			createUI_10_CacheSettings(offlineContainer);
			createUI_20_CacheInfo(offlineContainer);
		}

		/*
		 * hide error messages, this happend when the cache path is invalid but the offline cache is
		 * disabled
		 */
		if (_boolEditorUseOffLineCache.getBooleanValue() == false) {
			setErrorMessage(null);
		}

		return uiContainer;
	}
 
開發者ID:wolfgang-ch,項目名稱:mytourbook,代碼行數:45,代碼來源:PrefPageCache.java

示例5: createUI

import org.eclipse.jface.preference.BooleanFieldEditor; //導入方法依賴的package包/類
private Composite createUI(final Composite parent) {

		final IPreferenceStore prefStore = getPreferenceStore();

		final Composite container = new Composite(parent, SWT.NONE);
		GridDataFactory.fillDefaults().grab(true, false).applyTo(container);
		GridLayoutFactory.fillDefaults().applyTo(container);
		{
			final Composite infoContainer = new Composite(container, SWT.NONE);
			GridDataFactory.fillDefaults().grab(true, false).applyTo(infoContainer);
			GridLayoutFactory.fillDefaults().applyTo(infoContainer);
			{

				// checkbox: show tile info
				_chkShowTileInfo = new BooleanFieldEditor(
						IMappingPreferences.SHOW_MAP_TILE_INFO,
						Messages.pref_map_show_tile_info,
						infoContainer);
				_chkShowTileInfo.setPreferenceStore(prefStore);
				_chkShowTileInfo.setPage(this);
				_chkShowTileInfo.load();
			}

 			final Composite fontContainer = new Composite(container, SWT.NONE);
			GridDataFactory.fillDefaults().indent(0, 20).grab(true, false).applyTo(fontContainer);
			GridLayoutFactory.fillDefaults().applyTo(fontContainer);
			{
				// font: mono space
				_monoFontEditor = new FontFieldEditor(
						IMappingPreferences.THEME_FONT_LOGGING,
						Messages.Theme_Font_Logging,
						Messages.Theme_Font_Logging_PREVIEW_TEXT,
						fontContainer);
				_monoFontEditor.setPreferenceStore(prefStore);
				_monoFontEditor.setPage(this);
				_monoFontEditor.load();
			}
			// force 2 columns
			final GridLayout gl = (GridLayout) fontContainer.getLayout();
			gl.numColumns = 2;
			gl.makeColumnsEqualWidth = true;
		}

		return container;
	}
 
開發者ID:wolfgang-ch,項目名稱:mytourbook,代碼行數:46,代碼來源:PrefPageMap.java

示例6: createUI_10_OfflineFolder

import org.eclipse.jface.preference.BooleanFieldEditor; //導入方法依賴的package包/類
private void createUI_10_OfflineFolder(final Composite parent) {

		final Group group = new Group(parent, SWT.NONE);
		group.setText(Messages.Pref_Map25_Offline_Group_OfflineMap);
		GridDataFactory.fillDefaults().grab(true, false).applyTo(group);
		{
			/*
			 * field: use default location
			 */
			_editorBool_UseDefaultLocation = new BooleanFieldEditor(
					ITourbookPreferences.MAP25_OFFLINE_MAP_IS_DEFAULT_LOCATION,
					Messages.Pref_Map25_Offline_Checkbox_UseDefaultLocation,
					group);
			_editorBool_UseDefaultLocation.setPage(this);
			_editorBool_UseDefaultLocation.setPreferenceStore(_prefStore);

			addField(_editorBool_UseDefaultLocation);

			// spacer
			new Label(group, SWT.NONE);

			_editorContainerLocation = new Composite(group, SWT.NONE);
			GridDataFactory.fillDefaults().grab(true, false).span(3, 1).applyTo(_editorContainerLocation);
			{
				/*
				 * editor: thumbnail location
				 */
				_editorDir_ThumbnailLocation = new DirectoryFieldEditor(
						ITourbookPreferences.MAP25_OFFLINE_MAP_CUSTOM_LOCATION,
						Messages.Pref_Map25_Offline_Label_Location,
						_editorContainerLocation);

				_editorDir_ThumbnailLocation.setPage(this);
				_editorDir_ThumbnailLocation.setPreferenceStore(_prefStore);
				_editorDir_ThumbnailLocation.setEmptyStringAllowed(false);

				final Text textDirEditor = _editorDir_ThumbnailLocation.getTextControl(_editorContainerLocation);
				textDirEditor.addModifyListener(new ModifyListener() {
					@Override
					public void modifyText(final ModifyEvent e) {

						_isModified = true;

						isDataValid();
					}
				});

				addField(_editorDir_ThumbnailLocation);
			}
		}

		// !!! set layout after the editor was created because the editor sets the parents layout
		GridLayoutFactory.swtDefaults().numColumns(3).applyTo(group);
	}
 
開發者ID:wolfgang-ch,項目名稱:mytourbook,代碼行數:55,代碼來源:PrefPageMap25OfflineMap.java

示例7: createUI_10_StoreLocation

import org.eclipse.jface.preference.BooleanFieldEditor; //導入方法依賴的package包/類
private void createUI_10_StoreLocation(final Composite parent) {

		final Group group = new Group(parent, SWT.NONE);
		group.setText(Messages.PrefPage_Photo_ThumbStore_Group_ThumbnailStoreLocation);
		GridDataFactory.fillDefaults().grab(true, false).applyTo(group);
		{
			/*
			 * field: use default location
			 */
			_editorBoolUseDefaultLocation = new BooleanFieldEditor(
					IPhotoPreferences.PHOTO_THUMBNAIL_STORE_IS_DEFAULT_LOCATION,
					Messages.PrefPage_Photo_ThumbStore_Checkbox_UseDefaultLocation,
					group);
			_editorBoolUseDefaultLocation.setPage(this);
			_editorBoolUseDefaultLocation.setPreferenceStore(_prefStore);

			addField(_editorBoolUseDefaultLocation);

			// spacer
			new Label(group, SWT.NONE);

			_containerLocation = new Composite(group, SWT.NONE);
			GridDataFactory.fillDefaults().grab(true, false).span(3, 1).applyTo(_containerLocation);
			{
				/*
				 * editor: thumbnail location
				 */
				_editorDirThumbnailLocation = new DirectoryFieldEditor(
						IPhotoPreferences.PHOTO_THUMBNAIL_STORE_CUSTOM_LOCATION,
						Messages.PrefPage_Photo_ThumbStore_Text_Location,
						_containerLocation);

				_editorDirThumbnailLocation.setPage(this);
				_editorDirThumbnailLocation.setPreferenceStore(_prefStore);
				_editorDirThumbnailLocation.setEmptyStringAllowed(false);

				final Text textDirEditor = _editorDirThumbnailLocation.getTextControl(_containerLocation);
				textDirEditor.addModifyListener(new ModifyListener() {
					@Override
					public void modifyText(final ModifyEvent e) {
						isDataValid();
					}
				});

				addField(_editorDirThumbnailLocation);
			}
		}

		// !!! set layout after the editor was created because the editor sets the parents layout
		GridLayoutFactory.swtDefaults().numColumns(3).applyTo(group);
	}
 
開發者ID:wolfgang-ch,項目名稱:mytourbook,代碼行數:52,代碼來源:PrefPagePhotoThumbnailStore.java


注:本文中的org.eclipse.jface.preference.BooleanFieldEditor.setPage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。