public CancelableLoadingSplash(Composite c, int style) {
super(c, style);
setLayout(new FormLayout());
loadingImage = new AnimatedGif(this, SWT.NONE);
loadingImage.setGif(loadingGifImage);
FormData loadingImageLData = new FormData(loadingImage.getSize().x, loadingImage.getSize().y);
loadingImageLData.left = new FormAttachment(0, 100, 0);
loadingImageLData.right = new FormAttachment(100, 100, 0);
loadingImageLData.top = new FormAttachment(0, 100, 0);