Skip to content

Commit

Permalink
Change image
Browse files Browse the repository at this point in the history
  • Loading branch information
hangum committed Dec 19, 2015
1 parent 16b656e commit 4043b74
Show file tree
Hide file tree
Showing 16 changed files with 18 additions and 190 deletions.
Expand Up @@ -128,7 +128,7 @@ protected Control createDialogArea(Composite parent) {
lblLoginForm.setText("Welcome to the Tadpole DB Hub");

lblLabelLblhangum = new Label(compositeHead, SWT.NONE);
lblLabelLblhangum.setText(" Open source Projects release by hangum");
lblLabelLblhangum.setText(" Projects release by hangum");

Composite compositeLeftBtn = new Composite(container, SWT.NONE);
compositeLeftBtn.setLayout(new GridLayout(1, false));
Expand Down
Binary file modified com.hangum.tadpole.application/resources/icons/about.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified com.hangum.tadpole.application/resources/icons/bugAndIssue.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Expand Up @@ -21,9 +21,9 @@
public class SystemDefine {

public static final String NAME = "Tadpole DB Hub";
public static final String MAJOR_VERSION = "1.6.7";
public static final String SUB_VERSION = "Build(R1)";
public static final String RELEASE_DATE = "2015.12.10";
public static final String MAJOR_VERSION = "1.6.8";
public static final String SUB_VERSION = "Build(R0)";
public static final String RELEASE_DATE = "2015.12.20";
public static final String INFORMATION = "http://hangum.github.io/TadpoleForDBTools/";

public static final String ADMIN_EMAIL = "adi.tadpole@gmail.com";
Expand Down
Expand Up @@ -41,6 +41,7 @@ public void service(HttpServletRequest request, HttpServletResponse response) th
private void makeHtmlFile(HttpServletResponse resp) {
try {
resp.setContentType("application/octet-stream");
// resp.setCharacterEncoding("UTF-8");
resp.setContentLength(getByteContent().length);
resp.setHeader("Content-Disposition", "attachment; filename=\"" + getName() + "\";");
resp.flushBuffer();
Expand Down
Binary file modified com.hangum.tadpole.manager.core/resources/icons/schema_history.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified com.hangum.tadpole.rdb.core/resources/icons/exit.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added com.hangum.tadpole.rdb.core/resources/icons/left.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified com.hangum.tadpole.rdb.core/resources/icons/preferences.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Expand Up @@ -83,6 +83,7 @@
import com.hangum.tadpole.session.manager.SessionManager;
import com.hangum.tadpole.tajo.core.connections.manager.ConnectionPoolManager;
import com.ibatis.sqlmap.client.SqlMapClient;
import com.swtdesigner.ResourceManager;

/**
* result set composite
Expand Down Expand Up @@ -178,34 +179,21 @@ public void widgetSelected(SelectionEvent e) {
public void widgetSelected(SelectionEvent e) {
if(SWT.VERTICAL == sashFormResult.getOrientation()) {
sashFormResult.setOrientation(SWT.HORIZONTAL);
btnAddVertical.setImage(ResourceManager.getPluginImage(Activator.PLUGIN_ID, "resources/icons/left.png"));
} else {
sashFormResult.setOrientation(SWT.VERTICAL);
btnAddVertical.setImage(ResourceManager.getPluginImage(Activator.PLUGIN_ID, "resources/icons/bottom.png"));
}

layout();
}
});
btnAddVertical.setText(Messages.get().RDBResultComposite_btnOrientation);
btnAddVertical.setImage(ResourceManager.getPluginImage(Activator.PLUGIN_ID, "resources/icons/left.png"));

Label lblTemp = new Label(compHead, SWT.NONE);
lblTemp.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));

// lblResult = new Label(compHead, SWT.NONE);
// lblResult.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
// lblResult.setText(Messages.get().RDBResultComposite_lblResult);
//
// comboResult = new Combo(compHead, SWT.READ_ONLY);
// comboResult.addSelectionListener(new SelectionAdapter() {
// @Override
// public void widgetSelected(SelectionEvent e) {
// changeResultType();
// }
// });
// comboResult.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
// for(RESULT_COMP_TYPE resultType : RESULT_COMP_TYPE.values()) {
// comboResult.add(resultType.name());
// comboResult.setData(resultType.name(), resultType);
// }
// comboResult.setText(GetPreferenceGeneral.getResultType());

sashFormResult = new SashForm(this, SWT.HORIZONTAL);
sashFormResult.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));

Expand Down

This file was deleted.

Expand Up @@ -86,8 +86,13 @@ public ResultTailComposite(Composite reqAbstractResult, Composite compositeBtn,
@Override
public void widgetSelected(SelectionEvent e) {
String strPin = btnPin.getToolTipText();
if("Pin".equals(strPin)) btnPin.setToolTipText("Unpin");
else btnPin.setToolTipText("Pin");
if("Pin".equals(strPin)) {
btnPin.setToolTipText("Unpin");
btnPin.setBackground(SWTResourceManager.getColor(SWT.COLOR_DARK_GRAY));
} else {
btnPin.setToolTipText("Pin");
btnPin.setBackground(SWTResourceManager.getColor(SWT.COLOR_WHITE));
}

layout();
}
Expand Down

This file was deleted.

Binary file not shown.

This file was deleted.

0 comments on commit 4043b74

Please sign in to comment.