dotgnu-general
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [DotGNU]SWF


From: Neil Cawse
Subject: RE: [DotGNU]SWF
Date: Tue, 2 Sep 2003 13:02:48 -0400

I checked your patch on Savanna again:

 

--- System.Windows.Forms/Themes/DefaultThemePainter.cs       28 Aug 2003 20:39:38 -0000
***************
*** 960,981 ****
                                                                     int width, int height,
                                                                         ButtonState state)
                       {
!                              Brush brush = new SolidBrush(Color.White);
!                              ControlPaint.DrawBorder3D(graphics, x, y, width, height, Border3DStyle.Sunken, Border3DSide.All);
!                              graphics.FillRectangle(brush, x + 2, y + 2, width - 2, height - 2);
!                              brush.Dispose();
!                              
!                              if (state == ButtonState.Checked)
!                              {
!                                     Brush blackBrush = new SolidBrush(Color.Black);
!                                     Pen pen = new Pen(blackBrush, 2);
! 
!                                     GraphicsPath path = new GraphicsPath();
!                                     path.AddLine(x + 3, y + 5, x + 4, y + 7);
!                                     path.AddLine(x + 5, y + 8, x + 9, y + 3);
!                                     graphics.DrawPath(pen, path);
!                                     brush.Dispose();
!                                     pen.Dispose();
                               }

this patch cant be the one that rendered the image link you posted?? Path.AddLine and graphics.DrawPath will produce an outline of the arrow, not the filled arrow.

 

Anyway i took the rest of your patch, changed the way you were handling onMouseUp (mouse up is when the mouse button is released, not when the button goes up), you just need to handle the OnMouseDown event and toggle the popup. There were some other changes, do a diff..

 

Neil

 

-----Original Message-----
From: Simon Guindon [mailto:address@hidden
Sent: Monday, September 01, 2003 11:06 PM
To: Portable.NET
Subject: Re: [DotGNU]SWF

 

StatusBar and CheckBox should be working on my part, not fully complete but I've implemented the basics first, until I figure out what to do with some of the advanced methods, but they should both work.  Need to fix up a few little things here and there.

 

Neil, you mentioned something about my ComboBox patch not working? it worked for me fine off fresh CVS, I patch using

patch -p0 < simon-etc.patch in the pnetlib root.  It should patch ComboBox.cs and DefaultThemePainter.cs

 

Take care,

Simon

----- Original Message -----

From: Neil Cawse

Sent: Monday, September 01, 2003 10:05 PM

Subject: [DotGNU]SWF

 

Thanks for the interest! We are all operating this pretty much informally - pick something, stub it out, get the very basics onto the cvs and build from there. If you are actively involved in an area, send to the mailing list and tell people. It wont guarantee that someone doesnt compete - but someone wont if you are making progress. Also - ASK QUESTIONS, we are here to help. I would be really happy getting anyone started, and we dont want people stuck on things.

 

I have approximately ranked each of the groups of work according to my valuation of importance.

The ranking is based on pieces that need to be completed for other pieces and how quickly System.Windows.Forms will become real world useful. Don't take them completely as gospel though.

 

I will add this to the Wiki. Anyone feel free to add/move around.

 

 

Toolkits : adding image support including icons. Rhys is working hard on this, images in X are v. trickey !

System.Drawing.Drawing2D : Linear Gradient Brush. Neil or someone else can add this in easily once images are done. This will allow some cool drawing effects.

System.Drawing.Imaging : Images, jpg, png, gif, scaling, rotation, transforming. jpg, png, gif support is v. tricky. Rhys is working on this. We could use SWT code, move this across from Java. Something to consider. The only thing that is key for us to get going is bmp support (easiest)

System.Windows.Forms : ListBox/CheckedListBox

System.Windows.Forms : Finish ComboBox

System.Windows.Forms : Finish H&VScrollbar - looks like speed issue and some functionality

System.Windows.Forms : ImageList - needed so apps can use images

System.Windows.Forms : ToolBar finish

Toolkits : Dialog support

System.Windows.Forms : Control - finish keyboard support, dialog support. Little tricky - Neil or Rhys

System.Windows.Forms : Open/Save/Folder/Font/Color/Print Common Dialogs - will need some toolkit pieces for the harder common dialogs like font. These are *very* cool to do.

System.Windows.Forms : MessageBoxes - needs images and dialog

System.Windows.Forms : DataGrid

System.Windows.Forms : Treeview - Neil working on initial version

System.Windows.Forms : TextBox - add scrollbar support

System.Drawing.Drawing2D : Pen Styles (cap, dash style etc.)

System.Windows.Forms : MainMenu - finish off, multiple colums, short cut keys, images, keyboard

System.Windows.Forms : ListView

System.Windows.Forms : DateTimePicker

System.Windows.Forms : MonthCalendar

System.Windows.Forms : Splitter

System.Windows.Forms : TrackBar

System.Windows.Forms : StatusBar

System.Windows.Forms : Finish TabControl - left, bottom and right tabs

Toolkits : Improved Font support

Toolkits : System colors and other system info

Toolkits : toolkit support for maximizing, minimizing and events

System.Windows.Forms.Form : finish hooking in minimize etc, keyboard and other pieces

System.Drawing.Printing

System.Drawing.Postscript

Toolkits : Work on optimizing X

System.Windows.Forms : Richtextbox - difficult!

System.Windows.Forms : DomainUpDown

System.Windows.Forms : NumericUpDown

System.Windows.Forms : HelpProvider

System.Windows.Forms : ToolTip

System.Windows.Forms : NotifyIcon

System.Windows.Forms : PrintDocument/Print Preview/PageSetup

System.Windows.Forms : Theme support - XP, Gnome, KDE

System.Windows.Forms : ErrorProvider

System.Drawing.Regions : support Graphics paths

System.Drawing.Graphics : Optimize Draw and Measure String to minimize X trips for speed

System.Drawing.Graphics : Metafile support


reply via email to

[Prev in Thread] Current Thread [Next in Thread]