| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780 |
- // 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:
- // Peter Bartok [email protected]
- //
- //
- // $Revision: 1.21 $
- // $Modtime: $
- // $Log: Form.cs,v $
- // Revision 1.21 2004/11/04 14:47:58 jordi
- // collection completion, drawing issues, missing features
- //
- // Revision 1.20 2004/10/29 15:55:26 jordi
- // Menu key navigation, itemcollection completion, menu fixes
- //
- // Revision 1.19 2004/10/20 03:56:23 pbartok
- // - Added private FormParentWindow class which acts as the container for
- // our form and as the non-client area where menus are drawn
- // - Added/Moved required tie-ins to Jordi's menus
- // - Fixed/Implemented the FormStartPosition functionality
- //
- // Revision 1.18 2004/10/18 04:47:09 pbartok
- // - Fixed Form.ControlCollection to handle owner relations
- // - Added Owner/OwnedForms handling
- // - Implemented Z-Ordering for owned forms
- // - Removed unneeded private overload of ShowDialog
- // - Fixed ShowDialog, added the X11 incarnation of modal handling (or so I
- // hope)
- // - Fixed Close(), had wrong default
- // - Added firing of OnLoad event
- // - Added some commented out debug code for Ownership handling
- //
- // Revision 1.17 2004/10/15 12:43:19 jordi
- // menu work, mainmenu, subitems, etc
- //
- // Revision 1.16 2004/10/14 06:17:58 ravindra
- // Fixed class signature. ShowDialog (Control) is not a public method.
- //
- // Revision 1.15 2004/10/08 08:50:29 jordi
- // more menu work
- //
- // Revision 1.14 2004/10/02 19:05:52 pbartok
- // - Added KeyPreview property
- // - Added Menu property (still incomplete, pending Jordi's menu work)
- // - Implemented ProcessCmdKey
- // - Implemented ProcessDialogKey
- // - Implemented ProcessKeyPreview
- //
- // Revision 1.13 2004/10/01 17:53:26 jackson
- // Implement the Close method so work on MessageBox can continue.
- //
- // Revision 1.12 2004/09/23 19:08:59 jackson
- // Temp build fixage
- //
- // Revision 1.11 2004/09/22 20:09:44 pbartok
- // - Added Form.ControllCollection class
- // - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
- // RemoveOwnedForm (still incomplete, missing on-top and common
- // minimize/maximize behaviour)
- // - Added StartPosition property (still incomplete, does not use when
- // creating the form)
- // - Added ShowDialog() methods (still incomplete, missing forcing the dialog
- // modal)
- //
- // Revision 1.10 2004/09/13 16:56:04 pbartok
- // - Fixed #region names
- // - Moved properties and methods into their proper #regions
- //
- // Revision 1.9 2004/09/13 16:51:29 pbartok
- // - Added Accept and CancelButton properties
- // - Added ProcessDialogKey() method
- //
- // Revision 1.8 2004/09/01 02:05:18 pbartok
- // - Added (partial) implementation of DialogResult; rest needs to be
- // implemented when the modal loop code is done
- //
- // Revision 1.7 2004/08/23 22:10:02 pbartok
- // - Fixed handling of WM_CLOSE message
- // - Removed debug output
- //
- // Revision 1.6 2004/08/22 21:10:30 pbartok
- // - Removed OverlappedWindow style from Control, instead it's default
- // now is child
- // - Made form windows OverlappedWindow by default
- //
- // Revision 1.5 2004/08/19 21:30:37 pbartok
- // - Added handling of WM_CLOSE
- //
- // Revision 1.4 2004/08/11 22:20:59 pbartok
- // - Signature fixes
- //
- // Revision 1.3 2004/08/04 21:13:47 pbartok
- // - Added AutoScale properties
- //
- // Revision 1.2 2004/07/13 15:31:45 jordi
- // commit: new properties and fixes form size problems
- //
- // Revision 1.1 2004/07/09 05:21:25 pbartok
- // - Initial check-in
- //
- //
- // NOT COMPLETE
- using System;
- using System.Drawing;
- using System.ComponentModel;
- using System.Collections;
- using System.Runtime.InteropServices;
- using System.Threading;
- namespace System.Windows.Forms {
- public class Form : ContainerControl {
- #region Local Variables
- internal bool closing;
- private static bool autoscale;
- private static Size autoscale_base_size;
- private bool is_modal;
- internal bool end_modal; // This var is being monitored by the application modal loop
- private IButtonControl accept_button;
- private IButtonControl cancel_button;
- private DialogResult dialog_result;
- private FormStartPosition start_position;
- private Form owner;
- private Form.ControlCollection owned_forms;
- private bool key_preview;
- private MainMenu menu;
- internal FormParentWindow form_parent_window;
- #endregion // Local Variables
- #region Private Classes
- // This class will take over for the client area
- internal class FormParentWindow : Control {
- #region FormParentWindow Class Local Variables
- internal Form owner;
- #endregion // FormParentWindow Class Local Variables
- #region FormParentWindow Class Constructor
- internal FormParentWindow(Form owner) : base() {
- this.owner = owner;
- this.Width = 250;
- this.Height = 250;
- BackColor = owner.BackColor;
- Text = "FormParent";
- this.Location = new Point(0, 0);
- this.Dock = DockStyle.Fill;
- MouseDown += new MouseEventHandler (OnMouseDownForm);
- MouseMove += new MouseEventHandler (OnMouseMoveForm);
- owner.TextChanged += new EventHandler(OnFormTextChanged);
- }
- #endregion // FormParentWindow Class Constructor
- #region FormParentWindow Class Protected Instance Methods
- protected override CreateParams CreateParams {
- get {
- CreateParams cp;
- cp = base.CreateParams;
- cp.Style = (int)(WindowStyles.WS_OVERLAPPEDWINDOW |
- WindowStyles.WS_VISIBLE |
- WindowStyles.WS_CLIPSIBLINGS |
- WindowStyles.WS_CLIPCHILDREN);
- cp.Width = 250;
- cp.Height = 250;
- #if later
- if (this.IsHandleCreated) {
- int x;
- int y;
- int width;
- int height;
- int cwidth;
- int cheight;
- XplatUI.GetWindowPos(this.window.Handle, out x, out y, out width, out height, out cwidth, out cheight);
- UpdateBounds(x, y, width, height);
- owner.UpdateBounds(x, y, width, height);
- }
- #endif
- return cp;
- }
- }
- protected override void OnResize(EventArgs e) {
- base.OnResize(e);
- //owner.SetBoundsCore(owner.Bounds.X, owner.Bounds.Y, ClientSize.Width, ClientSize.Height, BoundsSpecified.All);
- if (owner.menu == null) {
- owner.SetBoundsCore(0, 0, ClientSize.Width, ClientSize.Height, BoundsSpecified.All);
- } else {
- int menu_height;
- menu_height = MenuAPI.MenuBarCalcSize(DeviceContext, owner.Menu.menu_handle, ClientSize.Width);
- Invalidate (new Rectangle (0, 0, ClientSize.Width, menu_height));
- owner.SetBoundsCore(0, menu_height, ClientSize.Width, ClientSize.Height-menu_height, BoundsSpecified.All);
- }
- }
- protected override void OnPaint(PaintEventArgs pevent) {
- OnDrawMenu (pevent.Graphics);
- }
- protected override void WndProc(ref Message m) {
- switch((Msg)m.Msg) {
- case Msg.WM_CLOSE: {
- CancelEventArgs args = new CancelEventArgs();
- owner.OnClosing(args);
- if (!args.Cancel) {
- owner.OnClosed(EventArgs.Empty);
- owner.closing = true;
- base.WndProc(ref m);
- break;
- }
- break;
- }
- default: {
- base.WndProc (ref m);
- break;
- }
- }
- }
- #endregion // FormParentWindow Class Protected Instance Methods
- #region FormParentWindow Class Private Methods
- private void OnMouseDownForm (object sender, MouseEventArgs e) {
- if (owner.menu != null)
- owner.menu.OnMouseDown (owner, e);
- }
- private void OnMouseMoveForm (object sender, MouseEventArgs e) {
- if (owner.menu != null)
- owner.menu.OnMouseMove (owner, e);
- }
-
-
- private void OnDrawMenu (Graphics dc) {
- if (owner.menu != null) {
- Rectangle rect = new Rectangle (0,0, Width, 0);
- MenuAPI.DrawMenuBar (dc, owner.menu.Handle, rect);
- }
- }
- private void OnFormTextChanged(object sender, EventArgs e) {
- this.Text = ((Control)sender).Text;
- }
- #endregion // FormParentWindow Class Private Methods
- }
- #endregion // Private Classes
- #region Public Classes
- public class ControlCollection : Control.ControlCollection {
- Form form_owner;
- public ControlCollection(Form owner) : base(owner) {
- this.form_owner = owner;
- }
- public override void Add(Control value) {
- for (int i=0; i<list.Count; i++) {
- if (list[i]==value) {
- // Do we need to do anything here?
- return;
- }
- }
- list.Add(value);
- ((Form)value).owner=(Form)owner;
- }
- public override void Remove(Control value) {
- ((Form)value).owner = null;
- base.Remove (value);
- }
- }
- #endregion // Public Classes
-
- #region Public Constructor & Destructor
- public Form() {
- closing = false;
- is_modal = false;
- end_modal = false;
- dialog_result = DialogResult.None;
- start_position = FormStartPosition.WindowsDefaultLocation;
- key_preview = false;
- menu = null;
- owned_forms = new Form.ControlCollection(this);
- }
- #endregion // Public Constructor & Destructor
- #region Public Static Properties
- #endregion // Public Static Properties
- #region Public Instance Properties
- public IButtonControl AcceptButton {
- get {
- return accept_button;
- }
- set {
- accept_button = value;
- }
- }
-
- public bool AutoScale {
- get {
- return autoscale;
- }
- set {
- autoscale=value;
- }
- }
- public virtual Size AutoScaleBaseSize {
- get {
- return autoscale_base_size;
- }
- set {
- autoscale_base_size=value;
- }
- }
- public IButtonControl CancelButton {
- get {
- return cancel_button;
- }
- set {
- cancel_button = value;
- }
- }
- public DialogResult DialogResult {
- get {
- return dialog_result;
- }
- set {
- dialog_result = value;
- if (is_modal && (dialog_result != DialogResult.None)) {
- end_modal = true;
- }
- }
- }
- public bool KeyPreview {
- get {
- return key_preview;
- }
- set {
- key_preview = value;
- }
- }
- public MainMenu Menu {
- get {
- return menu;
- }
- set {
- if (menu != value) {
- if (value == null) {
- form_parent_window.Width = form_parent_window.Width; // Trigger a resize
- }
- menu = value;
- // To simulate the non-client are for menus we create a
- // new control as the 'client area' of our form. This
- // way, the origin stays 0,0 and we don't have to fiddle with
- // coordinates. The menu area is part of the original container
- if (menu != null) {
- form_parent_window.Width = form_parent_window.Width; // Trigger a resize
- }
- menu.SetForm (this);
- MenuAPI.SetMenuBarWindow (menu.Handle, this);
- }
- }
- }
- public bool Modal {
- get {
- return is_modal;
- }
- }
- public Form[] OwnedForms {
- get {
- Form[] form_list;
- form_list = new Form[owned_forms.Count];
- for (int i=0; i<owned_forms.Count; i++) {
- form_list[i] = (Form)owned_forms[i];
- }
- return form_list;
- }
- }
- public Form Owner {
- get {
- return owner;
- }
- set {
- if (owner != value) {
- if (owner != null) {
- owner.RemoveOwnedForm(this);
- }
- owner = value;
- owner.AddOwnedForm(this);
- if (owner != null) {
- XplatUI.SetTopmost(this.window.Handle, true);
- } else {
- XplatUI.SetTopmost(this.window.Handle, false);
- }
- }
- }
- }
- public FormStartPosition StartPosition {
- get {
- return start_position;
- }
- set {
- if (start_position == FormStartPosition.WindowsDefaultLocation) { // Only do this if it's not set yet
- start_position = value;
- if (form_parent_window.IsHandleCreated) {
- switch(start_position) {
- case FormStartPosition.CenterParent: {
- if (Parent!=null && Width>0 && Height>0) {
- this.Location = new Point(Parent.Size.Width/2-Width/2, Parent.Size.Height/2-Height/2);
- }
- break;
- }
- case FormStartPosition.CenterScreen: {
- if (Width>0 && Height>0) {
- Size DisplaySize;
- XplatUI.GetDisplaySize(out DisplaySize);
- this.Location = new Point(DisplaySize.Width/2-Width/2, DisplaySize.Height/2-Height/2);
- }
- break;
- }
- default: {
- break;
- }
- }
- }
- }
- }
- }
- #endregion // Public Instance Properties
- #region Protected Instance Properties
- [MonoTODO("Need to add MDI support")]
- protected override CreateParams CreateParams {
- get {
- CreateParams cp = new CreateParams();
- if (this.form_parent_window == null) {
- form_parent_window = new FormParentWindow(this);
- }
- cp.Caption = "ClientArea";
- cp.ClassName=XplatUI.DefaultClassName;
- cp.ClassStyle = 0;
- cp.ExStyle=0;
- cp.Param=0;
- cp.Parent = this.form_parent_window.window.Handle;
- cp.X = Left;
- cp.Y = Top;
- cp.Width = Width;
- cp.Height = Height;
-
- cp.Style = (int)WindowStyles.WS_CHILD;
- cp.Style |= (int)WindowStyles.WS_VISIBLE;
- cp.Style |= (int)WindowStyles.WS_CLIPSIBLINGS;
- cp.Style |= (int)WindowStyles.WS_CLIPCHILDREN;
- return cp;
- }
- }
- protected override Size DefaultSize {
- get {
- return new Size (250, 250);
- }
- }
- protected override void OnPaint (PaintEventArgs pevent)
- {
- base.OnPaint (pevent);
- }
-
- #endregion // Protected Instance Properties
- #region Public Static Methods
- #endregion // Public Static Methods
- #region Public Instance Methods
- public void AddOwnedForm(Form ownedForm) {
- owned_forms.Add(ownedForm);
- }
- public void RemoveOwnedForm(Form ownedForm) {
- owned_forms.Remove(ownedForm);
- }
- public DialogResult ShowDialog() {
- return ShowDialog(null);
- }
- public DialogResult ShowDialog(IWin32Window ownerWin32) {
- Control owner = null;
- if (ownerWin32 != null) {
- owner = Control.FromHandle(ownerWin32.Handle);
- }
- if (is_modal) {
- return DialogResult.None;
- }
- if (Visible) {
- throw new InvalidOperationException("Already visible forms cannot be displayed as a modal dialog. Set the Visible property to 'false' prior to calling Form.ShowDialog.");
- }
- if (!IsHandleCreated) {
- CreateControl();
- }
- XplatUI.SetModal(window.Handle, true);
- Show();
- is_modal = true;
- Application.ModalRun(this);
- is_modal = false;
- Hide();
- XplatUI.SetModal(window.Handle, false);
- return DialogResult;
- }
- public void Close ()
- {
- CancelEventArgs args = new CancelEventArgs ();
- OnClosing (args);
- if (!args.Cancel) {
- OnClosed (EventArgs.Empty);
- closing = true;
- return;
- }
- }
- #endregion // Public Instance Methods
- #region Protected Instance Methods
- protected override void CreateHandle() {
- base.CreateHandle ();
- }
- protected override void OnCreateControl() {
- base.OnCreateControl ();
- OnLoad(EventArgs.Empty);
- }
- protected override void OnHandleCreated(EventArgs e) {
- base.OnHandleCreated (e);
- }
- protected override void OnHandleDestroyed(EventArgs e) {
- base.OnHandleDestroyed (e);
- }
- protected override void OnResize(EventArgs e) {
- base.OnResize(e);
- }
- protected override bool ProcessCmdKey(ref Message msg, Keys keyData) {
- if (base.ProcessCmdKey (ref msg, keyData)) {
- return true;
- }
- // Give our menu a shot
- if (menu != null) {
- return menu.ProcessCmdKey(ref msg, keyData);
- }
- return false;
- }
- protected override bool ProcessDialogKey(Keys keyData) {
- if (keyData == Keys.Enter && accept_button != null) {
- accept_button.PerformClick();
- return true;
- } else if (keyData == Keys.Enter && cancel_button != null) {
- cancel_button.PerformClick();
- return true;
- }
- return base.ProcessDialogKey(keyData);
- }
- protected override bool ProcessKeyPreview(ref Message msg) {
- if (key_preview) {
- if (ProcessKeyEventArgs(ref msg)) {
- return true;
- }
- }
- return base.ProcessKeyPreview (ref msg);
- }
- protected override void WndProc(ref Message m) {
- switch((Msg)m.Msg) {
- case Msg.WM_CLOSE: {
- CancelEventArgs args = new CancelEventArgs();
- OnClosing(args);
- if (!args.Cancel) {
- OnClosed(EventArgs.Empty);
- closing = true;
- base.WndProc(ref m);
- break;
- }
- break;
- }
- #if topmost_workaround
- case Msg.WM_ACTIVATE: {
- if (this.OwnedForms.Length>0) {
- XplatUI.SetZOrder(this.OwnedForms[0].window.Handle, this.window.Handle, false, false);
- }
- break;
- }
- #endif
- default: {
- base.WndProc (ref m);
- break;
- }
- }
- }
- #endregion // Protected Instance Methods
- #region Events
- protected virtual void OnActivated(EventArgs e) {
- if (Activated != null) {
- Activated(this, e);
- }
- }
- protected virtual void OnClosed(EventArgs e) {
- if (Closed != null) {
- Closed(this, e);
- }
- }
- protected virtual void OnClosing(System.ComponentModel.CancelEventArgs e) {
- if (Closing != null) {
- Closing(this, e);
- }
- }
- protected virtual void OnDeactivate(EventArgs e) {
- if (Deactivate != null) {
- Deactivate(this, e);
- }
- }
- protected virtual void OnInputLanguageChanged(InputLanguageChangedEventArgs e) {
- if (InputLanguageChanged!=null) {
- InputLanguageChanged(this, e);
- }
- }
- protected virtual void OnInputLanguageChanging(InputLanguageChangingEventArgs e) {
- if (InputLanguageChanging!=null) {
- InputLanguageChanging(this, e);
- }
- }
- protected virtual void OnLoad(EventArgs e) {
- if (Load != null) {
- Load(this, e);
- }
- }
- protected virtual void OnMaximizedBoundsChanged(EventArgs e) {
- if (MaximizedBoundsChanged != null) {
- MaximizedBoundsChanged(this, e);
- }
- }
- protected virtual void OnMaximumSizeChanged(EventArgs e) {
- if (MaximumSizeChanged != null) {
- MaximumSizeChanged(this, e);
- }
- }
- protected virtual void OnMdiChildActivate(EventArgs e) {
- if (MdiChildActivate != null) {
- MdiChildActivate(this, e);
- }
- }
- protected virtual void OnMenuComplete(EventArgs e) {
- if (MenuComplete != null) {
- MenuComplete(this, e);
- }
- }
- protected virtual void OnMenuStart(EventArgs e) {
- if (MenuStart != null) {
- MenuStart(this, e);
- }
- }
- protected virtual void OnMinimumSizeChanged(EventArgs e) {
- if (MinimumSizeChanged != null) {
- MinimumSizeChanged(this, e);
- }
- }
- public event EventHandler Activated;
- public event EventHandler Closed;
- public event CancelEventHandler Closing;
- public event EventHandler Deactivate;
- public event InputLanguageChangedEventHandler InputLanguageChanged;
- public event InputLanguageChangingEventHandler InputLanguageChanging;
- public event EventHandler Load;
- public event EventHandler MaximizedBoundsChanged;
- public event EventHandler MaximumSizeChanged;
- public event EventHandler MdiChildActivate;
- public event EventHandler MenuComplete;
- public event EventHandler MenuStart;
- public event EventHandler MinimumSizeChanged;
- #endregion // Events
- }
- }
|