- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个我想看到的示例,而不是属性编辑器中的所有大写字母,我只想看到第一个。
package Components;
import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;
import java.beans.SimpleBeanInfo;
public class ChartBean2BeanInfo extends SimpleBeanInfo {
public ChartBean2BeanInfo() {
try {
PropertyDescriptor titlePositionDescriptor = new PropertyDescriptor("titlePosition", ChartBean2.class);
titlePositionDescriptor.setPropertyEditorClass(TitlePositionEditor.class);
propertyDescriptors = new PropertyDescriptor[]{new PropertyDescriptor("title", ChartBean2.class),
titlePositionDescriptor, new PropertyDescriptor("graphColor", ChartBean2.class)};
} catch (IntrospectionException e) {
e.printStackTrace();
}
}
public PropertyDescriptor[] getPropertyDescriptors() {
System.out.println(propertyDescriptors);
return propertyDescriptors;
}
PropertyDescriptor[] propertyDescriptors;
}
它执行第 10 行,但忽略第 11 行并连接其标准属性编辑器,如果根本没有,则不显示该属性。
package Components;
import javax.swing.*;
import java.beans.PropertyEditorSupport;
import java.util.Arrays;
public class TitlePositionEditor extends PropertyEditorSupport {
public String[] getTags() {
return tags;
}
public TitlePositionEditor() {
super();
new JFrame().setVisible(true);
}
public String getJavaInitializationString() {
return ChartBean2.Position.class.getName().replace('$', '.') + "." + getValue();
}
public String getAsText() {
int index = ((ChartBean2.Position) getValue()).ordinal();
return tags[index];
}
public void setAsText(String s) {
int index = Arrays.asList(tags).indexOf(s);
if (index >= 0) setValue(ChartBean2.Position.values()[index]);
}
private String[] tags = {"L", "C", "R"};
}
package Components;
import java.awt.*;
import java.awt.font.*;
import java.awt.geom.*;
import javax.swing.*;
/**
* A bean to draw a bar chart.
* @version 1.31 2007-10-03
* @author Cay Horstmann
*/
public class ChartBean2 extends JComponent
{
public ChartBean2()
{
setPreferredSize(new Dimension(XPREFSIZE, YPREFSIZE));
}
public void paintComponent(Graphics g)
{
Graphics2D g2 = (Graphics2D) g;
if (values == null || values.length == 0) return;
double minValue = 0;
double maxValue = 0;
for (int i = 0; i < values.length; i++)
{
if (minValue > getValues(i)) minValue = getValues(i);
if (maxValue < getValues(i)) maxValue = getValues(i);
}
if (maxValue == minValue) return;
Rectangle2D bounds = getBounds();
double clientWidth = bounds.getWidth();
double clientHeight = bounds.getHeight();
double barWidth = (clientWidth - 2 * INSETS) / values.length;
g2.setPaint(inverse ? color : Color.white);
g2.fill(new Rectangle2D.Double(0, 0, clientWidth, clientHeight));
g2.setPaint(Color.black);
Font titleFont = new Font("SansSerif", Font.BOLD, 20);
FontRenderContext context = g2.getFontRenderContext();
Rectangle2D titleBounds = titleFont.getStringBounds(title, context);
double titleWidth = titleBounds.getWidth();
double y = -titleBounds.getY();
double x = 0;
if (titlePosition == Position.CENTER) x += (clientWidth - titleWidth) / 2;
else if (titlePosition == Position.RIGHT) x += clientWidth - titleWidth;
g2.setFont(titleFont);
g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING,
RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
g2.drawString(title, (float) x, (float) y);
double top = titleBounds.getHeight();
double scale = (clientHeight - top - 2 * INSETS) / (maxValue - minValue);
y = clientHeight;
for (int i = 0; i < values.length; i++)
{
double x1 = INSETS + i * barWidth + 1;
double y1 = INSETS + top;
double value = getValues(i);
double height = value * scale;
if (value >= 0) y1 += (maxValue - value) * scale;
else
{
y1 += (int) (maxValue * scale);
height = -height;
}
g2.setPaint(inverse ? Color.white : color);
Rectangle2D bar = new Rectangle2D.Double(x1, y1, barWidth - 2, height);
g2.fill(bar);
g2.setPaint(Color.black);
g2.draw(bar);
}
}
/**
* Sets the title property.
* @param t the new chart title.
*/
public void setTitle(String t)
{
title = t;
}
/**
* Gets the title property.
* @return the chart title.
*/
public String getTitle()
{
return title;
}
/**
* Sets the indexed values property.
* @param v the values to display in the chart.
*/
public void setValues(double[] v)
{
values = v;
}
/**
* Gets the indexed values property.
* @return the values to display in the chart.
*/
public double[] getValues()
{
return values;
}
/**
* Sets the indexed values property.
* @param i the index of the value to set
* @param value the new value for that index
*/
public void setValues(int i, double value)
{
if (0 <= i && i < values.length) values[i] = value;
}
/**
* Gets the indexed values property.
* @param i the index of the value to get
* @return the value for that index
*/
public double getValues(int i)
{
if (0 <= i && i < values.length) return values[i];
return 0;
}
/**
* Sets the inverse property.
* @param b true if the display is inverted (white bars on colored background)
*/
public void setInverse(boolean b)
{
inverse = b;
}
/**
* Gets the inverse property.
* @return true if the display is inverted
*/
public boolean isInverse()
{
return inverse;
}
/**
* Sets the titlePosition property.
* @param p LEFT, CENTER, or RIGHT
*/
public void setTitlePosition(Position p)
{
titlePosition = p;
}
/**
* Gets the titlePosition property.
* @return LEFT, CENTER, or RIGHT
*/
public Position getTitlePosition()
{
return titlePosition;
}
/**
* Sets the graphColor property.
* @param c the color to use for the graph
*/
public void setGraphColor(Color c)
{
color = c;
}
public Color getGraphColor()
{
return color;
}
public enum Position { LEFT, CENTER, RIGHT };
private static final int XPREFSIZE = 300;
private static final int YPREFSIZE = 300;
private static final int INSETS = 10;
private double[] values = { 1, 2, 3 };
private String title = "Title";
private Position titlePosition = Position.CENTER;
private boolean inverse;
private Color color = Color.red;
}
最佳答案
GUI 设计器不支持自定义属性。请投票支持此请求 http://youtrack.jetbrains.com/issue/IDEABKL-5866 .
关于java - 如何在IntelliJ IDEA GUI Designer中添加自己的属性编辑器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17528958/
我想像 wordpress 的 css 管理器一样为我的网站制作 css 管理器。我想在 textarea 中打开 css 文件,这样我就可以编辑它,而不是在按下提交按钮后,应该保存 css 文件中的
我不知道这是一个有效的问题。我见过大多数插件和对话框定义的 CKEditor 示例都使用变量“editor”。我想知道它是什么以及它的值来自哪里。 例如 CKEDITOR.plugins.add( '
前言 今天大姚给大家分享一个基于 Roslyn 和 AvalonEdit 开源、轻量、跨平台的 C# 编辑器:RoslynPad。 Roslyn介绍 Roslyn是一个强大的.NET编译器实现,
如果你希望极认真地学习和使用 XML,那么一定想要找一款称手的 XML 编辑器 XML 是基于文本的 XML是基于文本的标记语言 XML可被类似记事本这样的简单的文本编辑器来创建和编辑 不过在
有没有人成功地将 Summernote 编辑器与 Meteor 一起使用? 见 http://hackerwins.github.io/summernote/ 我在我的模板中包含了以下 div:
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
如何使文本默认从右向左对齐(p:editor)。 当前使用 primefaces 3.0.M2-SNAPSHOT。现在无法更新到新版本吗? 这是阿拉伯语版本应用程序所必需的。 谢谢 最佳答案 在 we
如何启动或安装 Eclipse XSD 编辑器? 根据this看来它应该开箱即用。我创建了 XMLExamples 项目,当我打开 Catalogue.xsd 时,Eclipse 将其视为文本文件。如
我爱wysihtml5但我找不到任何关于向元素添加类这样简单的文档。 基本上我正在寻找的是一种允许 blockquote 元素有 2 种不同变体的方法: blockquote.pull-leftblo
我真的很想要一个在 Django 中实现文本编辑器的清晰直接的示例,就像提议的 pagedown 或 markdownx 一样。我无法在 Django 2.0 中使用这些解决方案中的任何一个,并且我找
是否有支持 REPL 和大括号匹配的 ClojureCLR 编辑器?我找到了一个将对 ClojureCLR 的支持添加到 Visual Studio 的项目:vsClojure ,但无法构建它。还有其
GWT 的编辑器框架非常好用,它不仅可以用于编辑POJO,还可以用于只读显示。 但是,我并不完全确定进行内联编辑的最佳做法是什么。 假设我有一个 PersonProxy 并且我有一对 Presente
我对 primefaces 编辑器的第一个问题是它不接受来自 Chrome 和资源管理器中的 MS word 文档的文本,但在 Firefox 中工作正常。有没有办法让它直接接受来自 MS word
我使用 Prototype JS 作为主要 JS 库,并且我已将最后一个 RedactorJS 与 jQuery 以无冲突模式集成,但我无法启动如下功能: jQuery('#redactor').re
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 5年前关闭。 Improve thi
我正在 Laravel 项目上使用 redactor 作为文本编辑器。 每当编辑器位于页面上并初始化时,每当我单击任意位置时都会收到此错误。 Uncaught TypeError: $(...).cl
我在带有 jQuery .show("slide") 动画的界面设计中使用tinyMCE 时遇到问题。由于表单的复杂性,它像向导一样被分为多个页面,但它不使用下一步和后退按钮。相反,它使用部分名称
如何制作像 wufoo.com 表单编辑器中那样的拖放式编辑器 最佳答案 通常客户端应用程序是使用某种客户端框架构建的。比较流行的是(排名不分先后): GWT YUI jQuery 首先检查这些内容,
已关闭。此问题旨在寻求有关书籍、工具、软件库等的建议。不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以
有人建议我使用具有语法错误检查和调试功能的 Javascript 编辑器吗? Eclipse IDE 有可用的插件吗?或者您可以建议最适合错误检查和调试的任何编辑器。 提前致谢。 最佳答案 您可以安装
我是一名优秀的程序员,十分优秀!