| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- // Copyright (c) 2004 Novell, Inc.
- //
- // Authors:
- // Jackson Harper ([email protected])
- //
- using System;
- using System.Drawing;
- using System.Drawing.Imaging;
- namespace System.Windows.Forms {
- public class PictureBox : Control {
- private Image image;
- private PictureBoxSizeMode size_mode;
- private BorderStyle border_style;
- private bool redraw;
- private bool recalc;
- private EventHandler frame_handler;
- public PictureBox ()
- {
- redraw = true;
- recalc = true;
- }
- public PictureBoxSizeMode SizeMode {
- get { return size_mode; }
- set {
- if (size_mode == value)
- return;
- size_mode = value;
- UpdateSize ();
- Redraw (true);
- Invalidate ();
- }
- }
- public Image Image {
- get { return image; }
- set {
- StopAnimation ();
- image = value;
- UpdateSize ();
- if (ImageAnimator.CanAnimate (image)) {
- frame_handler = new EventHandler (OnAnimateImage);
- ImageAnimator.Animate (image, frame_handler);
- }
- Redraw (true);
- Invalidate ();
- }
- }
- public BorderStyle BorderStyle {
- get { return border_style; }
- set {
- border_style = value;
- Redraw (true);
- }
- }
- public new bool CausesValidation {
- get { return base.CausesValidation; }
- set { base.CausesValidation = value; }
- }
- public new ImeMode ImeMode {
- get { return base.ImeMode; }
- set { base.ImeMode = value; }
- }
- public override RightToLeft RightToLeft {
- get { return base.RightToLeft; }
- set { base.RightToLeft = value; }
- }
- public new int TabIndex {
- get { return base.TabIndex; }
- set { base.TabIndex = value; }
- }
- public new bool TabStop {
- get { return base.TabStop; }
- set { base.TabStop = value; }
- }
- public override string Text {
- get { return base.Text; }
- set { base.Text = value; }
- }
- protected override CreateParams CreateParams {
- get {
- return base.CreateParams;
- }
- }
- protected override ImeMode DefaultImeMode {
- get { return base.DefaultImeMode; }
- }
- public override Font Font {
- get { return base.Font; }
- set { base.Font = value; }
- }
- public override Color ForeColor {
- get { return base.ForeColor; }
- set { base.ForeColor = value; }
- }
- protected override Size DefaultSize {
- get { return new Size (100, 50); }
- }
- protected override void Dispose (bool disposing)
- {
- if (image != null) {
- StopAnimation ();
- image.Dispose ();
- image = null;
- }
- base.Dispose (disposing);
- }
- protected override void OnPaint (PaintEventArgs pe)
- {
- if (this.Width <= 0 || this.Height <= 0 || this.Visible == false)
- return;
- Draw ();
- pe.Graphics.DrawImage (this.ImageBuffer, pe.ClipRectangle, pe.ClipRectangle, GraphicsUnit.Pixel);
- }
- protected override void SetBoundsCore (int x, int y, int width, int height, BoundsSpecified specified)
- {
- if (size_mode == PictureBoxSizeMode.AutoSize && image != null) {
- width = image.Width;
- height = image.Height;
- }
- base.SetBoundsCore (x, y, width, height, specified);
- }
- private void StopAnimation ()
- {
- if (frame_handler == null)
- return;
- ImageAnimator.StopAnimate (image, frame_handler);
- frame_handler = null;
- }
- private void UpdateSize ()
- {
- if (image == null)
- return;
- if (size_mode == PictureBoxSizeMode.AutoSize)
- ClientSize = image.Size;
- }
- private void Redraw (bool recalc)
- {
- redraw = true;
- this.recalc = recalc;
- }
- private void OnAnimateImage (object sender, EventArgs e)
- {
- // This is called from a worker thread,BeginInvoke is used
- // so the control is updated from the correct thread
- BeginInvoke (new EventHandler (UpdateAnimatedImage), new object [] { this, e });
- }
- private void UpdateAnimatedImage (object sender, EventArgs e)
- {
- ImageAnimator.UpdateFrames (image);
- Redraw (false);
- Refresh ();
- }
- [MonoTODO ("Borders and stuff, and move into the Theme")]
- private void Draw ()
- {
- if (redraw) {
- ThemeEngine.Current.DrawPictureBox (DeviceContext, this);
- }
- redraw = false;
- }
- }
- }
|