Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
vadere
vadere
Commits
0043e842
Commit
0043e842
authored
Nov 15, 2016
by
Jakob Schöttl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename config file
parent
6b15e366
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
9 additions
and
9 deletions
+9
-9
VadereGui/resources/config/topographycreator_config.properties
...eGui/resources/config/topographycreator_config.properties
+0
-0
VadereGui/src/org/vadere/gui/projectview/utils/ApplicationWriter.java
...c/org/vadere/gui/projectview/utils/ApplicationWriter.java
+1
-1
VadereGui/src/org/vadere/gui/topographycreator/control/ActionQuickSaveTopography.java
.../topographycreator/control/ActionQuickSaveTopography.java
+1
-1
VadereGui/src/org/vadere/gui/topographycreator/control/ActionResetTopography.java
.../gui/topographycreator/control/ActionResetTopography.java
+1
-1
VadereGui/src/org/vadere/gui/topographycreator/control/ActionSaveTopography.java
...e/gui/topographycreator/control/ActionSaveTopography.java
+1
-1
VadereGui/src/org/vadere/gui/topographycreator/control/DrawDotMode.java
...org/vadere/gui/topographycreator/control/DrawDotMode.java
+1
-1
VadereGui/src/org/vadere/gui/topographycreator/control/EraserMode.java
.../org/vadere/gui/topographycreator/control/EraserMode.java
+1
-1
VadereGui/src/org/vadere/gui/topographycreator/control/ZoomInMode.java
.../org/vadere/gui/topographycreator/control/ZoomInMode.java
+1
-1
VadereGui/src/org/vadere/gui/topographycreator/control/ZoomOutMode.java
...org/vadere/gui/topographycreator/control/ZoomOutMode.java
+1
-1
VadereGui/src/org/vadere/gui/topographycreator/view/TopographyWindow.java
...g/vadere/gui/topographycreator/view/TopographyWindow.java
+1
-1
No files found.
VadereGui/resources/config/topo
log
ycreator_config.properties
→
VadereGui/resources/config/topo
graph
ycreator_config.properties
View file @
0043e842
File moved
VadereGui/src/org/vadere/gui/projectview/utils/ApplicationWriter.java
View file @
0043e842
...
...
@@ -29,7 +29,7 @@ public class ApplicationWriter {
public
static
void
savePreferences
()
throws
IOException
,
BackingStoreException
{
logger
.
info
(
String
.
format
(
"saving preferences..."
));
Resources
.
getInstance
(
"postvisualization"
).
save
();
// TODO [priority=medium] [task=refactoring] is this necessary? these file seem to have gotten changed last in 2014...
Resources
.
getInstance
(
"topo
log
ycreator"
).
save
();
Resources
.
getInstance
(
"topo
graph
ycreator"
).
save
();
IOUtils
.
saveUserPreferences
(
VadereApplication
.
preferencesFilename
,
Preferences
.
userNodeForPackage
(
VadereApplication
.
class
));
logger
.
info
(
String
.
format
(
"saved preferences."
));
...
...
VadereGui/src/org/vadere/gui/topographycreator/control/ActionQuickSaveTopography.java
View file @
0043e842
...
...
@@ -16,7 +16,7 @@ import org.vadere.gui.topographycreator.utils.TopographyJsonWriter;
*
*/
public
class
ActionQuickSaveTopography
extends
TopographyAction
{
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
log
ycreator"
);
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
graph
ycreator"
);
private
static
final
long
serialVersionUID
=
-
6802761549259354252L
;
public
ActionQuickSaveTopography
(
String
name
,
ImageIcon
icon
,
IDrawPanelModel
panelModel
)
{
...
...
VadereGui/src/org/vadere/gui/topographycreator/control/ActionResetTopography.java
View file @
0043e842
...
...
@@ -16,7 +16,7 @@ import org.vadere.state.scenario.Topography;
*
*/
public
class
ActionResetTopography
extends
TopographyAction
{
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
log
ycreator"
);
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
graph
ycreator"
);
private
static
final
long
serialVersionUID
=
-
5557013510457451231L
;
private
final
UndoableEditSupport
undoSupport
;
...
...
VadereGui/src/org/vadere/gui/topographycreator/control/ActionSaveTopography.java
View file @
0043e842
...
...
@@ -16,7 +16,7 @@ import org.vadere.gui.topographycreator.utils.TopographyJsonWriter;
*
*/
public
class
ActionSaveTopography
extends
TopographyAction
{
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
log
ycreator"
);
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
graph
ycreator"
);
private
static
final
long
serialVersionUID
=
-
4666995743959028627L
;
public
ActionSaveTopography
(
String
name
,
ImageIcon
icon
,
IDrawPanelModel
panelModel
)
{
...
...
VadereGui/src/org/vadere/gui/topographycreator/control/DrawDotMode.java
View file @
0043e842
...
...
@@ -16,7 +16,7 @@ import org.vadere.util.geometry.shapes.VCircle;
*
*/
public
class
DrawDotMode
extends
DefaultSelectionMode
{
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
log
ycreator"
);
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
graph
ycreator"
);
private
final
UndoableEditSupport
undoSupport
;
private
final
double
dotRadius
;
...
...
VadereGui/src/org/vadere/gui/topographycreator/control/EraserMode.java
View file @
0043e842
...
...
@@ -20,7 +20,7 @@ import org.vadere.state.scenario.ScenarioElement;
*
*/
public
class
EraserMode
extends
DefaultSelectionMode
{
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
log
ycreator"
);
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
graph
ycreator"
);
private
Cursor
cursor
;
private
final
UndoableEditSupport
undoSupport
;
...
...
VadereGui/src/org/vadere/gui/topographycreator/control/ZoomInMode.java
View file @
0043e842
...
...
@@ -17,7 +17,7 @@ import org.vadere.gui.topographycreator.model.IDrawPanelModel;
*
*/
public
class
ZoomInMode
extends
DefaultModeAdapter
{
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
log
ycreator"
);
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
graph
ycreator"
);
private
final
IDrawPanelModel
panelModel
;
private
Cursor
cursor
;
...
...
VadereGui/src/org/vadere/gui/topographycreator/control/ZoomOutMode.java
View file @
0043e842
...
...
@@ -17,7 +17,7 @@ import org.vadere.gui.topographycreator.model.IDrawPanelModel;
*
*/
public
class
ZoomOutMode
extends
DefaultModeAdapter
{
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
log
ycreator"
);
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
graph
ycreator"
);
private
Cursor
cursor
;
private
IDrawPanelModel
model
;
...
...
VadereGui/src/org/vadere/gui/topographycreator/view/TopographyWindow.java
View file @
0043e842
...
...
@@ -68,7 +68,7 @@ import com.jgoodies.forms.layout.CellConstraints;
import
com.jgoodies.forms.layout.FormLayout
;
public
class
TopographyWindow
extends
JPanel
{
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
log
ycreator"
);
private
static
Resources
resources
=
Resources
.
getInstance
(
"topo
graph
ycreator"
);
private
static
final
long
serialVersionUID
=
-
2472077480081283655L
;
private
IDrawPanelModel
panelModel
;
// private JScrollPane scrollpane;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment