Changeset 14343
- Timestamp:
- 06/21/08 17:49:45 (5 years ago)
- Location:
- lang/java/sabotter/trunk
- Files:
-
- 5 added
- 1 removed
- 3 modified
-
icons/favo.gif (added)
-
icons/favo_disabled.gif (added)
-
icons/internet.gif (added)
-
icons/refresh.gif (added)
-
icons/sample.gif (deleted)
-
icons/tag.gif (added)
-
src/jp/xet/eclipse/sabotter/Images.java (modified) (1 diff)
-
src/jp/xet/eclipse/sabotter/SabotterPlugin.java (modified) (1 diff)
-
src/jp/xet/eclipse/sabotter/views/SabotterView.java (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/java/sabotter/trunk/src/jp/xet/eclipse/sabotter/Images.java
r10593 r14343 17 17 public static final String BUTTON_REFRESH = "refresh"; 18 18 19 /** イメージキー:タグ */ 20 public static final String ICON_TAG = "tag"; 21 22 /** イメージキー:favo */ 23 public static final String ICON_FAVO = "favo"; 24 25 /** イメージキー:internet */ 26 public static final String ICON_INTERNET = "internet"; 27 19 28 20 29 /** cannot instantiate */ -
lang/java/sabotter/trunk/src/jp/xet/eclipse/sabotter/SabotterPlugin.java
r12572 r14343 125 125 registerImage(registry, Images.BUTTON_FILTER, "filter.gif"); 126 126 registerImage(registry, Images.BUTTON_REFRESH, "refresh.gif"); 127 registerImage(registry, Images.ICON_TAG, "tag.gif"); 128 registerImage(registry, Images.ICON_FAVO, "favo.gif"); 129 registerImage(registry, Images.ICON_INTERNET, "internet.gif"); 127 130 } 128 131 -
lang/java/sabotter/trunk/src/jp/xet/eclipse/sabotter/views/SabotterView.java
r13765 r14343 66 66 import org.eclipse.swt.widgets.Text; 67 67 import org.eclipse.ui.IActionBars; 68 import org.eclipse.ui.ISharedImages;69 68 import org.eclipse.ui.IWorkbenchActionConstants; 70 69 import org.eclipse.ui.PartInitException; 71 import org.eclipse.ui.PlatformUI;72 70 import org.eclipse.ui.part.ViewPart; 73 71 … … 469 467 createFavoriteAction.setText(Messages.action_create_favorite); 470 468 createFavoriteAction.setToolTipText(Messages.tooltip_create_favorite); 471 createFavoriteAction.setImageDescriptor(PlatformUI.getWorkbench().getSharedImages().getImageDescriptor( 472 ISharedImages.IMG_TOOL_NEW_WIZARD)); // TODO アイコン適当 469 createFavoriteAction.setImageDescriptor(imageRegistry.getDescriptor(Images.ICON_FAVO)); 473 470 actions.put(CreateFavoriteAction.ACTION_ID, createFavoriteAction); 474 471 … … 491 488 openUsersHomeAction.setText(Messages.action_open_users_home); 492 489 openUsersHomeAction.setToolTipText(Messages.tooltip_open_users_home); 493 openUsersHomeAction.setImageDescriptor(PlatformUI.getWorkbench().getSharedImages().getImageDescriptor( 494 ISharedImages.IMG_OBJ_ELEMENT)); // TODO アイコン適当 490 openUsersHomeAction.setImageDescriptor(imageRegistry.getDescriptor(Images.ICON_INTERNET)); 495 491 actions.put(OpenUsersHomeAction.ACTION_ID, openUsersHomeAction); 496 492 … … 498 494 openFavotterAction.setText(Messages.action_open_favotter); 499 495 openFavotterAction.setToolTipText(Messages.tooltip_open_favotter); 500 openFavotterAction.setImageDescriptor(PlatformUI.getWorkbench().getSharedImages().getImageDescriptor( 501 ISharedImages.IMG_OBJ_ELEMENT)); // TODO アイコン適当 496 openFavotterAction.setImageDescriptor(imageRegistry.getDescriptor(Images.ICON_INTERNET)); 502 497 actions.put(OpenFavotterAction.ACTION_ID, openFavotterAction); 503 498 … … 505 500 tagAction.setText("Edit tags"); 506 501 tagAction.setToolTipText("Edit tags"); 507 tagAction.setImageDescriptor(PlatformUI.getWorkbench().getSharedImages().getImageDescriptor( 508 ISharedImages.IMG_OBJ_ELEMENT)); // TODO アイコン適当 502 tagAction.setImageDescriptor(imageRegistry.getDescriptor(Images.ICON_TAG)); 509 503 actions.put(TagAction.ACTION_ID, tagAction); 510 504 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)