CeH9
Software engineer
- 活动总数 121
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 16
- 订阅数 31
-
创建于 AppCode add PsiDir issue
I create dir with files via PsiDirectory.createSubdirectory(..), it works fine in Idea. But same code in AppCode works wrong: Folder not visible in ProjectView "project" mode. AFAIK AppCode doesn't... -
已编辑于 Messages YesNoDialog devide command
已回答Dialog devide command, so user must use 2+ Undo action to revert. Can i avoid this? -
创建于 PsiDirectory.copyFileFrom -> Redo recreate file without content
已回答I use PsiDirectory.copyFileFrom to copy file. It works fine. Undo works fine too, but redo create empty file. Version: CE 163.12024 -
已编辑于 Revert\Undo failed Command
已回答I have undoable command that may be reverted by Ctrl-Z. When i execute command and catch some error i need to revert all my changes. Can i do it programmatically? -
已编辑于 Temp storage for files
已回答Where\how to store temp files? For example user can replace some FileTemplate, this action must be undoable. Is it ok to keep content of file as String field in undo action? -
创建于 Dialog shortcuts: RootPane vs Child(TextField)
已回答Why root's shortcut override same shortcut of his child (TextField) when the last one is focused. protected JComponent createCenterPanel() {... initShortcuts();...} Undo for TextField doesn't ... -
已编辑于 Stop dialog's doValidate alarm
已回答In my dialog user have few way to do .. someAction. Each way can be switched by RadioButtons and have it's own validation logic. I want to reset validation alarm, when user select radioButton, but ... -
已编辑于 Undo into dialog
How to use Undoable actions in dialogs? Ctr+z doesn't work until dialog opened, but my UndoableActions must work into dialog only (local history). -
创建于 Undo programmatically
Can i undo few CommandProcessor's command in one action? Can i group several actions in transaction? Otherwise user should use Ctrl+Z multiple times and it looks ugly. P.S.I know count of actions, ... -
创建于 Launch Scene without launching IDE
I must launch IDE a lot of times while testing my custom UI. Is exists some way to launch lightweight scene like in pure swing?