OSDN Git Service
(root)
/
coroid
/
inqubus.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
コンパイルエラー解消
[coroid/inqubus.git]
/
frontend
/
src
/
yukihane
/
inqubus
/
gui
/
MainFrame.java
diff --git
a/frontend/src/yukihane/inqubus/gui/MainFrame.java
b/frontend/src/yukihane/inqubus/gui/MainFrame.java
index
eed7037
..
bbca4ad
100644
(file)
--- a/
frontend/src/yukihane/inqubus/gui/MainFrame.java
+++ b/
frontend/src/yukihane/inqubus/gui/MainFrame.java
@@
-310,11
+310,11
@@
private void useMovieLocalCheckBoxItemStateChanged(java.awt.event.ItemEvent evt)
if (source == useMovieLocalCheckBox) {
btn = movieFileSelectButton;
field = movieFileField;
if (source == useMovieLocalCheckBox) {
btn = movieFileSelectButton;
field = movieFileField;
- dir = p.get
MovieDirectory
();
+ dir = p.get
VideoDir
();
} else {
btn = commentFileSelectButton;
field = commentFileField;
} else {
btn = commentFileSelectButton;
field = commentFileField;
- dir = p.getCommentDir
ectory
();
+ dir = p.getCommentDir();
}
final boolean useLocal = (evt.getStateChange() == ItemEvent.SELECTED);
}
final boolean useLocal = (evt.getStateChange() == ItemEvent.SELECTED);
@@
-329,7
+329,7
@@
private void useMovieLocalCheckBoxItemStateChanged(java.awt.event.ItemEvent evt)
text = "";
}
} else {
text = "";
}
} else {
- text = p.getFileNamePattern();
+ text = p.get
Video
FileNamePattern();
}
field.setText(text);
}//GEN-LAST:event_useMovieLocalCheckBoxItemStateChanged
}
field.setText(text);
}//GEN-LAST:event_useMovieLocalCheckBoxItemStateChanged
@@
-347,7
+347,7
@@
private void idFieldFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_
}
if (useMovieLocalCheckBox.isSelected() && movieFileField.getText().isEmpty()) {
}
if (useMovieLocalCheckBox.isSelected() && movieFileField.getText().isEmpty()) {
- final File dir = p.get
MovieDirectory
();
+ final File dir = p.get
VideoDir
();
final File file = searchFileMatchId(dir, id);
if (file != null) {
movieFileField.setText(file.getPath());
final File file = searchFileMatchId(dir, id);
if (file != null) {
movieFileField.setText(file.getPath());
@@
-355,7
+355,7
@@
private void idFieldFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_
}
if (useCommentLocalCheckBox.isSelected() && commentFileField.getText().isEmpty()) {
}
if (useCommentLocalCheckBox.isSelected() && commentFileField.getText().isEmpty()) {
- final File dir = p.getCommentDir
ectory
();
+ final File dir = p.getCommentDir();
final File file = searchFileMatchId(dir, id);
if (file != null) {
commentFileField.setText(file.getPath());
final File file = searchFileMatchId(dir, id);
if (file != null) {
commentFileField.setText(file.getPath());
@@
-421,24
+421,24
@@
private void idFieldFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_
final Properties p = Properties.INSTANCE;
final Properties p = Properties.INSTANCE;
- final boolean movieLocal = p.get
UseMovieFil
eLocal();
+ final boolean movieLocal = p.get
VideoUs
eLocal();
useMovieLocalCheckBox.setSelected(movieLocal);
movieFileSelectButton.setEnabled(movieLocal);
if (!movieLocal) {
useMovieLocalCheckBox.setSelected(movieLocal);
movieFileSelectButton.setEnabled(movieLocal);
if (!movieLocal) {
- movieFileField.setText(p.getFileNamePattern());
+ movieFileField.setText(p.get
Video
FileNamePattern());
}
}
- final boolean commentLocal = p.getComment
Fil
eLocal();
+ final boolean commentLocal = p.getComment
Us
eLocal();
useCommentLocalCheckBox.setSelected(commentLocal);
commentFileSelectButton.setEnabled(commentLocal);
if (!commentLocal) {
useCommentLocalCheckBox.setSelected(commentLocal);
commentFileSelectButton.setEnabled(commentLocal);
if (!commentLocal) {
- commentFileField.setText(p.getFileNamePattern());
+ commentFileField.setText(p.get
Comment
FileNamePattern());
}
}
- final boolean convert = p.getOutput
Convert
();
+ final boolean convert = p.getOutput
Enable
();
outputConvertCheckBox.setSelected(convert);
outputFileField.setEnabled(convert);
outputConvertCheckBox.setSelected(convert);
outputFileField.setEnabled(convert);
- outputFileField.setText(p.getFileNamePattern());
+ outputFileField.setText(p.get
Output
FileNamePattern());
}
}