Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Browser (ssm33 Sharrin Manor, csh36 Chris Hong) #13

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# lab_browser
A simple GUI example: a web browser

Worked on by Sharrin Manor (ssm33) and Chris Hong (csh36).
Added flower behind buttons (doesnt quite fit), added exceptions, added favorites function
16 changes: 16 additions & 0 deletions src/BrowserException.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@


public class BrowserException extends RuntimeException {

public BrowserException(String error){
super(error);
System.out.println("throwing error");
}


//replace for four nulls with throwing browser exceptons
//change show page to do a try catch in view

//make it take from resources
//String.format("dfdsfkajd %s dfsd", url));
}
12 changes: 8 additions & 4 deletions src/BrowserModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.ResourceBundle;


/**
Expand All @@ -15,12 +16,14 @@
public class BrowserModel {
// constants
public static final String PROTOCOL_PREFIX = "http://";
public static final String ERRORS_RESOURCE_PACKAGE = "resources/Errors";
// state
private URL myHome;
private URL myCurrentURL;
private int myCurrentIndex;
private List<URL> myHistory;
private Map<String, URL> myFavorites;
private ResourceBundle myErrorResources;


/**
Expand All @@ -32,6 +35,7 @@ public BrowserModel () {
myCurrentIndex = -1;
myHistory = new ArrayList<>();
myFavorites = new HashMap<>();
myErrorResources = ResourceBundle.getBundle(ERRORS_RESOURCE_PACKAGE);
}

/**
Expand All @@ -42,7 +46,7 @@ public URL next () {
myCurrentIndex++;
return myHistory.get(myCurrentIndex);
}
return null;
throw new BrowserException(myErrorResources.getString("NextError"));
}

/**
Expand All @@ -53,7 +57,7 @@ public URL back () {
myCurrentIndex--;
return myHistory.get(myCurrentIndex);
}
return null;
throw new BrowserException(myErrorResources.getString("BackError"));
}

/**
Expand Down Expand Up @@ -119,7 +123,7 @@ public URL getFavorite (String name) {
if (name != null && !name.equals("") && myFavorites.containsKey(name)) {
return myFavorites.get(name);
}
return null;
throw new BrowserException(myErrorResources.getString("NextError"));
}

// deal with a potentially incomplete URL
Expand All @@ -137,7 +141,7 @@ private URL completeURL (String possible) {
// e.g., let user leave off initial protocol
return new URL(PROTOCOL_PREFIX + possible);
} catch (MalformedURLException eee) {
return null;
throw new BrowserException(myErrorResources.getString("BadURL"));
}
}
}
Expand Down
23 changes: 15 additions & 8 deletions src/BrowserView.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,20 +84,20 @@ public BrowserView (BrowserModel model, String language) {
enableButtons();
// create scene to hold UI
myScene = new Scene(root, DEFAULT_SIZE.width, DEFAULT_SIZE.height);
//myScene.getStylesheets().add(DEFAULT_RESOURCE_PACKAGE + STYLESHEET);
myScene.getStylesheets().add(DEFAULT_RESOURCE_PACKAGE + STYLESHEET);
}

/**
* Display given URL.
*/
public void showPage (String url) {
URL valid = myModel.go(url);
if (url != null) {
update(valid);
}
else {
showError("Could not load " + url);
}
try {
URL valid = myModel.go(url);
update(valid);
} catch (BrowserException e){
showError(e.getMessage());
}

}

/**
Expand Down Expand Up @@ -204,6 +204,7 @@ public void handle (ActionEvent event) {
back();
}
});

result.getChildren().add(myBackButton);
// new style way to do set up callback (lambdas)
myNextButton = makeButton("NextCommand", event -> next());
Expand All @@ -221,6 +222,12 @@ public void handle (ActionEvent event) {
// make buttons for setting favorites/home URLs
private Node makePreferencesPanel () {
HBox result = new HBox();

result.getChildren().add(makeButton("AddFavoriteCommand", event -> addFavorite()));
myFavorites = new ComboBox<String>();
myFavorites.setPromptText("Fave lists");
myFavorites.valueProperty().addListener((o, s1, s2) -> showFavorite(s2));
result.getChildren().add(myFavorites);
result.getChildren().add(makeButton("SetHomeCommand", event -> {
myModel.setHome();
enableButtons();
Expand Down
4 changes: 4 additions & 0 deletions src/resources/Errors.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
NextError = There is no next History
FaveError = No associated favorite
PrevError = There is no prev history
BadURLError = Invalid url
2 changes: 1 addition & 1 deletion src/resources/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

.button {
-fx-text-fill: #006464;
-fx-background-color: #DFB951;
-fx-background-image: url("flower.png");
-fx-border-radius: 20;
-fx-background-radius: 20;
-fx-padding: 8;
Expand Down
Binary file added src/resources/flower.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.