/*
* iReport - Visual Designer for JasperReports.
* Copyright (C) 2002 - 2009 Jaspersoft Corporation. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of iReport.
*
* iReport is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* iReport is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with iReport. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* HighlightingPanel.java
*
* Created on 31-ago-2010, 17.33.44
*/
package com.jaspersoft.ireport.jasperserver.ui.nodes.dnd;
import com.jaspersoft.ireport.jasperserver.ui.RepositoryListCellRenderer;
import com.jaspersoft.jasperserver.api.metadata.xml.domain.impl.ResourceDescriptor;
import java.awt.Color;
import java.awt.Component;
import java.awt.GradientPaint;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Insets;
import java.awt.Paint;
import java.awt.Point;
import java.awt.RenderingHints;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JComponent;
import javax.swing.border.EmptyBorder;
/**
*
* @author gtoffoli
*/
public class HighlightingPanel extends javax.swing.JPanel {
public static final int TYPE_COPY_REPLACE = 0;
public static final int TYPE_DONT_COPY = 1;
public static final int TYPE_COPY = 2;
public static final int MODE_COPY = 1;
public static final int MODE_MOVE = 2;
boolean pressed = false;
boolean over = false;
private int mode = MODE_COPY;
Color originalBG = null;
private List<ActionListener> listeners = new ArrayList<ActionListener>();
/** Creates new form HighlightingPanel */
public HighlightingPanel() {
initComponents();
this.originalBG = this.getBackground();
EmptyBorder border = new EmptyBorder(0,0,4,4);
setBorder(border);
}
public void setResource(ResourceDescriptor rd, int buttonType, String newName)
{
if (rd != null)
{
jLabelNameCR.setText("<html><b>" + rd.getLabel() );
jLabelUriCR.setText( rd.getUriString() );
jLabelIconCR.setIcon(RepositoryListCellRenderer.getResourceIcon(rd));
}
switch (buttonType)
{
case TYPE_COPY_REPLACE:
{
if (mode == MODE_COPY)
{
jLabelTitle.setText("<html><font size=\"4\">Copy and Replace");
}
else
{
jLabelTitle.setText("<html><font size=\"4\">Move and Replace");
}
jLabelDescription.setText("Replace the resource in the destination folder with the resource you are copying:");
break;
}
case TYPE_DONT_COPY:
{
if (mode == MODE_COPY)
{
jLabelTitle.setText("<html><font size=\"4\">Don't copy");
}
else
{
jLabelTitle.setText("<html><font size=\"4\">Don't move");
}
jLabelDescription.setText("No resources will be changed. Leave this resource in the destination folder:");
break;
}
case TYPE_COPY:
{
if (mode == MODE_COPY)
{
jLabelTitle.setText("<html><font size=\"4\">Copy, but keep both resources");
jLabelDescription.setText( (new MessageFormat("The resource you are copying will be renamed \"{0}\"")).format(new Object[]{newName}) );
}
else
{
jLabelTitle.setText("<html><font size=\"4\">Move, but keep both resources");
jLabelDescription.setText( (new MessageFormat("The resource you are moving will be renamed \"{0}\"")).format(new Object[]{newName}) );
}
jLabelIconCR.setVisible(false);
jLabelNameCR.setVisible(false);
jLabelUriCR.setVisible(false);
break;
}
}
}
public void bindActions()
{
for (int i=0; i<getComponentCount(); ++i)
{
Component c = getComponent(i);
if (c instanceof JComponent)
{
c.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
formMouseClicked(e);
}
});
}
}
}
public void addActionListener(ActionListener listener)
{
if (!listeners.contains(listener)) listeners.add(listener);
}
public void removeActionListener(ActionListener listener)
{
listeners.remove(listener);
}
private void fireAction()
{
for (ActionListener listener : listeners)
{
ActionEvent event = new ActionEvent(this, 0, "");
listener.actionPerformed(event);
}
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jLabelIconCR = new javax.swing.JLabel();
jLabelUriCR = new javax.swing.JLabel();
jLabelNameCR = new javax.swing.JLabel();
jLabelDescription = new javax.swing.JLabel();
jLabelTitle = new javax.swing.JLabel();
jLabel1CR = new javax.swing.JLabel();
setBackground(new java.awt.Color(255, 255, 255));
addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
formMouseClicked(evt);
}
public void mouseEntered(java.awt.event.MouseEvent evt) {
formMouseEntered(evt);
}
public void mouseExited(java.awt.event.MouseEvent evt) {
formMouseExited(evt);
}
public void mousePressed(java.awt.event.MouseEvent evt) {
formMousePressed(evt);
}
public void mouseReleased(java.awt.event.MouseEvent evt) {
formMouseReleased(evt);
}
});
jLabelIconCR.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabelIconCR.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/jaspersoft/ireport/jasperserver/res/unknow.png"))); // NOI18N
jLabelIconCR.setText(org.openide.util.NbBundle.getMessage(HighlightingPanel.class, "HighlightingPanel.jLabelIconCR.text")); // NOI18N
jLabelIconCR.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(207, 206, 206), 1, true));
jLabelUriCR.setText(org.openide.util.NbBundle.getMessage(HighlightingPanel.class, "HighlightingPanel.jLabelUriCR.text")); // NOI18N
jLabelNameCR.setText(org.openide.util.NbBundle.getMessage(HighlightingPanel.class, "HighlightingPanel.jLabelNameCR.text")); // NOI18N
jLabelDescription.setText(org.openide.util.NbBundle.getMessage(HighlightingPanel.class, "HighlightingPanel.jLabelDescription.text")); // NOI18N
jLabelTitle.setForeground(new java.awt.Color(0, 0, 153));
jLabelTitle.setText(org.openide.util.NbBundle.getMessage(HighlightingPanel.class, "HighlightingPanel.jLabelTitle.text")); // NOI18N
jLabel1CR.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/jaspersoft/ireport/jasperserver/ui/nodes/dnd/arrow_right.png"))); // NOI18N
jLabel1CR.setText(org.openide.util.NbBundle.getMessage(HighlightingPanel.class, "HighlightingPanel.jLabel1CR.text")); // NOI18N
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.addContainerGap()
.add(jLabel1CR)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.add(jLabelIconCR, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 54, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.UNRELATED)
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jLabelNameCR, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(jLabelUriCR, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(278, 278, 278))
.add(jLabelDescription)
.add(layout.createSequentialGroup()
.add(jLabelTitle, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 188, Short.MAX_VALUE)
.add(212, 212, 212)))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.addContainerGap()
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jLabel1CR)
.add(jLabelTitle, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(jLabelDescription)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.UNRELATED)
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING, false)
.add(layout.createSequentialGroup()
.add(jLabelNameCR, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(jLabelUriCR, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(jLabelIconCR, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
}// </editor-fold>//GEN-END:initComponents
private void formMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_formMouseClicked
fireAction();
}//GEN-LAST:event_formMouseClicked
private void formMouseEntered(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_formMouseEntered
//this.setBackground(Color.red);
over=true;
repaint();
}//GEN-LAST:event_formMouseEntered
private void formMouseExited(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_formMouseExited
//this.setBackground(originalBG);
over=false;
repaint();
}//GEN-LAST:event_formMouseExited
private void formMousePressed(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_formMousePressed
EmptyBorder border = new EmptyBorder(4,4,0,0);
setBorder(border);
pressed = true;
repaint();
}//GEN-LAST:event_formMousePressed
private void formMouseReleased(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_formMouseReleased
EmptyBorder border = new EmptyBorder(0,0,4,4);
setBorder(border);
pressed = false;
repaint();
}//GEN-LAST:event_formMouseReleased
@Override
public void paintComponent(Graphics g)
{
super.paintComponent(g);
if (!over && !pressed) return;
RenderingHints ri = ((Graphics2D)g).getRenderingHints();
Paint p = ((Graphics2D)g).getPaint();
((Graphics2D)g).setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
Insets insets = new Insets(0,0,0,0);
if (getBorder() != null)
{
insets = getBorder().getBorderInsets(this);
}
GradientPaint gradient = new GradientPaint(new Point(insets.left,insets.top), new Color(255,255,255,0),
new Point(insets.left,getSize().height-insets.top - insets.bottom),
(pressed) ? new Color(171,217,217) : new Color(191,224,224));
((Graphics2D)g).setPaint(gradient);
((Graphics2D)g).fillRoundRect(insets.left, insets.top, getSize().width - insets.left - insets.right-1,
getSize().height - insets.top - insets.bottom-1, 20,20);
((Graphics2D)g).setPaint(new Color(117,198,217));
((Graphics2D)g).drawRoundRect(insets.left, insets.top, getSize().width - insets.left - insets.right-1,
getSize().height - insets.top - insets.bottom-1, 20,20);
((Graphics2D)g).setRenderingHints(ri);
((Graphics2D)g).setPaint(p);
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JLabel jLabel1CR;
private javax.swing.JLabel jLabelDescription;
private javax.swing.JLabel jLabelIconCR;
private javax.swing.JLabel jLabelNameCR;
private javax.swing.JLabel jLabelTitle;
private javax.swing.JLabel jLabelUriCR;
// End of variables declaration//GEN-END:variables
/**
* @return the type
*/
public int getMode() {
return mode;
}
/**
* @param type the type to set
*/
public void setMode(int mode) {
this.mode = mode;
}
}
相关推荐
【作品名称】:基于servlet+jsp+mysql实现的影视管理系统【课程设计】 【适用人群】:适用于希望学习不同技术领域的小白或进阶学习者。可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【项目介绍】: 基于servlet+jsp+mysql实现的影视管理系统【课程设计】 基于servlet+jsp+mysql实现的影视管理系统【课程设计】 Java Web课程设计,基于servlet+jsp+ajax+mysql做的影视管理系统 运行环境: Tomcat 9.0 JDK 1.8 MySQL 8.0 后台管理账号密码均为:root,项目依赖:lib 目录 【资源声明】:本资源作为“参考资料”而不是“定制需求”,代码只能作为参考,不能完全复制照搬。需要有一定的基础看懂代码,自行调试代码并解决报错,能自行添加功能修改代码。
kernel-5.15-ky10-x86.tar.gz
【作品名称】:基于AT89C51 单片机为核心器件,程序设计采用C 语言,Keil 软件编译程序,配以相关外围接口电路,实现了方波、锯齿波、正弦波、三角波、梯形波五种特定波形的产生【论文+源码】 【适用人群】:适用于希望学习不同技术领域的小白或进阶学习者。可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【项目介绍】:本设计中的波形发生器系统要求基于51单片机,因此选用以AT89C51单片机作为整个系统的控制核心,应用其强大的接口功能,构成整个波形发生器的硬件系统。使用C 语言对单片机编程可产生相应的正弦波,方波,三角波,锯齿波梯形波波形信号。在程序运行时,当接收到按键信息后,需要输出某种波形时,调用相应的中断服务子程序和波形发生程序,经电路的数/模转换器和运算放大器处理后,从信号发生器的输出端口输出即可得到要求的波形。 当需要改变频率时只需要改变单片机的波形发生程序中的递增或者递减变量即可。 【资源声明】:本资源作为“参考资料”而不是“定制需求”,代码只能作为参考,不能完全复制照搬。需要有一定的基础看懂代码,自行调试代码并解决报错,能自行添加功能修改代码。
基于java的法律咨询系统设计与实现.docx
适用于元营销 API 的 Python SDK适用于 Python 的 Facebook Business SDK 介绍Facebook Business SDK是一站式服务,可帮助我们的合作伙伴更好地服务于他们的业务。合作伙伴正在使用多个 Facebook API 来满足其客户的需求。采用所有这些 API 并在各个平台上保持最新状态可能非常耗时,而且最终会造成高昂的成本。为此,Facebook 开发了 Business SDK,将其许多 API 捆绑到一个 SDK 中,以简化实施和维护。Business SDK 是 Marketing API SDK 的升级版,其中包括 Marketing API 以及来自不同平台(如 Pages、Business Manager、Instagram 等)的许多 Facebook API。快速入门商业SDK入门指南Python 目前是我们第三方开发人员最常用的语言。是一个 Python 包,它提供了您的 Python 应用程序与Business SDK 内的 Facebook APIfacebook_business之间的
数学建模培训资料 数学建模实战题目真题答案解析解题过程&论文报告 公交车调度的运作数学模型 共12页.pdf
smart-http 是一款可编程的 Http 应用微内核,方便用户根据自身需求进行 Server 或 Client 的应用开发。支持GET、POST的 HTTP 请求。提供了 URL 路由组件,可以快速搭建一套静态服务器。支持部分 RFC2612 规范,后续会逐渐完善。支持 Https 协议,由 smart-socket 为其赋能。具备文件上传的能力。支持 websocket、Cookie支持 Server、Client 开发
新闻资讯系统 微信小程序+SpringBoot毕业设计 源码+数据库+论文+启动教程 项目启动教程:https://www.bilibili.com/video/BV1oiBpYcEBp
高校师生工作室-JAVA-基于微信小程序的高校师生工作室管理系统的设计与实现
基于java的常见小儿疾病中医护理系统设计与实现.docx
本教程播放列表涵盖了 Python 中的数据结构和算法。每个教程都有数据结构或算法背后的理论、BIG O 复杂性分析和可供练习的练习。使用 Python 的数据结构和算法本教程涵盖了 Python 中的数据结构和算法。每个教程都包含数据结构或算法背后的理论、BIG O 复杂度分析以及可供练习的练习。要观看视频,您可以访问播放列表https://www.youtube.com/playlist?list=PLeo1K3hjS3uu_n_a__MI_KktGTLYopZ12订阅 codebasics youtube 频道https://www.youtube.com/c/codebasics
数学建模学习资料 蒙特卡罗方法课件教程 第2章.随机数 共29页.pptx
python实现基于CNN网络的新闻数据集文本分类源码+数据集(Python期末大作业),个人大三学期的期末大作业、经导师指导并认可通过的高分大作业设计项目,评审分98分。主要针对计算机相关专业的正在做大作业的学生和需要项目实战练习的学习者,可作为课程设计、期末大作业。 python实现基于CNN网络的新闻数据集文本分类源码+数据集(Python期末大作业)python实现基于CNN网络的新闻数据集文本分类源码+数据集(Python期末大作业),个人大三学期的期末大作业、经导师指导并认可通过的高分大作业设计项目,评审分98分。主要针对计算机相关专业的正在做大作业的学生和需要项目实战练习的学习者,可作为课程设计、期末大作业。python实现基于CNN网络的新闻数据集文本分类源码+数据集(Python期末大作业),个人大三学期的期末大作业、经导师指导并认可通过的高分大作业设计项目,评审分98分。主要针对计算机相关专业的正在做大作业的学生和需要项目实战练习的学习者,可作为课程设计、期末大作业。python实现基于CNN网络的新闻数据集文本分类源码+数据集(Python期末大作业),个人大
中小学知识产权教育试点学校申报表.doc
基于django的音乐推荐系统.zip
在建工程涉及专项行动情况检查表.docx
本项目是一个基于Python技术的学生管理系统,采用Django框架进行开发,旨在为计算机相关专业的学生提供一个实践性强、功能全面的管理系统,以帮助他们完成毕业设计或进行项目实战练习。 系统实现了对学生信息、课程信息、成绩、考勤等多方面的管理功能。学生信息管理包括学生基本信息的增删改查;课程信息管理允许管理员设置课程信息,包括课程名称、授课老师、学分等;成绩管理功能使学生和教师能够录入、查看和修改成绩;考勤管理则方便教师记录学生的出勤情况。 该项目采用B/S架构,前端使用HTML、CSS、JavaScript等技术,后端使用Python语言和Django框架,数据库采用MySQL。Django框架提供了强大的后台管理功能,使得系统管理更加便捷。 通过开发这个项目,学生不仅能提升自己的编程能力,还能学习到如何构建一个实际应用的系统,对于即将步入职场的学生来说,具有很高的实用价值。
适用于 Python 的 Splunk 软件开发工具包参考文档适用于 Python 的 Splunk Enterprise 软件开发工具包版本 2.1.0适用于 Python 的 Splunk Enterprise 软件开发套件 (SDK) 包含库代码,旨在使开发人员能够使用 Splunk 平台构建应用程序。Splunk 平台是一个搜索引擎和分析环境,它使用分布式 map-reduce 架构来有效地索引、搜索和处理大型时变数据集。Splunk 平台深受系统管理员的欢迎,用于聚合和监控 IT 机器数据、安全性、合规性以及各种其他场景,这些场景都需要有效地从大量时间序列数据中索引、搜索、分析和生成实时通知。Splunk 开发者平台使开发人员能够利用 Splunk 平台所使用的相同技术来构建令人兴奋的新应用程序。开始使用 Python 版 Splunk SDK开始使用 Python 版 Splunk Enterprise SDKSplunk Enterprise SDK for Python 包含库代码,其示例位于splunk-app-examples存储库
分布式事务练习
家庭财务管理系统 微信小程序+SSM毕业设计 源码+数据库+论文+启动教程 项目启动教程:https://www.bilibili.com/video/BV1BfB2YYEnS