jide

细数那些深度定制的PC版 安卓系统

笑着哭i 提交于 2020-08-18 11:51:28
凤凰系统 (分标准版 和 教育版) 凤凰系统是一套基于安卓平台深度研发的x86 PC操作系统,面向高端平板机、笔记本、台式机等大屏设备,号称融合了传统Windows系统的习惯体验,与上百万主流安卓应用。 同时发布了游戏机,游戏主机和电视盒子 官网地址 http://www.phoenixos.com/download_x86 当前可以下载的版本 ,支持 windows 和 Mac 系统 PhoenixOSInstaller-v3.6.1 (基于 Android7.1) PhoenixOSInstaller-v1.6.1 (基于 Android5.1) remix OS 系统 http://www.jide.com/ 官方已经不再维护和更新系统 remix 2.0 通用版系统下载地址: 点我获取下载地址 来源: oschina 链接: https://my.oschina.net/u/4304462/blog/4503540

记录下自己日常使用的软件

大憨熊 提交于 2020-08-11 10:30:03
Windows Everything 基于名称快速定位文件和文件夹 QuickLook 一款免费的轻量级快速预览工具。它能够在不运行关联程序的情况下,通过敲击空格键快速预览文件内容。 Quicker 一款高效专业的软件快速启动工具,功能强劲,操作简便,支持用户利用鼠标中键唤出软件启动面板,可以帮助用户为各种软件或系统工具建立快捷启动方式,让您使用电脑时更加方便、简单。 Listary Pro 一款工作中那些用来提高你的效率的神器,它可以为你 Windows 的「文件浏览对话框」、「资源管理器」等增加非常方便的文件快速定位、实时全盘搜索、常用文件夹收藏、打开历史、快速切换到已打开的路径、快捷右键菜单等一系列非常实用和高效的功能 FileLocator Pro 一款非常专业的搜索工具。不同于 Everything 和 Listary Pro 这类文件名快速索引工具, Filelocator Pro 不仅能搜索文件名,更擅长对指定文件和目录进行 全文搜索,并且支持 多种搜索表达式 以及 日期属性等 细节设定,快速准确定位您所需要的文档,提高搜索效率。 Winhttrack 一个把网站下载复制到本地的离线浏览器工具,winhttrack让你在没有网络的时候也可以浏览看过的网页,各种图文显示,非常方便,实用性很强。 Teleport Ultra 一款扒站的神器

How to show tree lines in second column in a TreeTable

蹲街弑〆低调 提交于 2020-01-15 07:21:35
问题 I am using TreeTable (com.jidesoft.grid, see TreeTable) to display hierarchical data, which uses a special cell renderer on the first column to paint +/- icon as well as tree line. So, a typical View appears as following: | Column1 | Column2 | ----------------------------- |+Item1 | Item4 | | -Item2 | Item5 | | item3 | item6 | While I want the following view for my TreeTable, with +/- buttons and tree lines in second column: | Column1 | Column2 | ----------------------------- |Item1 | +Item4

How to customise JIDE grids in Matlab

泪湿孤枕 提交于 2019-12-24 03:08:01
问题 I am using JIDE grids for loading huge data tables in a uitable format. My main reason for using JIDE grid was to have a working filtering and sorting ability. There are filter/sorters available out there which can be hooked with old uitable and are easier to configure but most sort lexically rather than numerically. I believe that is due to Matlab's underlying data class. So far, JIDEs inbuilt filtering is working well and uitable loads even faster than old version of uitable in Matlab when

Best Practice for Cell Editing (Single-Click or Double-Click) in Table in Swing

一笑奈何 提交于 2019-12-24 00:46:04
问题 I want to ask some questions regarding editing cell in a table. Currently my practices of doing cell editing in a table is by double-clicking the cell to make the cell editable for text input. For the single-clicking, it will select the row instead. It just like Excel behaviour of cell editing. What I see in some of JIDE demo , some of the table can be editable using single-click such as "EditableTableHeaderDemo" and some of it can be editable using double-clicking such as JideTableDemo. What

Override getColumnClass not working for Date Columns

拈花ヽ惹草 提交于 2019-12-12 02:53:24
问题 I am using JIDE grids Sorting and Autofiltering capability in Matlab. I have overridden the getColumnClass and filtering and sorting is working well for Integers, Double and String Columns (sorting numerically for numbers and lexically respectively for strings). However, I am facing a major issues with Date columns. I have overridden getColumn class and defined as Date.class. But I think I have to define the format in which the dates (as in raw data) are being passed to Filtering and Sorting

Looking for a feedback on JIDE [closed]

北慕城南 提交于 2019-12-03 13:55:11
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I'm about to start development of fairly large java based desktop application. After looking at JIDE components and frameworks, it

Looking for a feedback on JIDE [closed]

ぃ、小莉子 提交于 2019-12-03 03:13:17
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. I'm about to start development of fairly large java based desktop application. After looking at JIDE components and frameworks , it seems to be a good solution at a glance. I'd like to hear from those who used those products. How reliable are they? What's

Customizable Shortcuts in Java Application

被刻印的时光 ゝ 提交于 2019-11-26 23:07:39
I would like to include customizable keyboard shortcuts in my Java application (the user can change them). Since this is not very unusual request, I was wondering if there exists a library/project that could help me achieve my goal. Unfortunately I was not able to find anything useful on Google. Thank you, aZen Ended up building my own shortcut manager from scratch. This took around 20h. trashgod Shortcuts may be specified as accelerators in instances of Action . Less flexibly, shortcuts may be represented by KeyEvent instances obtained via KeyListener . Either may be stored in java.util

Customizable Shortcuts in Java Application

依然范特西╮ 提交于 2019-11-26 08:36:14
问题 I would like to include customizable keyboard shortcuts in my Java application (the user can change them). Since this is not very unusual request, I was wondering if there exists a library/project that could help me achieve my goal. Unfortunately I was not able to find anything useful on Google. Thank you, aZen Ended up building my own shortcut manager from scratch. This took around 20h. 回答1: Shortcuts may be specified as accelerators in instances of Action. Less flexibly, shortcuts may be