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

9/17 work #20

Open
wants to merge 2 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


Partners: Vanessa Wu (vsw3) and Steve Mazzari (sam98)
14 changes: 14 additions & 0 deletions src/BrowserException.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

public class BrowserException extends Exception{

/**
*
*/
private static final long serialVersionUID = 1L;

public BrowserException(String string) {
// TODO Auto-generated constructor stub
super(string);
}

}
28 changes: 18 additions & 10 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 @@ -19,9 +20,10 @@ public class BrowserModel {
private URL myHome;
private URL myCurrentURL;
private int myCurrentIndex;
public static final String DEFAULT_RESOURCE_PACKAGE = "resources/";
private List<URL> myHistory;
private Map<String, URL> myFavorites;

private ResourceBundle myResources;

/**
* Creates an empty model.
Expand All @@ -32,34 +34,38 @@ public BrowserModel () {
myCurrentIndex = -1;
myHistory = new ArrayList<>();
myFavorites = new HashMap<>();
myResources = ResourceBundle.getBundle(DEFAULT_RESOURCE_PACKAGE + "Errors");
}

/**
* Returns the first page in next history, null if next history is empty.
* @throws BrowserException
*/
public URL next () {
public URL next () throws BrowserException {
if (hasNext()) {
myCurrentIndex++;
return myHistory.get(myCurrentIndex);
}
return null;
throw new BrowserException(myResources.getString("URL"));
}

/**
* Returns the first page in back history, null if back history is empty.
* @throws BrowserException
*/
public URL back () {
public URL back () throws BrowserException {
if (hasPrevious()) {
myCurrentIndex--;
return myHistory.get(myCurrentIndex);
}
return null;
throw new BrowserException(myResources.getString("URL"));
}

/**
* Changes current page to given URL, removing next history.
* @throws BrowserException
*/
public URL go (String url) {
public URL go (String url) throws BrowserException {
myCurrentURL = completeURL(url);
if (myCurrentURL != null) {
if (hasNext()) {
Expand Down Expand Up @@ -114,16 +120,18 @@ public void addFavorite (String name) {

/**
* Returns URL from favorites associated with given name, null if none set.
* @throws BrowserException
*/
public URL getFavorite (String name) {
public URL getFavorite (String name) throws BrowserException {
if (name != null && !name.equals("") && myFavorites.containsKey(name)) {
return myFavorites.get(name);
}
return null;
throw new BrowserException(myResources.getString("URL"));
}


// deal with a potentially incomplete URL
private URL completeURL (String possible) {
private URL completeURL (String possible) throws BrowserException {
try {
// try it as is
return new URL(possible);
Expand All @@ -137,7 +145,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(myResources.getString("URL"));
}
}
}
Expand Down
49 changes: 38 additions & 11 deletions src/BrowserView.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public class BrowserView {
private Button myBackButton;
private Button myNextButton;
private Button myHomeButton;
private Button addToFavorites;
// favorites
private ComboBox<String> myFavorites;
// get strings from resource file
Expand All @@ -75,6 +76,7 @@ public BrowserView (BrowserModel model, String language) {
myModel = model;
// use resources for labels
myResources = ResourceBundle.getBundle(DEFAULT_RESOURCE_PACKAGE + language);

BorderPane root = new BorderPane();
// must be first since other panels may refer to page
root.setCenter(makePageDisplay());
Expand All @@ -84,20 +86,22 @@ 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);
}
URL valid;
try {
valid = myModel.go(url);
update(valid);
} catch (BrowserException e) {
// TODO Auto-generated catch block
e.printStackTrace();
showError("Could not load " + url);
}
}

/**
Expand Down Expand Up @@ -126,22 +130,39 @@ public void showError (String message) {

// move to the next URL in the history
private void next () {
update(myModel.next());
try {
update(myModel.next());
} catch (BrowserException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

// move to the previous URL in the history
private void back () {
update(myModel.back());
try {
update(myModel.back());
} catch (BrowserException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

// change current URL to the home page, if set
private void home () {
showPage(myModel.getHome().toString());
}



// change page to favorite choice
private void showFavorite (String favorite) {
showPage(myModel.getFavorite(favorite).toString());
try {
showPage(myModel.getFavorite(favorite).toString());
} catch (BrowserException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

// update just the view to display given URL
Expand Down Expand Up @@ -225,6 +246,11 @@ private Node makePreferencesPanel () {
myModel.setHome();
enableButtons();
}));
myFavorites = new ComboBox<String>();
myFavorites.setPromptText(myResources.getString("FavoriteFirstItem"));
myFavorites.valueProperty().addListener((o, s1, s2) -> showFavorite(s2));
result.getChildren().add(makeButton("AddFavoriteCommand", event -> addFavorite()));
result.getChildren().add(myFavorites);
return result;
}

Expand All @@ -235,6 +261,7 @@ private Button makeButton (String property, EventHandler<ActionEvent> handler) {
String.format(".*\\.(%s)", String.join("|", ImageIO.getReaderFileSuffixes()));

Button result = new Button();

String label = myResources.getString(property);
if (label.matches(IMAGEFILE_SUFFIXES)) {
result.setGraphic(new ImageView(
Expand Down
1 change: 1 addition & 0 deletions src/resources/Errors.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
URL=Invalid URL
47 changes: 33 additions & 14 deletions src/resources/default.css
Original file line number Diff line number Diff line change
@@ -1,27 +1,38 @@
.root {
-fx-font-size: 14pt;
-fx-font-family: "Courier New";
-fx-base: rgb(132, 145, 47);
-fx-background: rgb(225, 228, 203);
-fx-base: #000000;
-fx-background: #ffffff;
}

.button {
-fx-text-fill: #006464;
-fx-background-color: #DFB951;
-fx-border-radius: 20;
-fx-background-radius: 20;
-fx-padding: 8;
-fx-background-color: #090a0c, linear-gradient(#38424b 0%, #1f2429 20%, #191d22 100%),linear-gradient(#20262b, #191d22),radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9),rgba(255,255,255,0));
-fx-background-radius: 5,4,3,5;
-fx-background-insets: 0,1,2,0;
-fx-text-fill: white;
-fx-text-size: 12px;
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 5, 0.0 , 0 , 1 );
-fx-font-family: Arial;
-fx-text-fill: linear-gradient(white, #d0d0d0);
-fx-font-size: 12px;
-fx-padding: 1 20 1 20;
}

.button:hover {
-fx-background-color: #3a3a3a;
}

.combo-box-base {
-fx-text-base-color: #006464;
-fx-background-color: #DFB951;
-fx-border-radius: 20;
-fx-background-radius: 20;
-fx-background-color: #090a0c, linear-gradient(#38424b 0%, #1f2429 20%, #191d22 100%),linear-gradient(#20262b, #191d22),radial-gradient(center 50% 0%, radius 100%, rgba(114,131,148,0.9),rgba(255,255,255,0));
-fx-background-radius: 5,4,3,5;
-fx-background-insets: 0,1,2,0;
-fx-text-fill: white;
-fx-text-size: 11px;
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 5, 0.0 , 0 , 1 );
-fx-font-family: Arial;
-fx-text-fill: linear-gradient(white, #d0d0d0);
-fx-font-size: 12px;
-fx-padding: 1 20 1 20;
}
.combo-box-base:hover {
-fx-background-color: #3a3a3a;
Expand All @@ -30,11 +41,19 @@
.label {
-fx-font-size: 11pt;
-fx-font-family: "Segoe UI Semibold";
-fx-text-fill: #006464;
-fx-text-fill: #000000;
-fx-opacity: 0.6;
}

.text-field {
-fx-font-size: 14pt;
-fx-font-family: "Segoe UI Semibold";
-fx-background-color: #000000;
-fx-background-radius: 5,4,3,5;
-fx-background-insets: 0,1,2,0;
-fx-text-fill: white;
-fx-text-size: 12px;
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 5, 0.0 , 0 , 1 );
-fx-font-family: Arial;
-fx-text-fill: linear-gradient(white, #d0d0d0);
-fx-font-size: 12px;
-fx-padding: 1 20 1 20;
}