本文整理汇总了Java中org.jfree.ui.StrokeChooserPanel类的典型用法代码示例。如果您正苦于以下问题:Java StrokeChooserPanel类的具体用法?Java StrokeChooserPanel怎么用?Java StrokeChooserPanel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
StrokeChooserPanel类属于org.jfree.ui包,在下文中一共展示了StrokeChooserPanel类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: attemptModifyOutlineStroke
import org.jfree.ui.StrokeChooserPanel; //导入依赖的package包/类
/**
* Allows the user the opportunity to change the outline stroke.
*/
private void attemptModifyOutlineStroke() {
StrokeChooserPanel panel = new StrokeChooserPanel(
this.outlineStroke, this.availableStrokeSamples
);
int result = JOptionPane.showConfirmDialog(
this, panel, localizationResources.getString("Pen_Stroke_Selection"),
JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE
);
if (result == JOptionPane.OK_OPTION) {
this.outlineStroke.setStroke(panel.getSelectedStroke());
}
}
示例2: attemptGridStrokeSelection
import org.jfree.ui.StrokeChooserPanel; //导入依赖的package包/类
/**
* Handle a grid stroke selection.
*/
private void attemptGridStrokeSelection() {
StrokeChooserPanel panel = new StrokeChooserPanel(null, this.availableStrokeSamples);
int result =
JOptionPane.showConfirmDialog(this, panel,
localizationResources.getString("Stroke_Selection"),
JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
if (result == JOptionPane.OK_OPTION) {
this.gridStrokeSample.setStroke(panel.getSelectedStroke());
}
}
示例3: attemptOutlineStrokeSelection
import org.jfree.ui.StrokeChooserPanel; //导入依赖的package包/类
/**
* Allow the user to change the outline stroke.
*/
private void attemptOutlineStrokeSelection() {
StrokeChooserPanel panel = new StrokeChooserPanel(null, this.availableStrokeSamples);
int result = JOptionPane.showConfirmDialog(this, panel,
localizationResources.getString("Stroke_Selection"),
JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
if (result == JOptionPane.OK_OPTION) {
this.outlineStrokeSample.setStroke(panel.getSelectedStroke());
}
}
示例4: attemptGridStrokeSelection
import org.jfree.ui.StrokeChooserPanel; //导入依赖的package包/类
/**
* Handle a grid stroke selection.
*/
private void attemptGridStrokeSelection() {
StrokeChooserPanel panel = new StrokeChooserPanel(
null, this.availableStrokeSamples
);
int result = JOptionPane.showConfirmDialog(
this, panel, localizationResources.getString("Stroke_Selection"),
JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE
);
if (result == JOptionPane.OK_OPTION) {
this.gridStrokeSample.setStroke(panel.getSelectedStroke());
}
}
示例5: attemptOutlineStrokeSelection
import org.jfree.ui.StrokeChooserPanel; //导入依赖的package包/类
/**
* Allow the user to change the outline stroke.
*/
private void attemptOutlineStrokeSelection() {
StrokeChooserPanel panel
= new StrokeChooserPanel(null, this.availableStrokeSamples);
int result = JOptionPane.showConfirmDialog(this, panel,
localizationResources.getString("Stroke_Selection"),
JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
if (result == JOptionPane.OK_OPTION) {
this.outlineStrokeSample.setStroke(panel.getSelectedStroke());
}
}
示例6: attemptGridStrokeSelection
import org.jfree.ui.StrokeChooserPanel; //导入依赖的package包/类
/**
* Handle a grid stroke selection.
*/
protected void attemptGridStrokeSelection() {
StrokeChooserPanel panel = new StrokeChooserPanel(this.gridStrokeSample,
this.availableStrokeSamples);
int result = JOptionPane.showConfirmDialog(this, panel,
localizationResources.getString("Stroke_Selection"),
JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
if (result == JOptionPane.OK_OPTION) {
this.gridStrokeSample.setStroke(panel.getSelectedStroke());
}
}
示例7: attemptOutlineStrokeSelection
import org.jfree.ui.StrokeChooserPanel; //导入依赖的package包/类
/**
* Allow the user to change the outline stroke.
*/
private void attemptOutlineStrokeSelection() {
StrokeChooserPanel panel = new StrokeChooserPanel(
this.outlineStrokeSample, this.availableStrokeSamples);
int result = JOptionPane.showConfirmDialog(this, panel,
localizationResources.getString("Stroke_Selection"),
JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
if (result == JOptionPane.OK_OPTION) {
this.outlineStrokeSample.setStroke(panel.getSelectedStroke());
}
}
示例8: attemptOutlineStrokeSelection
import org.jfree.ui.StrokeChooserPanel; //导入依赖的package包/类
/**
* Allow the user to change the outline stroke.
*/
private void attemptOutlineStrokeSelection() {
StrokeChooserPanel panel
= new StrokeChooserPanel(null, this.availableStrokeSamples);
int result = JOptionPane.showConfirmDialog(this, panel,
localizationResources.getString("Stroke_Selection"),
JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
if (result == JOptionPane.OK_OPTION) {
this.outlineStrokeSample.setStroke(panel.getSelectedStroke());
}
}
示例9: attemptGridStrokeSelection
import org.jfree.ui.StrokeChooserPanel; //导入依赖的package包/类
/**
* Handle a grid stroke selection.
*/
private void attemptGridStrokeSelection() {
StrokeChooserPanel panel = new StrokeChooserPanel(this.gridStrokeSample,
this.availableStrokeSamples);
int result = JOptionPane.showConfirmDialog(this, panel,
localizationResources.getString("Stroke_Selection"),
JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
if (result == JOptionPane.OK_OPTION) {
this.gridStrokeSample.setStroke(panel.getSelectedStroke());
}
}