You are here: PSPad forum > Developer forum - new builds > PSPad unicode 4.5.4 (2335) English
Goto Page: Previous1 2 3 4 5 6 7 Next
Posted by: ardorleo | Date: 2008-12-17 03:52 | IP: IP Logged
I find a problem in "code explorer window".
when I edit java'code,it's display is wrong if the java class has a inner class.for example:
public abstract class SwingWorker {
private Object value;
private Thread thread;
//next line is a inner class
private static class ThreadVar {
private Thread thread;
ThreadVar(Thread t) { thread = t; }
synchronized Thread get() { return thread; }
synchronized void clear() { thread = null; }
}
//next line context belongs to SwingWorker, not belongs to ThreadVar
private ThreadVar threadVar;
protected synchronized Object getValue() {
return value;
}
private synchronized void setValue(Object x) {
value = x;
}
public abstract Object construct();
public void finished() {}
public void interrupt() {
Thread t = threadVar.get();
if (t != null) {
t.interrupt();
}
threadVar.clear();
}
public Object get() {
while (true) {
Thread t = threadVar.get();
if (t == null) {
return getValue();
}
try {
t.join();
}
catch (InterruptedException e) {
Thread.currentThread().interrupt(); // propagate
return null;
}
}
}
public SwingWorker() {
final Runnable doFinished = new Runnable() {
public void run() { finished(); }
};
Runnable doConstruct = new Runnable() {
public void run() {
try {
setValue(construct());
}
finally {
threadVar.clear();
}
SwingUtilities.invokeLater(doFinished);
}
};
Thread t = new Thread(doConstruct);
threadVar = new ThreadVar(t);
}
public void start() {
Thread t = threadVar.get();
if (t != null) {
t.start();
}
}
}
Posted by: LucyFan | Date: 2008-12-19 14:58 | IP: IP Logged
Small point the New File prompt says Novy in the English version?
Sorry if this has been mentioned before
Posted by: zwayne | Date: 2008-12-19 17:29 | IP: IP Logged
Still problems here with word wrap as well. It is puzzling why the author of this otherwise superlative editor is strangely silent regarding the frequent word wrap crashes of PsPad.
Posted by: pspad | Date: 2008-12-20 09:13 | IP: IP Logged
Wordwrap problem coresponds with editor component.
Posted by: arek1 | Date: 2008-12-20 23:19 | IP: IP Logged
So, any idea when it will be fixed? I am writing about WordWrap problem.
Best wishes
ArekS
Posted by: zwayne | Date: 2008-12-21 17:57 | IP: IP Logged
Synedit hasn't been updated in almost 2 years. Are you saying that PsPad will therefore for the foreseeable future be subject to crashes when in word wrap mode?
Posted by: pspad | Date: 2008-12-21 18:26 | IP: IP Logged
zwayne:Synedit hasn't been updated in almost 2 years. Are you saying that PsPad will therefore for the foreseeable future be subject to crashes when in word wrap mode?
It isn't true. Check Synedit CVS.
PSpad uses Unicode Synedit version - see:
mh-nexus.de
Posted by: zwayne | Date: 2008-12-22 15:14 | IP: IP Logged
OK, but the bug tracker for Unicode SynEdit only has two entries for word wrap. One regarding "pasting with ColumnSelection and WordWrap enabled" which is not flagged as a bug, and the other regarding "Indenting wordwrapped block indents wrapped line". Neither of these apply to the very serious crashing problem that PsPad has with word wrap.
Posted by: clanman | Date: 2009-01-01 09:08 | IP: IP Logged
pspad:Thank you. I will reupload this build to fix this cosmetic problem
I have just downloaded the current build today from both links and still have the afore mentioned language issues on the first page of this this thread.
Is there somewhere else to download the language fix?
Posted by: Helper | Date: 2009-01-02 14:00 | IP: IP Logged
Hi,
Is it a bug or a misconfiguration ?
Using this version in "normal selection" mode is not working as usual.
- using up/down keys with a very long line from the EoL do not move you to the EoL of the previous/next line when it is shorter than the previous position.
- using left-clic of the mouse, clicking somewhere after the EoL do not place the cursor at the EoL.
Thanks in advance.
Edited 1 time(s). Last edit at 2009-01-02 14:18 by Helper.
Editor PSPad - freeware editor, © 2001 - 2024 Jan Fiala, Hosted by Webhosting TOJEONO.CZ, design by WebDesign PAY & SOFT, code Petr Dvořák, Privacy policy and GDPR