Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-17 Thread Staffan Tylen
> The bottom line is, you example will for sure be able to resize correctly. > > Excellent! Thanks. And I'm in no rush ;) Staffan -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps,

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-17 Thread Mark Miesfeld
On Thu, Jan 17, 2013 at 9:28 AM, Staffan Tylen wrote: > > >> I'm not sure where we are standing with this at the moment but I would > prefer to have what you Mark call 'special treatment' of static controls in > the same way as group boxes so that the code in my example can resize > correctly, wit

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-17 Thread Staffan Tylen
> The basics of the implementation code is to reduce the amount of erasing > and repainting being done. Everything that is moved has to be redrawn at > least once, it is changed after all. The idea is, for each move, only do > it once. Much of the time, usually, for each move, things are erased

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-17 Thread Mark Miesfeld
On Wed, Jan 16, 2013 at 11:12 AM, hakan wrote: > ** > I agree that flicker exist in the groupbox when using augmentedResize.rex > and basicResize.rex, but as Staffan say "..hardly notice any flicker, at > least not so that it's disturbing in any way" > You guys may have better hardware than my cu

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-16 Thread hakan
how to circumvent if needed. /hex - Ursprungligt Meddelande - Från: Mark Miesfeld Till: , Open Object Rexx Users Kopia: Datum: tisdag, 15 januari 2013 23:13 Ämne: Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2 On Tue, Jan 15, 2013 at 12:27 PM, ha

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Staffan Tylen
> You can use groupboxes in resizable dialogs. But, in the current > implementation, there is some flicker. You can see it in the > augmentedResize.rex example. When you size the dialog, you can see the > text of the groupbox flicker. The alternative, will not draw the controls > inside of the

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Mark Miesfeld
On Tue, Jan 15, 2013 at 12:27 PM, hakan wrote: > I hope you mean that you can use groupboxes in resizeable dialogs as long > as you keep the groupbox stationary, ie not resizing them at all, to avoid > flicker, > hex, You can use groupboxes in resizable dialogs. But, in the current implementat

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread hakan
: Datum: tisdag, 15 januari 2013 18:55 Ämne: Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2 On Tue, Jan 15, 2013 at 9:32 AM, Staffan Tylen wrote: Mark, I've got one dialog with a StaticText control created with self~createStaticText(.,"text goes h

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Mark Miesfeld
On Tue, Jan 15, 2013 at 11:33 AM, Staffan Tylen wrote: > Mark, As I'm sure you spotted already it's the CENTER and CENTERIMAGE > options that are causing the problem. > Yes. The text doesn't get painted in the correct position. If I treat a static control the same as a group box, it works fine.

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Staffan Tylen
Mark, As I'm sure you spotted already it's the CENTER and CENTERIMAGE options that are causing the problem. Staffan On Tue, Jan 15, 2013 at 8:18 PM, Staffan Tylen wrote: > Mark, try this: > > .ResizeProblem~newInstance > > ::CLASS "ResizeProblem" SUBCLASS USERDIALOG INHERIT ResizingAdmin > ::R

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Staffan Tylen
Mark, try this: .ResizeProblem~newInstance ::CLASS "ResizeProblem" SUBCLASS USERDIALOG INHERIT ResizingAdmin ::REQUIRES "ooDialog.cls" ::METHOD newInstance CLASS UNGUARDED thisDialog = self~new() thisDialog~activate ::METHOD init forward class(super) continue opts = "MINIMIZEBOX MAXIMIZ

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Mark Miesfeld
Hmm, I just tried a quick test, and don't see a problem with the static control. Would you be able to send me the dialog you see the problem with? Or a test dialog that shows the problem? You can send it directly to my gmail address. Or, if you don't mind it being public, you could open a bug a

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Mark Miesfeld
On Tue, Jan 15, 2013 at 9:32 AM, Staffan Tylen wrote: > Mark, I've got one dialog with a StaticText control created with > self~createStaticText(.,"text goes here"). The same dialog inherits > ResizingAdmin and is created with the MINIMIZEBOX and MAXIMIZEBOX options. > When I press the maximiz

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Staffan Tylen
Mark, I've got one dialog with a StaticText control created with self~createStaticText(.,"text goes here"). The same dialog inherits ResizingAdmin and is created with the MINIMIZEBOX and MAXIMIZEBOX options. When I press the maximize button, the StaticText control box is stretched as expected b

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Staffan Tylen
> The only thing not supported, yet, is ControlDialogs embedded in tab > controls and PropertySheetDialog subclasses. > > I've tested two dialogs that I have that are not PropertySheet dialogs and it works right from the box by just adding INHERIT. Magic OK, there is only one control in each o

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Mark Miesfeld
On Tue, Jan 15, 2013 at 4:00 AM, Staffan Tylen wrote: > In addition, there is a generic implementation of resizable dialogs. You >> can make any dialog resizable by inheriting the ResizingAdmin class. This >> includes RcDialog and ResDialog dialogs. There are some examples of this >> in the di

Re: [Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-15 Thread Staffan Tylen
> It has some cool new features in it that I was hoping some of you might > help test them. > > For Staffan and Oliver - I have finished the implementation that allows > the embedding of either an edit control, or a combo box in the subitem area > of a list-view. It is pretty cool. > > Not only co

[Oorexx-users] Editing list-view subitems in place; preview of ooDialog 4.2.2

2013-01-14 Thread Mark Miesfeld
All, I have uploaded a preview build of ooDialog 4.2.2 to SourceForge. You can download it from: https://sourceforge.net/projects/oorexx/files/ooDialog/4.2.2.Preview/? It has some cool new features in it that I was hoping some of you might help test them. For Staffan and Oliver - I have finish