Search in sources :

Example 1 with BrushColour

use of org.hwyl.sexytopo.model.sketch.BrushColour in project sexytopo by richsmith.

the class GraphActivity method initialiseBrushColour.

private void initialiseBrushColour() {
    SharedPreferences preferences = getSharedPreferences(DISPLAY_PREFERENCES_KEY, Context.MODE_PRIVATE);
    String selected = preferences.getString(BRUSH_COLOUR_PREFERENCE_KEY, null);
    BrushColour brushColour = (selected == null) ? DEFAULT_BRUSH_COLOUR_SELECTION : BrushColour.valueOf(selected);
    selectBrushColour(brushColour);
}
Also used : BrushColour(org.hwyl.sexytopo.model.sketch.BrushColour) SharedPreferences(android.content.SharedPreferences)

Example 2 with BrushColour

use of org.hwyl.sexytopo.model.sketch.BrushColour in project sexytopo by richsmith.

the class GraphActivity method selectBrushColour.

private void selectBrushColour(BrushColour toSelect) {
    SharedPreferences preferences = getSharedPreferences(DISPLAY_PREFERENCES_KEY, Context.MODE_PRIVATE);
    SharedPreferences.Editor editor = preferences.edit();
    editor.putString(BRUSH_COLOUR_PREFERENCE_KEY, toSelect.toString());
    editor.apply();
    graphView.setBrushColour(toSelect);
    for (BrushColour brushColour : BrushColour.values()) {
        View button = findViewById(brushColour.getId());
        if (brushColour == toSelect) {
            button.getBackground().setColorFilter(0xffffffff, PorterDuff.Mode.SRC_ATOP);
            button.invalidate();
        } else {
            button.getBackground().clearColorFilter();
        }
    }
}
Also used : BrushColour(org.hwyl.sexytopo.model.sketch.BrushColour) SharedPreferences(android.content.SharedPreferences) ImageView(android.widget.ImageView) View(android.view.View) GraphView(org.hwyl.sexytopo.control.graph.GraphView)

Example 3 with BrushColour

use of org.hwyl.sexytopo.model.sketch.BrushColour in project sexytopo by richsmith.

the class GraphActivity method handleAction.

public boolean handleAction(int itemId) {
    GraphView graphView = findViewById(R.id.graphView);
    graphView.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);
    for (BrushColour brushColour : BrushColour.values()) {
        if (brushColour.getId() == itemId) {
            selectBrushColour(brushColour);
            if (!graphView.getSketchTool().usesColour()) {
                selectSketchTool(SketchTool.DRAW);
            }
            return true;
        }
    }
    SketchTool alreadySelectedTool = graphView.getSketchTool();
    for (SketchTool sketchTool : SketchTool.values()) {
        if (sketchTool.getId() == itemId) {
            if (alreadySelectedTool == SketchTool.SYMBOL && sketchTool == SketchTool.SYMBOL) {
                toggleSymbolToolbar();
            } else {
                selectSketchTool(sketchTool);
            }
            return true;
        }
    }
    for (Symbol symbol : Symbol.values()) {
        if (itemId == symbol.getBitmapId()) {
            selectSketchTool(SketchTool.SYMBOL);
            selectSymbol(symbol);
            return true;
        }
    }
    if (itemId == R.id.buttonSymbolToolbarClose) {
        setSymbolToolbarOpen(false);
        return true;
    } else if (itemId == R.id.buttonZoomIn) {
        graphView.adjustZoomBy(ZOOM_INCREMENT);
        graphView.invalidate();
        return true;
    } else if (itemId == R.id.buttonZoomOut) {
        graphView.adjustZoomBy(ZOOM_DECREMENT);
        graphView.invalidate();
        return true;
    } else if (itemId == R.id.buttonUndo) {
        graphView.undo();
        return true;
    } else if (itemId == R.id.buttonRedo) {
        graphView.redo();
        return true;
    } else if (itemId == R.id.buttonMenu) {
        openDisplayMenu();
        return true;
    } else if (itemId == R.id.buttonCentreView) {
        graphView.centreViewOnActiveStation();
        graphView.invalidate();
        return true;
    } else if (itemId == R.id.buttonDeleteLastLeg) {
        getSurvey().undoAddLeg();
        syncGraphWithSurvey();
        return true;
    }
    return false;
}
Also used : SketchTool(org.hwyl.sexytopo.model.sketch.SketchTool) BrushColour(org.hwyl.sexytopo.model.sketch.BrushColour) Symbol(org.hwyl.sexytopo.model.sketch.Symbol) GraphView(org.hwyl.sexytopo.control.graph.GraphView)

Aggregations

BrushColour (org.hwyl.sexytopo.model.sketch.BrushColour)3 SharedPreferences (android.content.SharedPreferences)2 GraphView (org.hwyl.sexytopo.control.graph.GraphView)2 View (android.view.View)1 ImageView (android.widget.ImageView)1 SketchTool (org.hwyl.sexytopo.model.sketch.SketchTool)1 Symbol (org.hwyl.sexytopo.model.sketch.Symbol)1