capint
8/28/2016 - 11:21 AM

Eclipse >> SWT >> Get system image

Eclipse >> SWT >> Get system image

// Get the Display default icons
List<Image> imageList = new ArrayList<Image>();

imageList.
    add(Display.getDefault().getSystemImage(SWT.ICON_WARNING));
imageList.
    add(Display.getDefault().getSystemImage(SWT.ICON_WORKING));
imageList.
    add(Display.getDefault().getSystemImage(SWT.ICON_QUESTION));
imageList
        .add(Display.getDefault().getSystemImage(SWT.ICON_INFORMATION));
imageList.
    add(Display.getDefault().getSystemImage(SWT.ICON_ERROR));