Re: [VOTE] Release Pivot 2.0.2

2012-05-20 Thread Noel Grandin
+1

Re: svn commit: r1338663 - in /pivot/trunk/wtk/src/org/apache/pivot/wtk: TreeView.java content/TableViewMultiCellRenderer.java skin/TextPaneSkinVerticalElementView.java

2012-05-15 Thread Noel Grandin
Look at the whole method, not just the few lines in a diff. For example, in TreeView, the ancestorCheckStates variable is accessed like this: Sequence ancestorCheckStates = null; if (showMixedCheckmarkState) { ancestorCheckStates = new ArrayList(path.ge

Re: svn commit: r1338663 - in /pivot/trunk/wtk/src/org/apache/pivot/wtk: TreeView.java content/TableViewMultiCellRenderer.java skin/TextPaneSkinVerticalElementView.java

2012-05-15 Thread Noel Grandin
Note that Eclipse's null checker is wrong in these cases, because the if conditions mean that it can never be null in those places. The checker is pretty smart, but it's not always right. On 2012-05-15 14:07, smart...@apache.org wrote: Author: smartini Date: Tue May 15 12:07:39 2012 New Revisi

[jira] [Commented] (PIVOT-846) rework methods for modifying user-level child components of Container subclasses

2012-05-02 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-846?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13266490#comment-13266490 ] Noel Grandin commented on PIVOT-846: Hi No, I haven't worked on that yet.

[jira] [Commented] (PIVOT-850) Fail to show input characters other than English

2012-04-11 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-850?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13251420#comment-13251420 ] Noel Grandin commented on PIVOT-850: Brendan, if you want to work on this, a

[jira] [Commented] (PIVOT-850) Fail to show input characters other than English

2012-04-11 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-850?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13251417#comment-13251417 ] Noel Grandin commented on PIVOT-850: OK, I think I know what is going on. The pro

Re: checks

2012-04-10 Thread Noel Grandin
Your verifyXXX changes look fine. I suspect you are getting an exception because you have Piotr's clearActive() change in your workspace On Tue, Apr 10, 2012 at 15:06, Sandro Martini wrote: > Another info on this: > > in ArrayList, what do you think instead of use "length - 1" in many > plac

[jira] [Commented] (PIVOT-850) Text Input from Mac Lion and Windows 7 failed in Chinese, Korean

2012-04-03 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-850?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13245428#comment-13245428 ] Noel Grandin commented on PIVOT-850: These are both font issues. So yes, providi

[jira] [Commented] (PIVOT-843) Copy Paste issues with CF_DIB clipboard type image

2012-03-27 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-843?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13239481#comment-13239481 ] Noel Grandin commented on PIVOT-843: The weird thing about this bug for me is th

[jira] [Created] (PIVOT-846) rework methods for modifying user-level child components of Container subclasses

2012-03-23 Thread Noel Grandin (Created) (JIRA)
Issue Type: Improvement Components: wtk Affects Versions: 2.1 Reporter: Noel Grandin Assignee: Noel Grandin Priority: Minor For most sub-classes of Container, directly adding/removing child components is not something the user usually wants

[jira] [Resolved] (PIVOT-800) FileBrowserSheet#setSelectedFile() does not take effect

2012-03-15 Thread Noel Grandin (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-800?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-800. Resolution: Fixed Assignee: Noel Grandin (was: Roger Whitcomb) Fixed in revision 1301022

Re: 2.0.1 TextArea - removed text event

2012-02-01 Thread Noel Grandin
02-01 16:05, Noel Grandin wrote: That's a valid bug. Please log a JIRA issue for that. On 2012-02-01 16:02, Rafał Gierusz wrote: Hi, I'm trying to get information about text removed from TextArea component. In the ParagraphListener, which I used for text changes tracking, there

[jira] [Commented] (PIVOT-836) Improve Performance of Graphics

2012-01-29 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-836?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13195978#comment-13195978 ] Noel Grandin commented on PIVOT-836: Applied Piotr patches to TerraFrameSkin

[jira] [Resolved] (PIVOT-836) Improve Performance of Graphics

2012-01-29 Thread Noel Grandin (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-836?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-836. Resolution: Fixed Fixed in rev 1237555 > Improve Performance of Graph

[jira] [Commented] (PIVOT-835) TextPane is unusable in 2.0.1 release

2012-01-25 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-835?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13192928#comment-13192928 ] Noel Grandin commented on PIVOT-835: Committed a fix in rev 1235672. Please tr

Re: Double buffering of components

2012-01-22 Thread Noel Grandin
frames (we save not only on painting, but also on the whole painting logic like bounds calculation, etc.). Best regards, Piotr W dniu 20.01.2012 15:35, Noel Grandin pisze: note that you have to enable double-buffering explicitly on a per-component basis. On 2012-01-20 16:13, Piotr

Re: Double buffering of components

2012-01-20 Thread Noel Grandin
note that you have to enable double-buffering explicitly on a per-component basis. On 2012-01-20 16:13, Piotr Kołaczkowski wrote: Hmm, Can't see a difference. But I have to profile it to see what is causing the slowdown. Thanks for the patch. -- Piotr W dniu 20.01.2012 13:53, Noel Gr

Re: Double buffering of components

2012-01-20 Thread Noel Grandin
Hmm, interesting idea. This is a prototype patch. Try it out and let me know how it goes. -- Noel Grandin On 2012-01-20 11:09, Piotr Kołaczkowski wrote: Hi, Is there support for explicit double-buffering of components (especially windows) like it is in Swing? Currently I faced another

Re: [VOTE] Release Pivot 2.0.1

2012-01-11 Thread Noel Grandin
+1 downloaded and verified library jar On 2012-01-09 01:28, Sandro Martini wrote: Hi All, the Pivot 2.0.1 release candidate has been tagged, packaged, and is ready for a vote. The artifacts, RAT reports, and KEYS file can be found here: http://people.apache.org/~smartini/pivot-2.0.1_release/

[jira] [Resolved] (PIVOT-829) Select file in FileBrowserSheet

2011-12-20 Thread Noel Grandin (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-829?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-829. Resolution: Fixed Assignee: Noel Grandin Resolved in rev 1221278 > Sel

Re: Proposal "Pivot goes HTML5"

2011-11-14 Thread Noel Grandin
skill sets from the maintainers, which is not common All that being said, don't let me stop you. I'd just prefer if the work was done on a branch, where things can get worked before we commit to such an approach. Regards, Noel Grandin On Mon, Nov 14, 2011 at 15:43, Sandro Martini wrote

[jira] [Resolved] (PIVOT-813) BXML annotation should work for JavaBean properties

2011-11-14 Thread Noel Grandin (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-813?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-813. Resolution: Fixed Tested using Sandro's code and launch files, and as far as I can tell th

BXML preview tool

2011-11-08 Thread Noel Grandin
Hi I've built a BXML preview tool. See attached screenshot. Any objections to me checking this under the tutorials folder? Regards, Noel Grandin

[jira] [Commented] (PIVOT-815) Printing crashes with Out Of Memory exception

2011-11-03 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-815?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13142974#comment-13142974 ] Noel Grandin commented on PIVOT-815: Please try this patch: I

[jira] [Commented] (PIVOT-815) Printing crashes with Out Of Memory exception

2011-11-03 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-815?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13142949#comment-13142949 ] Noel Grandin commented on PIVOT-815: Can you try this patch, and change

[jira] [Commented] (PIVOT-813) BXML annotation should work for JavaBean properties

2011-11-02 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-813?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13142068#comment-13142068 ] Noel Grandin commented on PIVOT-813: This is working for me. What exception did

[jira] [Resolved] (PIVOT-814) TextArea#getText throws IndexOutOfBoundsException when called from TextChanged method under setText

2011-11-02 Thread Noel Grandin (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-814?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-814. Resolution: Fixed Fixed in rev 1196545 > TextArea#getText thr

[jira] [Resolved] (PIVOT-809) Wrong position for nested menu

2011-10-27 Thread Noel Grandin (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-809?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-809. Resolution: Fixed Fixed in rev r1189671 > Wrong position for nested m

[jira] [Resolved] (PIVOT-803) ImageView placement is incorrect when nested inside two TablePanes

2011-10-25 Thread Noel Grandin (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-803. Resolution: Fixed > ImageView placement is incorrect when nested inside two TablePa

Re: svn commit: r1188387 - in /pivot/trunk/wtk-terra/src/org/apache/pivot/wtk/skin/terra: TerraListViewSkin.java TerraTableViewSkin.java TerraTreeViewSkin.java

2011-10-25 Thread Noel Grandin
Hi The coding convention is to use "consumed" and "!consumed". Regards, Noel Grandin smart...@apache.org wrote: > Author: smartini > Date: Mon Oct 24 21:17:01 2011 > New Revision: 1188387 > > URL: http://svn.apache.org/viewvc?rev=1188387&view=rev > Log

Re: svn commit: r1188372 - in /pivot/trunk: tests/src/org/apache/pivot/tests/ tutorials/src/org/apache/pivot/tutorials/ tutorials/src/org/apache/pivot/tutorials/explorer/tools/ tutorials/src/org/apach

2011-10-25 Thread Noel Grandin
Hi Nice work, expect for this one change: This change changes the meaning of the code. The instance variable no longer points to the currently running Expenses object. Regards, Noel. smart...@apache.org wrote: > Modified: > pivot/trunk/tutorials/src/org/apache/pivot/tutorials/webqueries/Expens

Re: branching for 2.0.x

2011-10-24 Thread Noel Grandin
Hi OK, Sandro, that sounds like a good idea. Regards, Noel Sandro Martini wrote: > Hi Noel, > if it's not a problem I'd prefer to wait just after the final release > of 2.0.1 to branch, so in the meantime we don't have to make changes > on both ... I have only small little changes to commit and

branching for 2.0.x

2011-10-24 Thread Noel Grandin
Hi In the interests of getting a 2.0.1 release out soon, I suggest that I (a) create a 2.0.x branch (b) revert my recent VolatileImage patch on that branch then we can get a 2.0.1 release out sooner rather, and we can start working towards 2.1. Regards, Noel Grandin Disclaimer: http

[jira] [Commented] (PIVOT-807) Add new "showContentBevel" style to TerraFrameSkin to allow greater flexibility

2011-10-21 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-807?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13132485#comment-13132485 ] Noel Grandin commented on PIVOT-807: Rather than creating a new field on the ob

Re: svn commit: r1185040 - /pivot/trunk/wtk/src/org/apache/pivot/wtk/ApplicationContext.java

2011-10-20 Thread Noel Grandin
Just checked in another fix, this one seems to behave at least as well as the old code on my machine. Sorry about the bumpy ride :-; Regards, Noel.

Re: svn commit: r1185040 - /pivot/trunk/wtk/src/org/apache/pivot/wtk/ApplicationContext.java

2011-10-20 Thread Noel Grandin
I've checked in a fix for this, but some more testing reveals that rapid window resizing causes some flickering of black rectangles in the corners. Not ideal. Chris Bartlett wrote: > I haven't had time to investigate in any way, but this commit needs > more testing. > > I isolated this single co

[jira] [Commented] (PIVOT-803) ImageView placement is incorrect when nested inside two TablePanes

2011-10-19 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-803?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13130700#comment-13130700 ] Noel Grandin commented on PIVOT-803: I've checked in a basic fix in rev 11

[jira] [Commented] (PIVOT-511) Labels doesn't appear in Print from Browser

2011-10-19 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-511?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13130524#comment-13130524 ] Noel Grandin commented on PIVOT-511: In general, it looks good t

[jira] [Resolved] (PIVOT-804) Why can't I set a TabPane's buttonPadding to a dictionary?

2011-10-19 Thread Noel Grandin (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-804?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-804. Resolution: Fixed Fix Version/s: 2.0.1 Assignee: Noel Grandin Fixed in rev 1186041

[jira] [Commented] (PIVOT-804) Why can't I set a TabPane's buttonPadding to a dictionary?

2011-10-19 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13130458#comment-13130458 ] Noel Grandin commented on PIVOT-804: Comment from Chris Bartlett: It is due to

[jira] [Created] (PIVOT-804) Why can't I set a TabPane's buttonPadding to a dictionary?

2011-10-19 Thread Noel Grandin (Created) (JIRA)
Why can't I set a TabPane's buttonPadding to a dictionary? -- Key: PIVOT-804 URL: https://issues.apache.org/jira/browse/PIVOT-804 Project: Pivot Issue Type: Bug Reporter: Bi

[jira] [Resolved] (PIVOT-802) Introduce "inactiveBorderColor" to TabPane to allow greater flexibility for look and feel

2011-10-17 Thread Noel Grandin (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-802?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-802. Resolution: Fixed > Introduce "inactiveBorderColor" to TabPane to allow greater fl

[jira] [Commented] (PIVOT-802) Introduce "inactiveBorderColor" to TabPane to allow greater flexibility for look and feel

2011-10-17 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-802?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13128726#comment-13128726 ] Noel Grandin commented on PIVOT-802: Commited in rev 1185041 Thanks R

[jira] [Commented] (PIVOT-778) Optimise DisplayHost.paintBuffered and DisplayHost.paintVolatileBuffered

2011-10-17 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-778?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13128725#comment-13128725 ] Noel Grandin commented on PIVOT-778: I modified ApplicationContext to cache

[jira] [Commented] (PIVOT-511) Labels doesn't appear in Print from Browser

2011-10-11 Thread Noel Grandin (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-511?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13125079#comment-13125079 ] Noel Grandin commented on PIVOT-511: Sandro, can you try fiddling with the cod

Re: [jira] [Commented] (PIVOT-798) Component#isEnabled does not affect appearance recursively

2011-10-08 Thread Noel Grandin
viour different from this, you will have to override setEnabled() and setEnabledRecursive() and implement your own logic. Anything else is simply not going to satisfy all users. I know - I've had this discussion before on the SwingX mailing list. -- Noel Grandin

[jira] [Commented] (PIVOT-790) Add FillPane layout container that acts like a BoxPane with fill=true in both directions

2011-08-24 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13090118#comment-13090118 ] Noel Grandin commented on PIVOT-790: Arr. Sorry everybody, I

[jira] [Commented] (PIVOT-790) Add FillPane layout container that acts like a BoxPane with fill=true in both directions

2011-08-24 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13090101#comment-13090101 ] Noel Grandin commented on PIVOT-790: "Adding complexity" is not an ar

Re: [jira] [Commented] (PIVOT-790) Add FillPane layout container that acts like a BoxPane with fill=true in both directions

2011-08-24 Thread Noel Grandin
iate for this case, and ScrollPane.. scrolls. -- Noel. Greg Brown wrote: > FWIW, I think overloading BoxPane would add more complexity. I'd prefer > either a new component or recommending StackPane or ScrollPane for this use > case. > G > > - Reply message - > F

[jira] [Commented] (PIVOT-790) Add FillPane layout container that acts like a BoxPane with fill=true in both directions

2011-08-23 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13089678#comment-13089678 ] Noel Grandin commented on PIVOT-790: I think we can keep backwards compatibilit

[jira] [Commented] (PIVOT-790) Add FillPane layout container that acts like a BoxPane with fill=true in both directions

2011-08-23 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13089384#comment-13089384 ] Noel Grandin commented on PIVOT-790: I'm not in favour of adding another

[jira] [Commented] (PIVOT-790) Add FillPane layout container that acts like a BoxPane with fill=true in both directions

2011-08-20 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13088203#comment-13088203 ] Noel Grandin commented on PIVOT-790: It might simpler to add a new style to Box

Re: What about a TextOperator interface?

2011-08-15 Thread Noel Grandin
ature request in the bug-tracker so we don't lose track of this idea. Thanks, Noel Grandin Roger L. Whitcomb wrote: > I'm implementing Cut/Copy/Paste, etc. in our UI and it is fairly awkward > to have to check for TextInput, TextArea and TextPane on every operation > and do t

Re: Propose 2.0.1 release

2011-08-08 Thread Noel Grandin
Thanks for doing admin work Sandro. Sandro Martini wrote: > Hi all, > sorry for all JIRA mail of today, but I created the 2.0.2 release, resolved > some issues already fixed in code and do some cleanup. > > Now 2.0.1 has no more tickets assigned (only one currently, but as soon as I > get an answe

[jira] [Resolved] (PIVOT-780) Can't use BXMLSerializer from non-AWT threads makes background resource loading impossible

2011-08-08 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-780?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-780. Resolution: Fixed Assignee: Noel Grandin Marking this as closed for now. Can be re-opened if

[jira] [Commented] (PIVOT-780) Can't use BXMLSerializer from non-AWT threads makes background resource loading impossible

2011-08-04 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13079359#comment-13079359 ] Noel Grandin commented on PIVOT-780: Checked in a fix in rev 1153866 > Ca

[jira] [Commented] (PIVOT-696) TextArea support for entering tab characters and tab stops

2011-08-04 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13079357#comment-13079357 ] Noel Grandin commented on PIVOT-696: It's fine for light use - see the exampl

[jira] [Commented] (PIVOT-780) Can't use BXMLSerializer from non-AWT threads makes background resource loading impossible

2011-08-04 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13079354#comment-13079354 ] Noel Grandin commented on PIVOT-780: Modifying any WTK object from outside the e

Re: renaming wtk.text.Span to wtk.text.TextSpan?

2011-08-04 Thread Noel Grandin
It generally doesn't bother people because you either use one or the other in any given class. Chris Bartlett wrote: > Ignore the main body - you beat me to it! > This bit might still be relevant though. > > On 4 August 2011 15:25, Chris Bartlett wrote: >> I see there is also a org.apache.pivot.

Re: renaming wtk.text.Span to wtk.text.TextSpan?

2011-08-04 Thread Noel Grandin
with the change. Maybe only report this > change in a jira ticket, so will be visible in release notes. > > Bye > Il giorno 04/ago/2011 08:44, "Noel Grandin" ha > scritto: >> Hi >> >> I'd like to rename Span to TextSpan because I keep having to spec

renaming wtk.text.Span to wtk.text.TextSpan?

2011-08-03 Thread Noel Grandin
Hi I'd like to rename Span to TextSpan because I keep having to specify the fully qualified class name in code where we are using both wtk.text.Span and wtk.Span Any objections? -- Noel

[jira] [Commented] (PIVOT-696) TextArea support for entering tab characters and tab stops

2011-08-03 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13078763#comment-13078763 ] Noel Grandin commented on PIVOT-696: I don't think this feature belongs in

[jira] [Resolved] (PIVOT-774) Selection bug in TextArea

2011-08-03 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-774?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-774. Resolution: Fixed Fix Version/s: 2.0.1 Assignee: Noel Grandin Fixed in rev 1153480

[jira] [Commented] (PIVOT-709) Want a single-line text input component that wraps

2011-08-03 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-709?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13078613#comment-13078613 ] Noel Grandin commented on PIVOT-709: Just added an "acceptsEnter" ski

[jira] [Commented] (PIVOT-709) Want a single-line text input component that wraps

2011-08-02 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-709?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13078597#comment-13078597 ] Noel Grandin commented on PIVOT-709: OK, good point Bill. I think an "ac

[jira] [Resolved] (PIVOT-779) Resizing a TextPane wider leaves spurious lines of repeated text

2011-08-02 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-779. Resolution: Fixed Assignee: Noel Grandin Nice bug submitting, Bill. Makes it a pleasure to

[jira] [Commented] (PIVOT-709) Want a single-line text input component that wraps

2011-08-02 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-709?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13076209#comment-13076209 ] Noel Grandin commented on PIVOT-709: You could solve this by installing your own

[jira] [Resolved] (PIVOT-378) Add a "lineWidth" property to TextArea

2011-08-02 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-378. Resolution: Fixed Fix Version/s: (was: 2.1) 2.0.1 Assignee

[jira] [Commented] (PIVOT-780) Can't use BXMLSerializer from non-AWT threads makes background resource loading impossible

2011-08-01 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13073612#comment-13073612 ] Noel Grandin commented on PIVOT-780: We could weaken the check so that it reads

[jira] [Commented] (PIVOT-772) Exceptions thrown when calling getCharacterBounds of TextArea when incomplete lines exist

2011-08-01 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-772?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13073579#comment-13073579 ] Noel Grandin commented on PIVOT-772: I've backed out my fix for now. Roger,

Re: How to change font of Document

2011-08-01 Thread Noel Grandin
Hi Just checked in a fix for this in revision 1152826. Because of inherited style information, we needed to invalidate the entire NodeView hierarchy. Regards, Noel. Bill van Melle wrote: > On Wed, Jul 27, 2011 at 12:11 AM, Noel Grandin wrote: >> The way it works at the moment i

[jira] [Commented] (PIVOT-778) Optimise DisplayHost.paintBuffered and DisplayHost.paintVolatileBuffered

2011-07-27 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-778?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13071762#comment-13071762 ] Noel Grandin commented on PIVOT-778: We could always use a WeakReference to allow

[jira] [Resolved] (PIVOT-772) Exceptions thrown when calling getCharacterBounds of TextArea when incomplete lines exist

2011-07-27 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-772?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-772. Resolution: Fixed Fixed in rev 1151471 Note that your code needs to change slightly: Bounds

[jira] [Commented] (PIVOT-772) Exceptions thrown when calling getCharacterBounds of TextArea when incomplete lines exist

2011-07-26 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-772?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13071132#comment-13071132 ] Noel Grandin commented on PIVOT-772: Roger, thanks for being so patient. Do you

[jira] [Resolved] (PIVOT-723) Better GrayscaleDecorator

2011-07-25 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-723?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-723. Resolution: Fixed Fix Version/s: (was: 2.1) 2.0.1 Assignee

[jira] [Commented] (PIVOT-656) FileBrowserSheet seems frozen while browsing network folders

2011-07-25 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-656?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13070400#comment-13070400 ] Noel Grandin commented on PIVOT-656: This is an occasional problem when brow

[jira] [Resolved] (PIVOT-772) Exceptions thrown when calling getCharacterBounds of TextArea when incomplete lines exist

2011-07-25 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-772?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-772. Resolution: Fixed Fixed in rev 1150603 > Exceptions thrown when calling getCharacterBounds

[jira] [Commented] (PIVOT-757) ScrollPane paints over columnHeader if header has no background

2011-07-22 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-757?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13069449#comment-13069449 ] Noel Grandin commented on PIVOT-757: Edvin, can you verify that this is s

[jira] [Resolved] (PIVOT-772) Exceptions thrown when calling getCharacterBounds of TextArea when incomplete lines exist

2011-07-22 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-772?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-772. Resolution: Fixed Assignee: Noel Grandin Fixed in rev 1149500 > Exceptions thrown w

[jira] [Resolved] (PIVOT-659) Scrollbar - The scrollbar's handle can't reach the right end in some cases.

2011-07-21 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-659?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-659. Resolution: Fixed Assignee: Noel Grandin > Scrollbar - The scrollbar's handle can

Re: Idea for a useful change to BXMLSerializer

2011-07-09 Thread Noel Grandin
I'm liking the level of discussion going on here - it shows that we have people with passion in this project, which is awesome. A while ago we used to have branches in the repo for each committer, where that committer could push prototypes and proposed changes - discussions are a lot easier when t

Re: Problem with embedded line endings when inserting text in TextArea

2011-07-04 Thread Noel Grandin
Sent from my iPhone > > On Jul 3, 2011, at 9:56 AM, Noel Grandin wrote: > >> Hi >> >> Does this happen with the latest SVN version? We've fixed a couple of issues >> in TextArea around line-endings. >> >> Regards, Noel Grandin >> >> On S

Re: Problem with embedded line endings when inserting text in TextArea

2011-07-03 Thread Noel Grandin
Hi Does this happen with the latest SVN version? We've fixed a couple of issues in TextArea around line-endings. Regards, Noel Grandin On Sat, Jul 2, 2011 at 02:05, Roger and Beth Whitcomb < rogerandb...@rbwhitcomb.com> wrote: > Hi, >We're trying to write a piece

Re: Infinite number of values implemented as org.apache.pivot.collections.List

2011-07-03 Thread Noel Grandin
st we should protect our user-interface code by asserting that getLength() >=0. But I suspect that anything that makes this mistake will find out very very quickly (via an OutOfMemoryError), or by a program that pegs at 100% CPU, so I'm not even sure we need to do that. -- Noel Grandin

[jira] [Commented] (PIVOT-768) Using TablePane.Filler to align cells in a TablePane can result in blocked mouse input when a Component's 'columnSpan' is > 1

2011-06-30 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-768?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13057708#comment-13057708 ] Noel Grandin commented on PIVOT-768: I can see two solutions to this (1) we

Re: Text validators

2011-06-19 Thread Noel Grandin
ied to the edge/corner, or next to the field Some of these things can be made configurable by using Renderer API's, some of them with options, but it's a lot more work than it initially looks like :-) Regards, Noel Grandin. On Sat, Jun 18, 2011 at 01:10, Sandro Martini wrote: > H

[jira] [Commented] (PIVOT-685) SHIFT+DOWN keystroke within TextArea do not expand the selection past an empty line

2011-06-03 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-685?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13044049#comment-13044049 ] Noel Grandin commented on PIVOT-685: Yeah, but sometimes the same variable is use

[jira] [Commented] (PIVOT-685) SHIFT+DOWN keystroke within TextArea do not expand the selection past an empty line

2011-06-03 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-685?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13043378#comment-13043378 ] Noel Grandin commented on PIVOT-685: Greg, you are right. I'm not ha

[jira] [Commented] (PIVOT-748) ScaleTransition

2011-06-03 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13043241#comment-13043241 ] Noel Grandin commented on PIVOT-748: This is relatively common effect, so I'

[jira] [Resolved] (PIVOT-729) TabPane corner component is hidden by tabs.

2011-06-02 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-729?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-729. Resolution: Fixed Assignee: Noel Grandin Fixed in rev 1130432 > TabPane corner component

[jira] [Commented] (PIVOT-692) FileBrowserSheet's File column width is not adjustable

2011-06-02 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-692?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13042634#comment-13042634 ] Noel Grandin commented on PIVOT-692: This is awaiting a fix to PIVOT

Re: relative tableview column not resizable?

2011-06-02 Thread Noel Grandin
t; > I knocked up a quick 'fix' for this for use in my own projects this soon > after creating the ticket, but haven't found the time to tidy it up and > commit it. I can't even remember the approach that I took, but I can look > it up if needed. > > Chris >

[jira] [Resolved] (PIVOT-647) IllegalArgumentException when attempting to show a tooltip set against a Display

2011-06-01 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-647. Resolution: Fixed Assignee: Noel Grandin Resolved in rev 1130166 > IllegalArgumentExcept

relative tableview column not resizable?

2011-06-01 Thread Noel Grandin
Hi Anyone know why the decision was made that when a TableView has relative-sized columns, the user may not manually resize the columns? Thanks, Noel.

[jira] [Resolved] (PIVOT-695) TextInput should support editable property

2011-06-01 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-695?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-695. Resolution: Fixed Assignee: Noel Grandin Fixed in 1130155 > TextInput should supp

[jira] [Commented] (PIVOT-685) SHIFT+DOWN keystroke within TextArea do not expand the selection past an empty line

2011-06-01 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-685?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13042161#comment-13042161 ] Noel Grandin commented on PIVOT-685: The problem here is that the way we have def

[jira] [Commented] (PIVOT-747) pivot & blocking edt

2011-05-31 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13041597#comment-13041597 ] Noel Grandin commented on PIVOT-747: No, you can substitute your own main method

[jira] [Commented] (PIVOT-747) pivot & blocking edt

2011-05-31 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13041483#comment-13041483 ] Noel Grandin commented on PIVOT-747: Committed installable checker in rev 112

[jira] [Resolved] (PIVOT-747) pivot & blocking edt

2011-05-30 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noel Grandin resolved PIVOT-747. Resolution: Fixed Fixed in rev 1129031 > pivot & block

[jira] [Commented] (PIVOT-747) pivot & blocking edt

2011-05-25 Thread Noel Grandin (JIRA)
[ https://issues.apache.org/jira/browse/PIVOT-747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13039143#comment-13039143 ] Noel Grandin commented on PIVOT-747: I'm in agreement with Greg, tryi

  1   2   3   >