forked from forcedotcom/dataloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
show the dialog to upgrade data loader if newer version is available
Based on the ask at https://ideas.salesforce.com/s/idea/a0B8W00000GdVkgUAF/data-loader-upgrade-option-should-be-there-in-the-application-itself - show the dialog with the link to Data Loader download page if a newer version is available for download.
- Loading branch information
1 parent
c831950
commit 141cbbd
Showing
9 changed files
with
263 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 116 additions & 0 deletions
116
src/main/java/com/salesforce/dataloader/ui/LoaderDownloadDialog.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/* | ||
* Copyright (c) 2015, salesforce.com, inc. | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without modification, are permitted provided | ||
* that the following conditions are met: | ||
* | ||
* Redistributions of source code must retain the above copyright notice, this list of conditions and the | ||
* following disclaimer. | ||
* | ||
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and | ||
* the following disclaimer in the documentation and/or other materials provided with the distribution. | ||
* | ||
* Neither the name of salesforce.com, inc. nor the names of its contributors may be used to endorse or | ||
* promote products derived from this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | ||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | ||
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | ||
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
package com.salesforce.dataloader.ui; | ||
|
||
import org.eclipse.jface.dialogs.IDialogConstants; | ||
import org.eclipse.swt.SWT; | ||
import org.eclipse.swt.events.SelectionAdapter; | ||
import org.eclipse.swt.events.SelectionEvent; | ||
import org.eclipse.swt.widgets.*; | ||
|
||
import com.salesforce.dataloader.util.AppUtil; | ||
|
||
/** | ||
* Splash screen for the loader. | ||
* | ||
* @author Lexi Viripaeff | ||
* @since 6.0 | ||
*/ | ||
public class LoaderDownloadDialog extends LoaderTitleAreaDialog { | ||
|
||
|
||
/** | ||
* MyTitleAreaDialog constructor | ||
* | ||
* @param shell | ||
* the parent shell | ||
*/ | ||
public LoaderDownloadDialog(Shell activeShell) { | ||
super(activeShell); | ||
} | ||
|
||
/** | ||
* Creates the dialog's contents | ||
* | ||
* @param parent | ||
* the parent composite | ||
* @return Control | ||
*/ | ||
@Override | ||
protected Control createContents(Composite parent) { | ||
Control contents = super.createContents(parent); | ||
|
||
// Set the title | ||
setTitle(Labels.getString("LoaderDownloadDialog.title")); //$NON-NLS-1$ | ||
|
||
// Set the message | ||
setMessage(Labels.getFormattedString("LoaderDownloadDialog.messageLineOne", | ||
new String[] {AppUtil.getLatestDownloadableDataLoaderVersion(), | ||
AppUtil.DATALOADER_DOWNLOAD_URL})); //$NON-NLS-1$ | ||
|
||
// Set the image | ||
setTitleImage(UIUtils.getImageRegistry().get("splashscreens")); //$NON-NLS-1$ | ||
|
||
return contents; | ||
} | ||
|
||
/** | ||
* Creates the gray area | ||
* | ||
* @param parent | ||
* the parent composite | ||
* @return Control | ||
*/ | ||
@Override | ||
protected Control createDialogArea(Composite parent) { | ||
Composite composite = (Composite)super.createDialogArea(parent); | ||
|
||
return composite; | ||
} | ||
|
||
/** | ||
* Creates the buttons for the button bar | ||
* | ||
* @param parent | ||
* the parent composite | ||
*/ | ||
@Override | ||
protected void createButtonsForButtonBar(Composite parent) { | ||
// create all the buttons, in order | ||
|
||
createButton(parent, IDialogConstants.OK_ID, IDialogConstants.OK_LABEL, true); | ||
} | ||
|
||
/** | ||
* Sets the button behavior | ||
*/ | ||
@Override | ||
protected void buttonPressed(int buttonID) { | ||
setReturnCode(buttonID); | ||
close(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.