| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982 |
- // 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]
- //
- // Based on work by:
- // Aleksey Ryabchuk [email protected]
- // Alexandre Pigolkine [email protected]
- // Dennis Hayes [email protected]
- // Jaak Simm [email protected]
- // John Sohn [email protected]
- //
- // $Revision: 1.64 $
- // $Modtime: $
- // $Log: Control.cs,v $
- // Revision 1.64 2004/09/16 23:44:19 pbartok
- // - Added SendToBack and BringToFront methods
- //
- // Revision 1.63 2004/09/11 03:50:00 pbartok
- // - Added DoDragDrop() [incomplete]
- // - Properly implemented 'Visible' handling
- // - Added SetVisibleCore()
- // - Implemented FindChildAtPoint()
- // - Implemented GetContainerControl()
- // - Implemented Hide()
- //
- // Revision 1.62 2004/09/11 01:28:11 pbartok
- // - Moved methods into their appropriate #regions
- // - Reordered methods within regions alphabetically
- //
- // Revision 1.61 2004/09/11 00:56:33 pbartok
- // - Moved some internal functions into the internal region
- // - Implemented FontHeight
- // - Implemented RenderRightToLeft
- // - Implemented ResizeRedraw
- // - Implemented ShowFocusCues
- // - Implemented ShowKeyboardCues
- // - Implemented FromChildHandle
- // - Implemented FromHandle
- // - Implemented IsMnemonic
- // - Implemented ReflectMessage
- // - All public and protected Static Methods are now complete
- //
- // Revision 1.60 2004/09/10 22:54:52 pbartok
- // - Implemented remaining missing public instance properties
- // - Alphabetized some out of order properties
- //
- // Revision 1.59 2004/09/06 12:55:07 jordi
- // Caches ClientRectangle rectangle value
- //
- // Revision 1.58 2004/09/02 22:24:50 pbartok
- // - Added sanity check to creation of double buffer bitmap
- //
- // Revision 1.57 2004/09/02 20:26:21 pbartok
- // - Added missing Control.ControlAccessibleObject class
- // - Started to implement Select()ion mechanisms, still very incomplete
- //
- // Revision 1.56 2004/09/01 13:19:19 jordi
- // Init string variables with an empty object
- //
- // Revision 1.55 2004/09/01 10:20:57 jordi
- // fires OnFontChanged event
- //
- // Revision 1.54 2004/09/01 01:41:31 pbartok
- // - Added firing of BackColorChanged event
- // - Added TopLevelControl property
- // - Fixed handling of WM_ERASEBKGRND message
- //
- // Revision 1.53 2004/08/27 20:17:25 pbartok
- // - Removed unneeded stack vars
- // - First attempt to fix sizing issues when layout is suspended
- //
- // Revision 1.52 2004/08/25 19:20:47 pbartok
- // - Control now properly passes the ambient background color to child
- // controls
- //
- // Revision 1.51 2004/08/25 18:32:15 pbartok
- // - Fixed generation of MouseUp message
- //
- // Revision 1.50 2004/08/24 18:24:25 jordi
- // fire OnEnabledChanged event
- //
- // Revision 1.49 2004/08/23 21:22:53 pbartok
- // - Added InitLayout() method
- // - Added code to properly perform layout when Anchor or Dock property is
- // changed
- // - Changed 'interpretation' of ResumeLayout. MS seems to have a LAMESPEC,
- // tried to do it in a way that makes sense
- //
- // Revision 1.48 2004/08/23 19:55:08 pbartok
- // - Properly fixed Jordi's last fix
- // - Now uses Cursor's Position property instead of calling XplatUI directly
- //
- // Revision 1.47 2004/08/23 19:16:23 jordi
- // avoids null exception
- //
- // Revision 1.46 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.45 2004/08/21 22:19:30 pbartok
- // - Signature fixes
- //
- // Revision 1.44 2004/08/21 20:53:13 pbartok
- // - Updated to match new GrabWindow signature
- //
- // Revision 1.43 2004/08/21 19:32:15 pbartok
- // - Implemented Created property
- //
- // Revision 1.42 2004/08/21 19:28:22 pbartok
- // - Implemented ContainsFocus
- //
- // Revision 1.41 2004/08/21 19:26:24 pbartok
- // - Implemented CausesValidation
- //
- // Revision 1.40 2004/08/21 19:21:50 pbartok
- // - Implemented CanFocus
- // - Implemented CanSelect
- // - Implemented Capture
- //
- // Revision 1.39 2004/08/21 16:54:11 jackson
- // Implement EndInvoke
- //
- // Revision 1.38 2004/08/20 23:38:54 ravindra
- // Made RightToLeft property virtual and removed a Console.WriteLine.
- //
- // Revision 1.37 2004/08/20 20:09:24 pbartok
- // - Added call to set window background color
- //
- // Revision 1.36 2004/08/20 19:18:30 jackson
- // Implement Begininvoke
- //
- // Revision 1.35 2004/08/20 01:17:24 pbartok
- // - Added handling of WM_MOUSEHOVER
- // - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver code
- //
- // Revision 1.34 2004/08/19 23:09:22 pbartok
- // - Added Right property
- // - Added RightToLeft property
- //
- // Revision 1.33 2004/08/19 22:25:31 jordi
- // theme enhancaments
- //
- // Revision 1.32 2004/08/17 21:25:12 pbartok
- // - Drawing improvement; don't call UpdateBounds if we are not visible (or
- // have been minimized)
- //
- // Revision 1.31 2004/08/17 20:25:28 pbartok
- // - Fixed broken handling of default window sizes
- //
- // Revision 1.30 2004/08/16 21:47:11 pbartok
- // - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
- // support OnMouseEnter/Leave()
- // - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
- // exposure handling
- //
- // Revision 1.29 2004/08/13 22:15:46 pbartok
- // - Fixed Anchor default
- //
- // Revision 1.28 2004/08/13 21:43:39 pbartok
- // - Changed GetCursorPos signature
- //
- // Revision 1.27 2004/08/13 19:00:15 jordi
- // implements PointToClient (ScreenToClient)
- //
- // Revision 1.26 2004/08/13 18:52:07 pbartok
- // - Added Dispose() and destructor
- // - Fixed resizing and bounds calculation
- // - Fixed Layout
- // - Added memory savings for invisible windows
- //
- // Revision 1.25 2004/08/12 19:31:19 pbartok
- // - Fixed Anchoring bugs
- //
- // Revision 1.24 2004/08/12 16:10:42 jackson
- // Add missing properties
- //
- // Revision 1.23 2004/08/11 22:20:59 pbartok
- // - Signature fixes
- //
- // Revision 1.22 2004/08/11 19:19:44 pbartok
- // - We had SetWindowPos and MoveWindow to set window positions and size,
- // removed MoveWindow. We have GetWindowPos, so it made sense to keep
- // SetWindowPos as matching counterpart
- // - Added some X11 sanity checking
- //
- // Revision 1.21 2004/08/11 18:59:45 pbartok
- // - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
- // (It seems that SetBounds is just a front for SetBoundsCore and
- // SetBoundsCore updates the underlying window system and UpdateBounds is
- // responsible for updating the variables associated with the Control and
- // sending the events)
- // - Major cleanup of Size handling; we now have two sizes, client_size and
- // bounds. Bounds defines the window with decorations, client_size without
- // them.
- //
- // Revision 1.20 2004/08/11 15:13:32 pbartok
- // - Now properly reparents windows
- //
- // Revision 1.19 2004/08/11 14:37:11 pbartok
- // - Duh!
- //
- // Revision 1.18 2004/08/11 13:47:22 pbartok
- // - Rewrote the collection stuff. Might not be as fast now, not keeping
- // the number of children around and accessible directly, but it's more
- // straightforward
- //
- // Revision 1.17 2004/08/10 18:32:10 jordi
- // throw ontextchange event
- //
- // Revision 1.16 2004/08/10 17:43:04 pbartok
- // - Added more to the still unfinished Dock/Anchor layout code
- //
- // Revision 1.15 2004/08/10 15:08:05 jackson
- // Control will now handle the buffering code, so each control does not have to implement this.
- //
- // Revision 1.14 2004/08/09 22:11:25 pbartok
- // - Added incomplete dock layout code
- // - Added support for mouse wheel
- //
- // Revision 1.13 2004/08/09 17:25:56 jackson
- // Use new color names
- //
- // Revision 1.12 2004/08/09 15:54:51 jackson
- // Get default properties from the theme.
- //
- // Revision 1.11 2004/08/06 21:30:56 pbartok
- // - Fixed recursive loop when resizing
- // - Improved/fixed redrawing on expose messages
- //
- // Revision 1.10 2004/08/06 15:53:39 jordi
- // X11 keyboard navigation
- //
- // Revision 1.9 2004/08/04 21:14:26 pbartok
- // - Fixed Invalidation bug (calculated wrong client area)
- // - Added ClientSize setter
- //
- // Revision 1.8 2004/08/04 20:11:24 pbartok
- // - Added Invalidate handling
- //
- // Revision 1.7 2004/07/27 10:38:17 jordi
- // changes to be able to run winforms samples
- //
- // Revision 1.6 2004/07/19 19:09:42 jordi
- // label control re-written: added missing functionlity, events, and properties
- //
- // Revision 1.5 2004/07/19 16:49:23 jordi
- // fixes SetBounds logic
- //
- // Revision 1.4 2004/07/19 07:29:35 jordi
- // Call RefreshWindow only if the window has created
- //
- // Revision 1.3 2004/07/15 17:03:35 jordi
- // added basic mouse handeling events
- //
- // 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.Diagnostics;
- using System.Threading;
- using System.Runtime.InteropServices;
- namespace System.Windows.Forms
- {
- public class Control : Component, ISynchronizeInvoke, IWin32Window
- {
- #region Local Variables
- // Basic
- internal Rectangle bounds; // bounding rectangle for control (client area + decorations)
- internal object creator_thread; // thread that created the control
- internal ControlNativeWindow window; // object for native window handle
- internal string name; // for object naming
- // State
- internal bool has_focus; // true if control has focus
- internal bool is_visible; // true if control is visible
- internal bool is_entered; // is the mouse inside the control?
- internal bool is_enabled; // true if control is enabled (usable/not grayed out)
- internal bool is_selected; // true if control is selected
- internal bool is_accessible; // true if the control is visible to accessibility applications
- internal bool is_captured; // tracks if the control has captured the mouse
- internal bool is_recreating; // tracks if the handle for the control is being recreated
- internal bool causes_validation; // tracks if validation is executed on changes
- internal int tab_index; // position in tab order of siblings
- internal bool tab_stop = true; // is the control a tab stop?
- internal bool is_disposed; // has the window already been disposed?
- internal Size client_size; // size of the client area (window excluding decorations)
- internal Rectangle client_rect; // rectangle with the client area (window excluding decorations)
- internal ControlStyles control_style; // rather win32-specific, style bits for control
- internal ImeMode ime_mode = ImeMode.Inherit;
- internal bool layout_pending; // true if our parent needs to re-layout us
- internal object control_tag; // object that contains data about our control
- // Visuals
- internal Color foreground_color; // foreground color for control
- internal Color background_color; // background color for control
- internal Image background_image; // background image for control
- internal Font font; // font for control
- internal string text; // window/title text for control
- // Layout
- internal AnchorStyles anchor_style; // anchoring requirements for our control
- internal DockStyle dock_style; // docking requirements for our control (supercedes anchoring)
- internal int prev_width; // previous width of the control; required for anchoring
- internal int prev_height; // previous height of our control; required for anchoring
- internal Size prev_size;
- // to be categorized...
- static internal Hashtable controls; // All of the applications controls, in a flat list
- internal ControlCollection child_controls; // our children
- internal Control parent; // our parent control
- internal AccessibleObject accessibility_object; // object that contains accessibility information about our control
- internal BindingContext binding_context; // TODO
- internal RightToLeft right_to_left; // drawing direction for control
- internal int layout_suspended;
- internal bool double_buffering;
- private Graphics dc_mem; // Graphics context for double buffering
- private Bitmap bmp_mem; // Bitmap for double buffering control
- #endregion // Local Variables
- #region Private Classes
- // This helper class allows us to dispatch messages to Control.WndProc
- internal class ControlNativeWindow : NativeWindow {
- private Control control;
- public ControlNativeWindow(Control control) : base() {
- this.control=control;
- }
- protected override void WndProc(ref Message m) {
- control.WndProc(ref m);
- }
- }
- #endregion
-
- #region Public Classes
- public class ControlAccessibleObject : AccessibleObject {
- #region ControlAccessibleObject Local Variables
- private Control owner;
- #endregion // ControlAccessibleObject Local Variables
- #region ControlAccessibleObject Constructors
- public ControlAccessibleObject(Control ownerControl) {
- this.owner = ownerControl;
- }
- #endregion // ControlAccessibleObject Constructors
- #region ControlAccessibleObject Public Instance Properties
- public override string DefaultAction {
- get {
- return base.DefaultAction;
- }
- }
- public override string Description {
- get {
- return base.Description;
- }
- }
- public IntPtr Handle {
- get {
- return owner.Handle;
- }
- set {
- // We don't want to let them set it
- }
- }
- public override string Help {
- get {
- return base.Help;
- }
- }
- public override string KeyboardShortcut {
- get {
- return base.KeyboardShortcut;
- }
- }
- public override string Name {
- get {
- return base.Name;
- }
- set {
- base.Name = value;
- }
- }
- public Control Owner {
- get {
- return owner;
- }
- }
- public override AccessibleRole Role {
- get {
- return base.Role;
- }
- }
- #endregion // ControlAccessibleObject Public Instance Properties
- #region ControlAccessibleObject Public Instance Methods
- public override int GetHelpTopic(out string FileName) {
- return base.GetHelpTopic (out FileName);
- }
- #endregion // ControlAccessibleObject Public Instance Methods
- }
- public class ControlCollection : IList, ICollection, ICloneable, IEnumerable {
- #region ControlCollection Local Variables
- private ArrayList list;
- private Control owner;
- #endregion // ControlCollection Local Variables
- #region ControlCollection Public Constructor
- public ControlCollection(Control owner) {
- this.owner=owner;
- this.list=new ArrayList();
- }
- #endregion
- #region ControlCollection Public Instance Properties
- public int Count {
- get {
- return list.Count;
- }
- }
- public bool IsReadOnly {
- get {
- return list.IsReadOnly;
- }
- }
- public virtual Control this[int index] {
- get {
- if (index < 0 || index >= list.Count) {
- throw new ArgumentOutOfRangeException("index", index, "ControlCollection does not have that many controls");
- }
- return (Control)list[index];
- }
- }
- #endregion // ControlCollection Public Instance Properties
-
- #region ControlCollection Private Instance Methods
- public virtual 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);
- value.Parent=owner;
- }
-
- public virtual void AddRange(Control[] controls) {
- for (int i=0; i<controls.Length; i++) {
- Add(controls[i]);
- }
- }
- public virtual void Clear() {
- owner.SuspendLayout();
- list.Clear();
- owner.ResumeLayout();
- }
- public virtual bool Contains(Control value) {
- return list.Contains(value);
- }
- public void CopyTo(Array array, int index) {
- list.CopyTo(array, index);
- }
- public override bool Equals(object other) {
- if (other is ControlCollection && (((ControlCollection)other).owner==this.owner)) {
- return(true);
- } else {
- return(false);
- }
- }
- public int GetChildIndex(Control child) {
- return GetChildIndex(child, false);
- }
- public int GetChildIndex(Control child, bool throwException) {
- int index;
- index=list.IndexOf(child);
- if (index==-1 && throwException) {
- throw new ArgumentException("Not a child control", "child");
- }
- return index;
- }
- public IEnumerator GetEnumerator() {
- return list.GetEnumerator();
- }
- public override int GetHashCode() {
- return base.GetHashCode();
- }
- public int IndexOf(Control control) {
- return list.IndexOf(control);
- }
- public virtual void Remove(Control value) {
- list.Remove(value);
- }
- public void RemoveAt(int index) {
- if (index<0 || index>=list.Count) {
- throw new ArgumentOutOfRangeException("index", index, "ControlCollection does not have that many controls");
- }
- list.RemoveAt(index);
- }
- public void SetChildIndex(Control child, int newIndex) {
- int old_index;
- old_index=list.IndexOf(child);
- if (old_index==-1) {
- throw new ArgumentException("Not a child control", "child");
- }
- if (old_index==newIndex) {
- return;
- }
- RemoveAt(old_index);
- if (newIndex>list.Count) {
- list.Add(child);
- } else {
- list.Insert(newIndex, child);
- }
- }
- #endregion // ControlCollection Private Instance Methods
- #region ControlCollection Interface Properties
- object IList.this[int index] {
- get {
- if (index<0 || index>=list.Count) {
- throw new ArgumentOutOfRangeException("index", index, "ControlCollection does not have that many controls");
- }
- return this[index];
- }
- set {
- if (!(value is Control)) {
- throw new ArgumentException("Object of type Control required", "value");
- }
- list[index]=(Control)value;
- }
- }
- bool IList.IsFixedSize {
- get {
- return false;
- }
- }
- bool IList.IsReadOnly {
- get {
- return list.IsReadOnly;
- }
- }
- bool ICollection.IsSynchronized {
- get {
- return list.IsSynchronized;
- }
- }
- object ICollection.SyncRoot {
- get {
- return list.SyncRoot;
- }
- }
- #endregion // ControlCollection Interface Properties
- #region ControlCollection Interface Methods
- int IList.Add(object value) {
- if (value == null) {
- throw new ArgumentNullException("value", "Cannot add null controls");
- }
- if (!(value is Control)) {
- throw new ArgumentException("Object of type Control required", "value");
- }
- return list.Add(value);
- }
- bool IList.Contains(object value) {
- if (!(value is Control)) {
- throw new ArgumentException("Object of type Control required", "value");
- }
- return this.Contains((Control) value);
- }
- int IList.IndexOf(object value) {
- if (!(value is Control)) {
- throw new ArgumentException("Object of type Control required", "value");
- }
- return this.IndexOf((Control) value);
- }
- void IList.Insert(int index, object value) {
- if (!(value is Control)) {
- throw new ArgumentException("Object of type Control required", "value");
- }
- list.Insert(index, value);
- }
- void IList.Remove(object value) {
- if (!(value is Control)) {
- throw new ArgumentException("Object of type Control required", "value");
- }
- list.Remove(value);
- }
- void ICollection.CopyTo(Array array, int index) {
- if (list.Count>0) {
- list.CopyTo(array, index);
- }
- }
- Object ICloneable.Clone() {
- ControlCollection clone = new ControlCollection(this.owner);
- clone.list=(ArrayList)list.Clone(); // FIXME: Do we need this?
- return clone;
- }
- #endregion // ControlCollection Interface Methods
- }
- #endregion // ControlCollection Class
-
- #region Public Constructors
- public Control() {
- creator_thread = Thread.CurrentThread;
- controls = new Hashtable();
- child_controls = CreateControlsInstance();
- client_size = new Size(DefaultSize.Width, DefaultSize.Height);
- client_rect = new Rectangle(0, 0, DefaultSize.Width, DefaultSize.Height);
- XplatUI.CalculateWindowRect(IntPtr.Zero, ref client_rect, CreateParams.Style, false, out bounds);
- if ((CreateParams.Style & (int)WindowStyles.WS_CHILD) == 0) {
- bounds.X=-1;
- bounds.Y=-1;
- }
- prev_size = Size.Empty;
- anchor_style = AnchorStyles.Top | AnchorStyles.Left;
- is_visible = true;
- is_captured = false;
- is_disposed = false;
- is_enabled = true;
- is_entered = false;
- layout_pending = false;
- causes_validation = true;
- has_focus = false;
- layout_suspended = 0;
- double_buffering = true;
- parent = null;
- background_image = null;
- text = string.Empty;
- name = string.Empty;
- }
- public Control(Control parent, string text) : this() {
- Text=text;
- Parent=parent;
- }
- public Control(Control parent, string text, int left, int top, int width, int height) : this() {
- Parent=parent;
- bounds.X=left;
- bounds.Y=top;
- bounds.Width=width;
- bounds.Height=height;
- SetBoundsCore(left, top, width, height, BoundsSpecified.All);
- Text=text;
- }
- public Control(string text) : this() {
- Text=text;
- }
- public Control(string text, int left, int top, int width, int height) : this() {
- bounds.X=left;
- bounds.Y=top;
- bounds.Width=width;
- bounds.Height=height;
- SetBoundsCore(left, top, width, height, BoundsSpecified.All);
- Text=text;
- }
- protected override void Dispose(bool disposing) {
- is_disposed = true;
- if (dc_mem!=null) {
- dc_mem.Dispose();
- dc_mem=null;
- }
- if (bmp_mem!=null) {
- bmp_mem.Dispose();
- bmp_mem=null;
- }
- DestroyHandle();
- }
- #endregion // Public Constructors
- #region Internal Properties
- #endregion // Internal Properties
- #region Private & Internal Methods
- internal static IAsyncResult BeginInvokeInternal (Delegate method, object [] args) {
- AsyncMethodResult result = new AsyncMethodResult ();
- AsyncMethodData data = new AsyncMethodData ();
- data.Method = method;
- data.Args = args;
- data.Result = new WeakReference (result);
- XplatUI.SendAsyncMethod (data);
- return result;
- }
- internal Graphics DeviceContext {
- get {
- if (dc_mem==null) {
- CreateBuffers(this.Width, this.Height);
- }
- return dc_mem;
- }
- }
- internal Bitmap ImageBuffer {
- get {
- if (bmp_mem==null) {
- CreateBuffers(this.Width, this.Height);
- }
- return bmp_mem;
- }
- }
- internal void CreateBuffers (int width, int height) {
- if (double_buffering == false)
- return;
- if (dc_mem != null)
- dc_mem.Dispose ();
- if (bmp_mem != null)
- bmp_mem.Dispose ();
- if (width < 1) {
- width = 1;
- }
- if (height < 1) {
- height = 1;
- }
- bmp_mem = new Bitmap (width, height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
- dc_mem = Graphics.FromImage (bmp_mem);
- }
- internal static void SetChildColor(Control parent) {
- Control child;
- for (int i=0; i < parent.child_controls.Count; i++) {
- child=parent.child_controls[i];
- if (child.IsHandleCreated) {
- XplatUI.SetWindowBackground(child.window.Handle, child.BackColor);
- }
- if (child.child_controls.Count>0) {
- SetChildColor(child);
- }
- }
-
- }
- private bool Select(Control control) {
- Control parent;
- if (control == null) {
- return false;
- }
- parent = control.parent;
- if (((control.control_style & ControlStyles.Selectable) !=0) && (parent != null)) {
- while (parent != null) {
- if (!parent.is_visible || !parent.is_enabled) {
- return false;
- }
- }
- }
- control.is_selected = true;
- return true;
- }
- private Control FindTabStop(Control control, bool forward) {
- if (control == null) {
- return null;
- }
- return null;
- }
- internal virtual void DoDefaultAction() {
- // Only here to be overriden by our actual controls; this is needed by the accessibility class
- }
- internal static int LowOrder (int param) {
- return (param & 0xffff);
- }
- internal static int HighOrder (int param) {
- return (param >> 16);
- }
-
- internal static MouseButtons FromParamToMouseButtons (int param) {
- MouseButtons buttons = MouseButtons.None;
-
- if ((param & (int) MsgButtons.MK_LBUTTON) != 0)
- buttons |= MouseButtons.Left;
-
- if ((param & (int) MsgButtons.MK_MBUTTON) != 0)
- buttons |= MouseButtons.Middle;
-
- if ((param & (int) MsgButtons.MK_RBUTTON) != 0)
- buttons |= MouseButtons.Right;
-
- return buttons;
- }
- #endregion // Private & Internal Methods
- #region Public Static Properties
- public static Color DefaultBackColor {
- get {
- return ThemeEngine.Current.DefaultControlBackColor;
- }
- }
- public static Font DefaultFont {
- get {
- return ThemeEngine.Current.DefaultFont;
- }
- }
- public static Color DefaultForeColor {
- get {
- return ThemeEngine.Current.DefaultControlForeColor;
- }
- }
- public static Keys ModifierKeys {
- get {
- return XplatUI.State.ModifierKeys;
- }
- }
- public static MouseButtons MouseButtons {
- get {
- return XplatUI.State.MouseButtons;
- }
- }
- public static Point MousePosition {
- get {
- return Cursor.Position;
- }
- }
- #endregion // Public Static Properties
- #region Public Instance Properties
- public AccessibleObject AccessibilityObject {
- get {
- if (accessibility_object==null) {
- accessibility_object=CreateAccessibilityInstance();
- }
- return accessibility_object;
- }
- }
- public string AccessibleDefaultActionDescription {
- get {
- return AccessibilityObject.default_action;
- }
- set {
- AccessibilityObject.default_action=value;
- }
- }
- public string AccessibleDescription {
- get {
- return AccessibilityObject.description;
- }
- set {
- AccessibilityObject.description=value;
- }
- }
- public string AccessibleName {
- get {
- return AccessibilityObject.Name;
- }
- set {
- AccessibilityObject.Name=value;
- }
- }
- public AccessibleRole AccessibleRole {
- get {
- return AccessibilityObject.role;
- }
- set {
- AccessibilityObject.role=value;
- }
- }
- public virtual bool AllowDrop {
- get {
- return XplatUI.State.DropTarget;
- }
- set {
- XplatUI.State.DropTarget=value;
- }
- }
- public virtual AnchorStyles Anchor {
- get {
- return anchor_style;
- }
- set {
- anchor_style=value;
- if (parent != null) {
- parent.PerformLayout(this, "Parent");
- }
- }
- }
- public virtual Color BackColor {
- get {
- if (background_color.IsEmpty) {
- if (parent!=null) {
- return parent.BackColor;
- }
- return DefaultBackColor;
- }
- return background_color;
- }
- set {
- background_color=value;
- if (this.IsHandleCreated) {
- XplatUI.SetWindowBackground(this.window.Handle, value);
- }
- SetChildColor(this);
- OnBackColorChanged(EventArgs.Empty);
- Refresh();
- }
- }
- public virtual Image BackgroundImage {
- get {
- return background_image;
- }
- set {
- if (background_image!=value) {
- background_image=value;
- OnBackgroundImageChanged(EventArgs.Empty);
- }
- }
- }
- public virtual BindingContext BindingContext {
- get {
- throw new NotImplementedException();
- }
- set {
- throw new NotImplementedException();
- }
- }
- public int Bottom {
- get {
- return bounds.Y+bounds.Height;
- }
- }
- public Rectangle Bounds {
- get {
- return this.bounds;
- }
- set {
- SetBoundsCore(value.Left, value.Top, value.Width, value.Height, BoundsSpecified.All);
- }
- }
- public bool CanFocus {
- get {
- if (is_visible && is_enabled && GetStyle(ControlStyles.Selectable)) {
- return true;
- }
- return false;
- }
- }
- public bool CanSelect {
- get {
- Control parent;
- if (!GetStyle(ControlStyles.Selectable) || this.parent == null) {
- return false;
- }
- parent = this.parent;
- while (parent != null) {
- if (!parent.is_visible || !parent.is_enabled) {
- return false;
- }
- parent = parent.parent;
- }
- return true;
- }
- }
- public bool Capture {
- get {
- return this.is_captured;
- }
- set {
- if (this.IsHandleCreated) {
- if (value && !is_captured) {
- is_captured = true;
- XplatUI.GrabWindow(this.window.Handle, IntPtr.Zero);
- } else if (!value && is_captured) {
- XplatUI.ReleaseWindow(this.window.Handle);
- is_captured = false;
- }
- }
- }
- }
- public bool CausesValidation {
- get {
- return this.causes_validation;
- }
- set {
- if (this.causes_validation != value) {
- causes_validation = value;
- OnCausesValidationChanged(EventArgs.Empty);
- }
- }
- }
- public Rectangle ClientRectangle {
- get {
- client_rect.Width = client_size.Width;
- client_rect.Height = client_size.Height;
- return client_rect;
- }
- }
- public Size ClientSize {
- get {
- return client_size;
- }
- set {
- this.SetClientSizeCore(value.Width, value.Height);
- }
- }
- public String CompanyName {
- get {
- return "Mono Project, Novell, Inc.";
- }
- }
- public bool ContainsFocus {
- get {
- if (this.Focused) {
- return true;
- }
- for (int i=0; i < child_controls.Count; i++) {
- if (child_controls[i].Focused) {
- return true;
- }
- }
- return false;
- }
- }
- #if notdef
- public virtual ContextMenu ContextMenu {
- get {
- throw new NotImplementedException();
- }
- set {
- throw new NotImplementedException();
- }
- }
- #endif
- public ControlCollection Controls {
- get {
- return this.child_controls;
- }
- }
- public bool Created {
- get {
- if (!this.is_disposed && (this.window.Handle != IntPtr.Zero)) {
- return true;
- }
- return false;
- }
- }
- #if notdef
- public virtual Cursor Cursor {
- get {
- throw new NotImplementedException();
- }
- set {
- throw new NotImplementedException();
- }
- }
- public ControlBidingsCollection DataBindings {
- get {
- throw new NotImplementedException();
- }
- }
- #endif
- public virtual Rectangle DisplayRectangle {
- get {
- return ClientRectangle;
- }
- }
- public bool Disposing {
- get {
- return is_disposed;
- }
- }
- public virtual DockStyle Dock {
- get {
- return dock_style;
- }
- set {
- if (dock_style == value) {
- return;
- }
- dock_style = value;
- if (parent != null) {
- parent.PerformLayout(this, "Parent");
- }
- OnDockChanged(EventArgs.Empty);
- }
- }
- public bool Enabled {
- get {
- return is_enabled;
- }
- set {
- if (is_enabled == value) {
- return;
- }
- is_enabled = value;
- Refresh();
- OnEnabledChanged (EventArgs.Empty);
- }
- }
- public virtual bool Focused {
- get {
- return this.has_focus;
- }
- }
- public virtual Font Font {
- get {
- if (font != null) {
- return font;
- }
- if (Parent != null && Parent.Font != null) {
- return Parent.Font;
- }
- return DefaultFont;
- }
- set {
- if (font == value) {
- return;
- }
- font = value;
- Refresh();
- OnFontChanged (EventArgs.Empty);
- }
- }
- public virtual Color ForeColor {
- get {
- if (foreground_color.IsEmpty) {
- if (parent!=null) {
- return parent.ForeColor;
- }
- return DefaultForeColor;
- }
- return foreground_color;
- }
- set {
- foreground_color=value;
- Refresh();
- }
- }
- public IntPtr Handle { // IWin32Window
- get {
- if (!IsHandleCreated) {
- CreateHandle();
- }
- return window.Handle;
- }
- }
- public bool HasChildren {
- get {
- if (this.child_controls.Count>0) {
- return true;
- }
- return false;
- }
- }
- public int Height {
- get {
- return this.bounds.Height;
- }
- set {
- SetBoundsCore(bounds.X, bounds.Y, bounds.Width, value, BoundsSpecified.Height);
- }
- }
- public ImeMode ImeMode {
- get {
- return ime_mode;
- }
- set {
- ime_mode = value;
- }
- }
- public bool InvokeRequired { // ISynchronizeInvoke
- get {
- if (creator_thread!=Thread.CurrentThread) {
- return true;
- }
- return false;
- }
- }
- public bool IsAccessible {
- get {
- return is_accessible;
- }
- set {
- is_accessible = value;
- }
- }
- public bool IsDisposed {
- get {
- return this.is_disposed;
- }
- }
- public bool IsHandleCreated {
- get {
- if ((window!=null) && (window.Handle!=IntPtr.Zero)) {
- return true;
- }
- return false;
- }
- }
- public int Left {
- get {
- return this.bounds.X;
- }
- set {
- SetBoundsCore(value, bounds.Y, bounds.Width, bounds.Height, BoundsSpecified.X);
- }
- }
- public Point Location {
- get {
- return new Point(bounds.X, bounds.Y);
- }
- set {
- SetBoundsCore(value.X, value.Y, bounds.Width, bounds.Height, BoundsSpecified.Location);
- }
- }
- public string Name {
- get {
- return this.name;
- }
- set {
- this.name=value;
- }
- }
- public Control Parent {
- get {
- return this.parent;
- }
- set {
- if (parent!=value) {
- if (parent!=null) {
- parent.Controls.Remove(this);
- }
- parent=value;
- if (!parent.Controls.Contains(this)) {
- parent.Controls.Add(this);
- }
- XplatUI.SetParent(Handle, value.Handle);
- InitLayout();
- }
- }
- }
- public string ProductName {
- get {
- return "Novell Mono .NET Framework";
- }
- }
- public string ProductVersion {
- get {
- return "1.1.4322.573";
- }
- }
- public bool RecreatingHandle {
- get {
- return is_recreating;
- }
- }
- public Region Region {
- get {
- return new Region(this.bounds);
- }
- set {
- Graphics g;
- RectangleF r;
- g = Graphics.FromHwnd(this.window.Handle);
- r = value.GetBounds(g);
- SetBounds((int)r.X, (int)r.Y, (int)r.Width, (int)r.Height);
- g.Dispose();
- }
- }
- public int Right {
- get {
- return this.bounds.X+this.bounds.Width;
- }
- }
- public virtual RightToLeft RightToLeft {
- get {
- return right_to_left;
- }
- set {
- if (value != right_to_left) {
- right_to_left = value;
- OnRightToLeftChanged(EventArgs.Empty);
- }
- }
- }
- public override ISite Site {
- get {
- return base.Site;
- }
- set {
- base.Site = value;
- }
- }
- public Size Size {
- get {
- return new Size(Width, Height);
- }
- set {
- SetBoundsCore(bounds.X, bounds.Y, value.Width, value.Height, BoundsSpecified.Size);
- }
- }
- public int TabIndex {
- get {
- return tab_index;
- }
- set {
- tab_index = value;
- }
- }
- public bool TabStop {
- get {
- return tab_stop;
- }
- set {
- tab_stop = value;
- }
- }
- public object Tag {
- get {
- return control_tag;
- }
- set {
- control_tag = value;
- }
- }
- public virtual string Text {
- get {
- return this.text;
- }
- set {
- if (text!=value) {
- text=value;
- XplatUI.Text(Handle, text);
- // FIXME: Do we need a Refresh() here?
- OnTextChanged (EventArgs.Empty);
- }
- }
- }
- public int Top {
- get {
- return this.bounds.Y;
- }
- set {
- SetBoundsCore(bounds.X, value, bounds.Width, bounds.Height, BoundsSpecified.Y);
- }
- }
- public Control TopLevelControl {
- get {
- Control p = this;
- while (p.parent != null) {
- p = p.parent;
- }
- return p;
- }
- }
- public bool Visible {
- get {
- if (!is_visible) {
- return false;
- }
- if (parent != null) {
- return parent.Visible;
- }
- return true;
- }
- set {
- SetVisibleCore(value);
- }
- }
- public int Width {
- get {
- return this.bounds.Width;
- }
- set {
- SetBoundsCore(bounds.X, bounds.Y, value, bounds.Height, BoundsSpecified.Width);
- }
- }
- public IWindowTarget WindowTarget {
- get {
- return null;
- }
- set {
- ;
- }
- }
- #endregion // Public Instance Properties
- #region Protected Instance Properties
- protected virtual CreateParams CreateParams {
- get {
- CreateParams create_params = new CreateParams();
- create_params.Caption = Text;
- create_params.X = Left;
- create_params.Y = Top;
- create_params.Width = Width;
- create_params.Height = Height;
- create_params.ClassName = XplatUI.DefaultClassName;
- create_params.ClassStyle = 0;
- create_params.ExStyle = 0;
- create_params.Param = 0;
- if (parent!=null) {
- create_params.Parent = parent.Handle;
- }
- create_params.Style = (int)WindowStyles.WS_CHILD | (int)WindowStyles.WS_CLIPCHILDREN | (int)WindowStyles.WS_CLIPSIBLINGS;
- if (is_visible) {
- create_params.Style |= (int)WindowStyles.WS_VISIBLE;
- }
- return create_params;
- }
- }
- protected virtual ImeMode DefaultImeMode {
- get {
- return ImeMode.Inherit;
- }
- }
- protected virtual Size DefaultSize {
- get {
- return new Size(100, 23);
- }
- }
- protected int FontHeight {
- get {
- return Font.Height;
- }
- set {
- ;; // Nothing to do
- }
- }
- protected bool RenderRightToLeft {
- get {
- return (this.right_to_left == RightToLeft.Yes);
- }
- set {
- ;; // Nothing to do?
- }
- }
- protected bool ResizeRedraw {
- get {
- return GetStyle(ControlStyles.ResizeRedraw);
- }
- set {
- SetStyle(ControlStyles.ResizeRedraw, value);
- }
- }
- protected virtual bool ShowFocusCues {
- get {
- return true;
- }
- }
- protected bool ShowKeyboardCues {
- get {
- return true;
- }
- }
- #endregion // Protected Instance Properties
- #region Public Static Methods
- public static Control FromChildHandle(IntPtr handle) {
- IEnumerator control = Control.controls.GetEnumerator();
- while (control.MoveNext()) {
- if (((Control)control.Current).window.Handle == handle) {
- // Found it
- if (((Control)control.Current).Parent != null) {
- return ((Control)control.Current).Parent;
- }
- }
- }
- return null;
- }
- public static Control FromHandle(IntPtr handle) {
- IEnumerator control = Control.controls.GetEnumerator();
- while (control.MoveNext()) {
- if (((Control)control.Current).window.Handle == handle) {
- // Found it
- return ((Control)control.Current);
- }
- }
- return null;
- }
- public static bool IsMnemonic(char charCode, string text) {
- int amp;
- amp = text.IndexOf('&');
- if (amp != -1) {
- if (charCode == text.ToCharArray(amp, 1)[0]) {
- return true;
- }
- }
- return false;
- }
- #endregion
- #region Protected Static Methods
- protected static bool ReflectMessage(IntPtr hWnd, ref Message m) {
- Control c;
- c = Control.FromHandle(hWnd);
- if (c != null) {
- c.WndProc(ref m);
- return true;
- }
- return false;
- }
- #endregion
- #region Public Instance Methods
- public IAsyncResult BeginInvoke(Delegate method) {
- return BeginInvokeInternal(method, null);
- }
- public IAsyncResult BeginInvoke (Delegate method, object[] args) {
- return BeginInvokeInternal (method, args);
- }
- public void BringToFront() {
- // Need to update the child list of our parent
- if ((parent != null) && (parent.child_controls[0]!=this)) {
- if (parent.child_controls.Contains(this)) {
- parent.child_controls.SetChildIndex(this, 0);
- }
- }
- XplatUI.SetZOrder(this.window.Handle, IntPtr.Zero, true, false);
- if (parent != null) {
- parent.Refresh();
- }
- }
- public void SendToBack() {
- // Need to update the child list of our parent
- if ((parent != null) && (parent.child_controls[parent.child_controls.Count-1]!=this)) {
- if (parent.child_controls.Contains(this)) {
- parent.child_controls.SetChildIndex(this, parent.child_controls.Count);
- }
- }
- XplatUI.SetZOrder(this.window.Handle, IntPtr.Zero, false, true);
- if (parent != null) {
- parent.Refresh();
- }
- }
- public bool Contains(Control ctl) {
- Control current;
- current=ctl;
- while (current!=null) {
- if (current==ctl) {
- return true;
- }
- current=current.parent;
- }
- return false;
- }
- public void CreateControl() {
- Control child;
- CreateHandle();
- for (int i=0; i<child_controls.Count; i++) {
- child_controls[i].CreateControl();
- }
- OnCreateControl();
- }
- public Graphics CreateGraphics() {
- return Graphics.FromHwnd(this.window.Handle);
- }
- [MonoTODO("Come up with cross platform drag-drop driver interface")]
- public DragDropEffects DoDragDrop(object data, DragDropEffects allowedEffects) {
- return DragDropEffects.None;
- }
- public object EndInvoke (IAsyncResult async_result) {
- AsyncMethodResult result = (AsyncMethodResult) async_result;
- return result.EndInvoke ();
- }
- public Control GetChildAtPoint(Point pt) {
- // Microsoft's version of this function doesn't seem to work, so I can't check
- // if we only consider children or also grandchildren, etc.
- // I'm gonna say 'children only'
- for (int i=0; i<child_controls.Count; i++) {
- if (child_controls[i].Bounds.Contains(pt)) {
- return child_controls[i];
- }
- }
- return null;
- }
- public IContainerControl GetContainerControl() {
- Control current = this;
- while (current!=null) {
- if ((current.control_style & ControlStyles.ContainerControl)!=0) {
- return (IContainerControl)current;
- }
- current = current.parent;
- }
- return null;
- }
- public void Hide() {
- this.Visible = false;
- }
- public void Invalidate() {
- Invalidate(ClientRectangle, false);
- }
- public void Invalidate(bool invalidateChildren) {
- Invalidate(ClientRectangle, invalidateChildren);
- }
- public void Invalidate(System.Drawing.Rectangle rc) {
- Invalidate(rc, false);
- }
- public void Invalidate(System.Drawing.Rectangle rc, bool invalidateChildren) {
- if (!IsHandleCreated || !is_visible) {
- return;
- }
- XplatUI.Invalidate(Handle, rc, false);
- if (invalidateChildren) {
- for (int i=0; i<child_controls.Count; i++) child_controls[i].Invalidate();
- }
- }
- public void Invalidate(System.Drawing.Region region) {
- Invalidate(region, false);
- }
- [MonoTODO("Figure out if GetRegionScans is usable")]
- public void Invalidate(System.Drawing.Region region, bool invalidateChildren) {
- throw new NotImplementedException();
- // FIXME - should use the GetRegionScans function of the region to invalidate each area
- if (invalidateChildren) {
- for (int i=0; i<child_controls.Count; i++) child_controls[i].Invalidate();
- }
- }
- public object Invoke (Delegate method) {
- return Invoke(method, null);
- }
- public object Invoke (Delegate method, object[] args) {
- IAsyncResult result = BeginInvoke (method, args);
- return EndInvoke(result);
- }
- public void PerformLayout() {
- PerformLayout(null, null);
- }
- public void PerformLayout(Control affectedControl, string affectedProperty) {
- LayoutEventArgs levent = new LayoutEventArgs(affectedControl, affectedProperty);
- if (layout_suspended>0) {
- layout_pending = true;
- return;
- }
- layout_pending = false;
- // Prevent us from getting messed up
- layout_suspended++;
- // Perform all Dock and Anchor calculations
- try {
- Control child;
- AnchorStyles anchor;
- Rectangle space;
- int diff_width;
- int diff_height;
- space=this.DisplayRectangle;
- if (prev_size != Size.Empty) {
- diff_width = space.Width - prev_size.Width;
- diff_height = space.Height - prev_size.Height;
- } else {
- diff_width = 0;
- diff_height = 0;
- }
- // Deal with docking
- for (int i=0; i < child_controls.Count; i++) {
- child=child_controls[i];
- switch (child.Dock) {
- case DockStyle.None: {
- // Do nothing
- break;
- }
- case DockStyle.Left: {
- child.SetBounds(space.Left, space.Y, child.Width, space.Height);
- space.X+=child.Width;
- space.Width-=child.Width;
- break;
- }
- case DockStyle.Top: {
- child.SetBounds(space.Left, space.Y, space.Width, child.Height);
- space.Y+=child.Height;
- space.Height-=child.Height;
- break;
- }
-
- case DockStyle.Right: {
- child.SetBounds(space.Right-child.Width, space.Y, child.Width, space.Height);
- space.Width-=child.Width;
- break;
- }
- case DockStyle.Bottom: {
- child.SetBounds(space.Left, space.Bottom-child.Height, space.Width, child.Height);
- space.Height-=child.Height;
- break;
- }
- case DockStyle.Fill: {
- child.SetBounds(space.Left, space.Top, space.Width, space.Height);
- space.Width=0;
- space.Height=0;
- break;
- }
- }
- }
- space=this.DisplayRectangle;
- // Deal with anchoring
- for (int i=0; i < child_controls.Count; i++) {
- int left;
- int top;
- int width;
- int height;
- child=child_controls[i];
- anchor=child.Anchor;
- left=child.Left;
- top=child.Top;
- width=child.Width;
- height=child.Height;
- // If the control is docked we don't need to do anything
- if (child.Dock != DockStyle.None) {
- continue;
- }
- if ((anchor & AnchorStyles.Left) !=0 ) {
- if ((anchor & AnchorStyles.Right) != 0) {
- // Anchoring to left and right
- width=width+diff_width;
- } else {
- ; // nothing to do
- }
- } else if ((anchor & AnchorStyles.Right) != 0) {
- left+=diff_width;
- } else {
- left+=diff_width/2;
- }
- if ((anchor & AnchorStyles.Top) !=0 ) {
- if ((anchor & AnchorStyles.Bottom) != 0) {
- height+=diff_height;
- } else {
- ; // nothing to do
- }
- } else if ((anchor & AnchorStyles.Bottom) != 0) {
- top+=diff_height;
- } else {
- top+=diff_height/2;
- }
- // Sanity
- if (width < 0) {
- width=0;
- }
- if (height < 0) {
- height=0;
- }
- child.SetBounds(left, top, width, height);
- }
- // Let everyone know
- OnLayout(levent);
- }
- // Need to make sure we decremend layout_suspended
- finally {
- layout_suspended--;
- }
- }
- public Point PointToClient (Point p) {
- int x = p.X;
- int y = p.Y;
- XplatUI.ScreenToClient (Handle, ref x, ref y);
- return new Point (x, y);
- }
- public virtual void Refresh() {
- if (IsHandleCreated == true) {
- XplatUI.RefreshWindow(window.Handle);
- }
- }
- public void ResumeLayout() {
- ResumeLayout (true);
- }
- public void ResumeLayout(bool performLayout) {
- layout_suspended--;
-
- if (layout_suspended > 0) {
- return;
- }
- if (performLayout || layout_pending) {
- PerformLayout();
- }
- }
- public void Select() {
- Select(false, false);
- }
- [MonoTODO("Finish")]
- public bool SelectNextControl(Control ctl, bool forward, bool tabStopOnly, bool nested, bool wrap) {
- return false;
- }
- public void SetBounds(int x, int y, int width, int height) {
- SetBoundsCore(x, y, width, height, BoundsSpecified.All);
- }
- public void SetBounds(int x, int y, int width, int height, BoundsSpecified specified) {
- SetBoundsCore(x, y, width, height, specified);
- }
- public void Show() {
- if (!IsHandleCreated) {
- this.CreateHandle();
- }
- this.Visible=true;
- }
- public void SuspendLayout() {
- layout_suspended++;
- }
- #endregion // Public Instance Methods
- #region Protected Instance Methods
- protected virtual AccessibleObject CreateAccessibilityInstance() {
- return new AccessibleObject(this);
- }
- protected virtual ControlCollection CreateControlsInstance() {
- return new ControlCollection(this);
- }
- protected virtual void CreateHandle() {
- if (IsDisposed) {
- throw new ObjectDisposedException(Name);
- }
- if (IsHandleCreated) {
- return;
- }
- if (window==null) {
- window = new ControlNativeWindow(this);
- window.CreateHandle(CreateParams);
- }
- if (window.Handle!=IntPtr.Zero) {
- if (!controls.Contains(window.Handle)) {
- controls.Add(window.Handle, this);
- }
- creator_thread = Thread.CurrentThread;
- XplatUI.SetWindowBackground(window.Handle, this.BackColor);
- OnHandleCreated(EventArgs.Empty);
- }
- }
- protected virtual void DefWndProc(ref Message m) {
- window.DefWndProc(ref m);
- }
- protected virtual void DestroyHandle() {
- if (IsHandleCreated) {
- if (Handle != IntPtr.Zero) {
- controls.Remove(Handle);
- }
- if (window != null) {
- window.DestroyHandle();
- }
- }
- }
- protected virtual void InitLayout() {
- if (parent != null) {
- parent.PerformLayout(this, "parent");
- }
- }
- protected virtual bool ProcessKeyEventArgs (ref Message msg)
- {
- KeyEventArgs key_event;
- switch (msg.Msg) {
- case (int)Msg.WM_KEYDOWN: {
- key_event = new KeyEventArgs ((Keys)msg.WParam.ToInt32 ());
- OnKeyDown (key_event);
- return key_event.Handled;
- }
- case (int)Msg.WM_KEYUP: {
- key_event = new KeyEventArgs ((Keys)msg.WParam.ToInt32 ());
- OnKeyUp (key_event);
- return key_event.Handled;
- }
- default:
- break;
- }
- return false;
- }
- protected virtual bool IsInputKey (Keys keyData)
- {
- return false;
- }
- protected virtual bool ProcessDialogKey (Keys keyData)
- {
- if (parent != null)
- return Parent.ProcessDialogKey (keyData);
- return false;
- }
- protected bool GetStyle(ControlStyles flag) {
- return (control_style & flag) != 0;
- }
- protected virtual bool ProcessDialogChar(char charCode) {
- throw new NotImplementedException();
- }
- protected virtual bool ProcessMnemonic(char charCode) {
- throw new NotImplementedException();
- }
- protected void RecreateHandle() {
- IEnumerator child = child_controls.GetEnumerator();
- is_recreating=true;
- if (IsHandleCreated) {
- DestroyHandle();
- CreateHandle();
- // FIXME ZOrder?
- while (child.MoveNext()) {
- ((Control)child.Current).RecreateHandle();
- }
- } else {
- CreateHandle();
- }
- is_recreating = false;
- }
- protected virtual void ScaleCore(float dx, float dy) {
- throw new NotImplementedException();
- }
- protected virtual void Select(bool directed, bool forward) {
- int index;
- bool result;
- if (!directed) {
- // Select this control
- Select(this);
- }
- if (parent == null) {
- return;
- }
- index = parent.child_controls.IndexOf(this);
- result = false;
-
- do {
- if (forward) {
- if ((index+1) < parent.child_controls.Count) {
- index++;
- } else {
- index = 0;
- }
- } else {
- if (index>0) {
- index++;
- } else {
- index = parent.child_controls.Count-1;
- }
- }
- result = Select(parent.child_controls[index]);
- } while (!result && parent.child_controls[index] != this);
- }
- protected virtual void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
- // SetBoundsCore updates the Win32 control itself. UpdateBounds updates the controls variables and fires events, I'm guessing - pdb
- if ((specified & BoundsSpecified.X) != BoundsSpecified.X) {
- x = Left;
- }
- if ((specified & BoundsSpecified.Y) != BoundsSpecified.Y) {
- y = Top;
- }
- if ((specified & BoundsSpecified.Width)!= BoundsSpecified.Width) {
- width = Width;
- }
- if ((specified & BoundsSpecified.Height) != BoundsSpecified.Height) {
- height = Height;
- }
- if (IsHandleCreated) {
- XplatUI.SetWindowPos(Handle, x, y, width, height);
- }
- UpdateBounds(x, y, width, height);
- }
- protected virtual void SetClientSizeCore(int x, int y) {
- // Calculate the actual window size from the client size (it usually stays the same or grows)
- Rectangle ClientRect;
- Rectangle WindowRect;
- CreateParams cp;
- ClientRect = new Rectangle(0, 0, x, y);
- cp = this.CreateParams;
- if (XplatUI.CalculateWindowRect(Handle, ref ClientRect, cp.Style, false, out WindowRect)==false) {
- return;
- }
- this.client_size = new Size(x, y);
- SetBoundsCore(bounds.X, bounds.Y, WindowRect.Width, WindowRect.Height, BoundsSpecified.Size);
- }
- protected void SetStyle(ControlStyles flag, bool value) {
- if (value) {
- control_style |= flag;
- } else {
- control_style &= ~flag;
- }
- }
- protected virtual void SetVisibleCore(bool value) {
- if (value!=is_visible) {
- is_visible=value;
- XplatUI.SetVisible(Handle, value);
- OnVisibleChanged(EventArgs.Empty);
- if (!is_visible) {
- if (dc_mem != null) {
- dc_mem.Dispose();
- dc_mem = null;
- }
- if (bmp_mem != null) {
- bmp_mem.Dispose();
- bmp_mem = null;
- }
- } else {
- this.CreateBuffers(bounds.Width, bounds.Height);
- }
- // FIXME - deal with focus
- if (parent != null) {
- parent.PerformLayout(this, "visible");
- } else {
- PerformLayout(this, "visible");
- }
- }
- }
-
- protected void UpdateBounds() {
- int x;
- int y;
- int width;
- int height;
- int client_width;
- int client_height;
- if (!IsHandleCreated) {
- CreateHandle();
- }
- XplatUI.GetWindowPos(this.Handle, out x, out y, out width, out height, out client_width, out client_height);
- UpdateBounds(x, y, width, height, client_width, client_height);
- }
- protected void UpdateBounds(int x, int y, int width, int height) {
- // UpdateBounds only seems to set our sizes and fire events but not update the GUI window to match
- bool moved = false;
- bool resized = false;
- int client_x_diff = this.bounds.Width-this.client_size.Width;
- int client_y_diff = this.bounds.Height-this.client_size.Height;
- // Needed to generate required notifications
- if ((this.bounds.X!=x) || (this.bounds.Y!=y)) {
- moved=true;
- }
- if ((this.Bounds.Width!=width) || (this.Bounds.Height!=height)) {
- resized=true;
- }
- bounds.X=x;
- bounds.Y=y;
- bounds.Width=width;
- bounds.Height=height;
- // Update client rectangle as well
- if (this.layout_suspended==0) {
- prev_size.Width=client_size.Width;
- prev_size.Height=client_size.Height;
- }
- client_size.Width=width-client_x_diff;
- client_size.Height=height-client_y_diff;
- if (moved) {
- OnLocationChanged(EventArgs.Empty);
- }
- if (resized) {
- OnSizeChanged(EventArgs.Empty);
- }
- }
- protected void UpdateBounds(int x, int y, int width, int height, int clientWidth, int clientHeight) {
- UpdateBounds(x, y, width, height);
- this.client_size.Width=clientWidth;
- this.client_size.Height=clientHeight;
- }
- [MonoTODO]
- protected virtual void WndProc(ref Message m) {
- EventArgs e = new EventArgs();
- #if debug
- Console.WriteLine("Received message {0}", m);
- #endif
- switch((Msg)m.Msg) {
- #if notyet
- // Mouse handling
- case Msg.WM_LBUTTONDBLCLK: throw new NotImplementedException(); break;
- case Msg.WM_RBUTTONDOWN: throw new NotImplementedException(); break;
- case Msg.WM_RBUTTONUP: throw new NotImplementedException(); break;
- case Msg.WM_RBUTTONDBLCLK: throw new NotImplementedException(); break;
- case Msg.WM_MOUSEHOVER: throw new NotImplementedException(); break;
- case Msg.WM_MOUSELEAVE: throw new NotImplementedException(); break;
-
- // Keyboard handling
- case Msg.WM_CHAR: throw new NotImplementedException(); break;
- case Msg.WM_KEYDOWN: throw new NotImplementedException(); break;
- case Msg.WM_KEYUP: throw new NotImplementedException(); break;
- #endif
- // Window management
- case Msg.WM_WINDOWPOSCHANGED: {
- if (XplatUI.IsVisible(m.HWnd)) {
- UpdateBounds();
- }
- DefWndProc(ref m);
- break;
- }
- case Msg.WM_PAINT: {
- Rectangle rect;
- PaintEventArgs paint_event;
- paint_event = XplatUI.PaintEventStart(Handle);
- OnPaint(paint_event);
- XplatUI.PaintEventEnd(Handle);
- DefWndProc(ref m);
- break;
- }
-
- case Msg.WM_ERASEBKGND:{
- if (GetStyle (ControlStyles.UserPaint)){
- if (!GetStyle(ControlStyles.AllPaintingInWmPaint)) {
- PaintEventArgs eraseEventArgs = new PaintEventArgs (Graphics.FromHdc (m.WParam), new Rectangle (new Point (0,0),Size));
- OnPaintBackground (eraseEventArgs);
- }
- m.Result = (IntPtr)1;
- }
- else {
- #if notdef
- SolidBrush sb = new SolidBrush(this.BackColor);
- this.DeviceContext.FillRectangle(sb, this.ClientRectangle);
- sb.Dispose();
- #endif
- m.Result = IntPtr.Zero;
- DefWndProc (ref m);
- }
-
- break;
- }
-
- case Msg.WM_LBUTTONUP: {
- int clicks = 1;
-
- OnMouseUp (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()) | MouseButtons.Left,
- clicks,
- LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()),
- 0));
- break;
- }
-
- case Msg.WM_LBUTTONDOWN: {
- int clicks = 1;
-
- OnMouseDown (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()),
- clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()),
- 0));
-
- break;
- }
- case Msg.WM_MOUSEWHEEL: {
- int clicks = 1;
- OnMouseWheel (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()),
- clicks, LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()),
- HighOrder(m.WParam.ToInt32())));
- break;
- }
-
- case Msg.WM_MOUSEMOVE: {
- int clicks = 1;
- OnMouseMove (new MouseEventArgs (FromParamToMouseButtons ((int) m.WParam.ToInt32()),
- clicks,
- LowOrder ((int) m.LParam.ToInt32 ()), HighOrder ((int) m.LParam.ToInt32 ()),
- 0));
- break;
- }
- case Msg.WM_MOUSE_ENTER: {
- if (is_entered) {
- return;
- }
- is_entered = true;
- OnMouseEnter(EventArgs.Empty);
- break;
- }
- case Msg.WM_MOUSE_LEAVE: {
- is_entered=false;
- OnMouseLeave(EventArgs.Empty);
- break;
- }
- case Msg.WM_MOUSEHOVER: {
- OnMouseHover(EventArgs.Empty);
- break;
- }
-
- case Msg.WM_SIZE: {
- if (GetStyle(ControlStyles.ResizeRedraw)) {
- Invalidate();
- }
- DefWndProc(ref m);
- break;
- }
- case Msg.WM_KEYDOWN: {
- if (!ProcessKeyEventArgs (ref m))
- DefWndProc (ref m);
- break;
- }
- case Msg.WM_KEYUP: {
- if (!ProcessKeyEventArgs (ref m))
- DefWndProc (ref m);
- break;
- }
-
- #if notyet
- case Msg.WM_WINDOWPOSCHANGED: throw new NotImplementedException(); break;
- case Msg.WM_SYSCOLORCHANGE: throw new NotImplementedException(); break;
-
- #endif
- default:
- DefWndProc(ref m);
- break;
- }
-
-
-
- }
- #endregion // Public Instance Methods
- #region OnXXX methods
- protected virtual void OnBackColorChanged(EventArgs e) {
- if (BackColorChanged!=null) BackColorChanged(this, e);
- for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBackColorChanged(e);
- }
- protected virtual void OnBackgroundImageChanged(EventArgs e) {
- if (BackgroundImageChanged!=null) BackgroundImageChanged(this, e);
- for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBackgroundImageChanged(e);
- }
- protected virtual void OnBindingContextChanged(EventArgs e) {
- if (BindingContextChanged!=null) BindingContextChanged(this, e);
- for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentBindingContextChanged(e);
- }
- protected virtual void OnCausesValidationChanged(EventArgs e) {
- if (CausesValidationChanged!=null) CausesValidationChanged(this, e);
- }
- protected virtual void OnChangeUICues(UICuesEventArgs e) {
- if (CausesValidationChanged!=null) CausesValidationChanged(this, e);
- }
- protected virtual void OnClick(EventArgs e) {
- if (Click!=null) Click(this, e);
- }
- protected virtual void OnContextMenuChanged(EventArgs e) {
- if (ContextMenuChanged!=null) ContextMenuChanged(this, e);
- }
- protected virtual void OnControlAdded(ControlEventArgs e) {
- if (ControlAdded!=null) ControlAdded(this, e);
- }
- protected virtual void OnControlRemoved(ControlEventArgs e) {
- if (ControlRemoved!=null) ControlRemoved(this, e);
- }
- protected virtual void OnCreateControl() {
- // Override me!
- }
- protected virtual void OnCursorChanged(EventArgs e) {
- if (CursorChanged!=null) CursorChanged(this, e);
- }
- protected virtual void OnDockChanged(EventArgs e) {
- if (DockChanged!=null) DockChanged(this, e);
- }
- protected virtual void OnDoubleClick(EventArgs e) {
- if (DoubleClick!=null) DoubleClick(this, e);
- }
- protected virtual void OnDragDrop(DragEventArgs drgevent) {
- if (DragDrop!=null) DragDrop(this, drgevent);
- }
- protected virtual void OnDragEnter(DragEventArgs drgevent) {
- if (DragEnter!=null) DragEnter(this, drgevent);
- }
- protected virtual void OnDragLeave(EventArgs e) {
- if (DragLeave!=null) DragLeave(this, e);
- }
- protected virtual void OnDragOver(DragEventArgs drgevent) {
- if (DragOver!=null) DragOver(this, drgevent);
- }
- protected virtual void OnEnabledChanged(EventArgs e) {
- if (EnabledChanged!=null) EnabledChanged(this, e);
- for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentEnabledChanged(e);
- }
- protected virtual void OnEnter(EventArgs e) {
- if (Enter!=null) Enter(this, e);
- }
- protected virtual void OnFontChanged(EventArgs e) {
- if (FontChanged!=null) FontChanged(this, e);
- }
- protected virtual void OnForeColorChanged(EventArgs e) {
- if (ForeColorChanged!=null) ForeColorChanged(this, e);
- for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentForeColorChanged(e);
- }
- protected virtual void OnGiveFeedback(GiveFeedbackEventArgs gfbevent) {
- if (GiveFeedback!=null) GiveFeedback(this, gfbevent);
- }
-
- protected virtual void OnGotFocus(EventArgs e) {
- if (GotFocus!=null) GotFocus(this, e);
- }
- protected virtual void OnHandleCreated(EventArgs e) {
- if (HandleCreated!=null) HandleCreated(this, e);
- }
- protected virtual void OnHandleDestroyed(EventArgs e) {
- if (HandleDestroyed!=null) HandleDestroyed(this, e);
- }
- protected virtual void OnHelpRequested(HelpEventArgs hevent) {
- if (HelpRequested!=null) HelpRequested(this, hevent);
- }
- protected virtual void OnImeModeChanged(EventArgs e) {
- if (ImeModeChanged!=null) ImeModeChanged(this, e);
- }
- protected virtual void OnInvalidated(InvalidateEventArgs e) {
- if (Invalidated!=null) Invalidated(this, e);
- }
- protected virtual void OnKeyDown(KeyEventArgs e) {
- if (KeyDown!=null) KeyDown(this, e);
- }
- protected virtual void OnKeyUp(KeyEventArgs e) {
- if (KeyUp!=null) KeyUp(this, e);
- }
- protected virtual void OnLayout(LayoutEventArgs levent) {
- if (Layout!=null) Layout(this, levent);
- }
- protected virtual void OnLeave(EventArgs e) {
- if (Leave!=null) Leave(this, e);
- }
- protected virtual void OnLocationChanged(EventArgs e) {
- if (LocationChanged!=null) LocationChanged(this, e);
- }
- protected virtual void OnLostFocus(EventArgs e) {
- if (LostFocus!=null) LostFocus(this, e);
- }
- protected virtual void OnMouseDown(MouseEventArgs e) {
- if (MouseDown!=null) MouseDown(this, e);
- }
- protected virtual void OnMouseEnter(EventArgs e) {
- if (MouseEnter!=null) MouseEnter(this, e);
- }
- protected virtual void OnMouseHover(EventArgs e) {
- if (MouseHover!=null) MouseHover(this, e);
- }
- protected virtual void OnMouseLeave(EventArgs e) {
- if (MouseLeave!=null) MouseLeave(this, e);
- }
- protected virtual void OnMouseMove(MouseEventArgs e) {
- if (MouseMove!=null) MouseMove(this, e);
- }
- protected virtual void OnMouseUp(MouseEventArgs e) {
- if (MouseUp!=null) MouseUp(this, e);
- }
- protected virtual void OnMouseWheel(MouseEventArgs e) {
- if (MouseWheel!=null) MouseWheel(this, e);
- }
- protected virtual void OnMove(EventArgs e) {
- if (Move!=null) Move(this, e);
- }
- protected virtual void OnNotifyMessage(Message m) {
- // Override me!
- }
- protected virtual void OnPaint(PaintEventArgs e) {
- if (Paint!=null) Paint(this, e);
- }
- protected virtual void OnPaintBackground(PaintEventArgs pevent) {
- // Override me!
- }
- protected virtual void OnParentBackColorChanged(EventArgs e) {
- if (background_color.IsEmpty && background_image==null) {
- Invalidate();
- OnBackColorChanged(e);
- }
- }
- protected virtual void OnParentBackgroundImageChanged(EventArgs e) {
- if (background_color.IsEmpty && background_image==null) {
- Invalidate();
- OnBackgroundImageChanged(e);
- }
- }
- protected virtual void OnParentBindingContextChanged(EventArgs e) {
- if (binding_context==null) {
- binding_context=Parent.binding_context;
- OnBindingContextChanged(e);
- }
- }
- protected virtual void OnParentChanged(EventArgs e) {
- if (ParentChanged!=null) ParentChanged(this, e);
- }
- protected virtual void OnParentEnabledChanged(EventArgs e) {
- if ((is_enabled && !Parent.is_enabled) || (!is_enabled && Parent.is_enabled)) {
- is_enabled=false;
- Invalidate();
- EnabledChanged(this, e);
- }
- }
- protected virtual void OnParentFontChanged(EventArgs e) {
- if (font==null) {
- Invalidate();
- OnFontChanged(e);
- }
- }
- protected virtual void OnParentForeColorChanged(EventArgs e) {
- if (foreground_color.IsEmpty) {
- Invalidate();
- OnForeColorChanged(e);
- }
- }
- protected virtual void OnParentRightToLeftChanged(EventArgs e) {
- if (right_to_left==RightToLeft.Inherit) {
- Invalidate();
- OnRightToLeftChanged(e);
- }
- }
- protected virtual void OnParentVisibleChanged(EventArgs e) {
- if (is_visible!=Parent.is_visible) {
- is_visible=false;
- Invalidate();
- OnVisibleChanged(e);
- }
- }
- protected virtual void OnQueryContinueDrag(QueryContinueDragEventArgs e) {
- if (QueryContinueDrag!=null) QueryContinueDrag(this, e);
- }
- protected virtual void OnResize(EventArgs e) {
- if (Resize!=null) Resize(this, e);
- PerformLayout(this, "bounds");
- if (parent != null) {
- parent.PerformLayout();
- }
- }
- protected virtual void OnRightToLeftChanged(EventArgs e) {
- if (RightToLeftChanged!=null) RightToLeftChanged(this, e);
- for (int i=0; i<child_controls.Count; i++) child_controls[i].OnParentRightToLeftChanged(e);
- }
- protected virtual void OnSizeChanged(EventArgs e) {
- OnResize(e);
- if (SizeChanged!=null) SizeChanged(this, e);
- }
- protected virtual void OnStyleChanged(EventArgs e) {
- if (StyleChanged!=null) StyleChanged(this, e);
- }
- protected virtual void OnSystemColorsChanged(EventArgs e) {
- if (SystemColorsChanged!=null) SystemColorsChanged(this, e);
- }
- protected virtual void OnTabIndexChanged(EventArgs e) {
- if (TabIndexChanged!=null) TabIndexChanged(this, e);
- }
- protected virtual void OnTabStopChanged(EventArgs e) {
- if (TabStopChanged!=null) TabStopChanged(this, e);
- }
- protected virtual void OnTextChanged(EventArgs e) {
- if (TextChanged!=null) TextChanged(this, e);
- }
- protected virtual void OnValidated(EventArgs e) {
- if (Validated!=null) Validated(this, e);
- }
- protected virtual void OnValidating(System.ComponentModel.CancelEventArgs e) {
- if (Validating!=null) Validating(this, e);
- }
- protected virtual void OnVisibleChanged(EventArgs e) {
- if (!is_visible) {
- if (dc_mem!=null) {
- dc_mem.Dispose ();
- bmp_mem=null;
- }
- if (bmp_mem!=null) {
- bmp_mem.Dispose();
- bmp_mem=null;
- }
- } else {
- if (!is_disposed) {
- if (!this.IsHandleCreated) {
- this.CreateHandle();
- }
- PerformLayout();
- }
- }
-
- if (VisibleChanged!=null) VisibleChanged(this, e);
- // We need to tell our kids
- for (int i=0; i<child_controls.Count; i++) {
- child_controls[i].OnParentVisibleChanged(e);
- }
- }
- #endregion // OnXXX methods
- #region Events
- public event EventHandler BackColorChanged;
- public event EventHandler BackgroundImageChanged;
- public event EventHandler BindingContextChanged;
- public event EventHandler CausesValidationChanged;
- public event UICuesEventHandler ChangeUICues;
- public event EventHandler Click;
- public event EventHandler ContextMenuChanged;
- public event ControlEventHandler ControlAdded;
- public event ControlEventHandler ControlRemoved;
- public event EventHandler CursorChanged;
- public event EventHandler DockChanged;
- public event EventHandler DoubleClick;
- public event DragEventHandler DragDrop;
- public event DragEventHandler DragEnter;
- public event EventHandler DragLeave;
- public event DragEventHandler DragOver;
- public event EventHandler EnabledChanged;
- public event EventHandler Enter;
- public event EventHandler FontChanged;
- public event EventHandler ForeColorChanged;
- public event GiveFeedbackEventHandler GiveFeedback;
- public event EventHandler GotFocus;
- public event EventHandler HandleCreated;
- public event EventHandler HandleDestroyed;
- public event HelpEventHandler HelpRequested;
- public event EventHandler ImeModeChanged;
- public event InvalidateEventHandler Invalidated;
- public event KeyEventHandler KeyDown;
- public event KeyPressEventHandler KeyPress;
- public event KeyEventHandler KeyUp;
- public event LayoutEventHandler Layout;
- public event EventHandler Leave;
- public event EventHandler LocationChanged;
- public event EventHandler LostFocus;
- public event MouseEventHandler MouseDown;
- public event EventHandler MouseEnter;
- public event EventHandler MouseHover;
- public event EventHandler MouseLeave;
- public event MouseEventHandler MouseMove;
- public event MouseEventHandler MouseUp;
- public event MouseEventHandler MouseWheel;
- public event EventHandler Move;
- public event PaintEventHandler Paint;
- public event EventHandler ParentChanged;
- public event QueryAccessibilityHelpEventHandler QueryAccessibilityHelp;
- public event QueryContinueDragEventHandler QueryContinueDrag;
- public event EventHandler Resize;
- public event EventHandler RightToLeftChanged;
- public event EventHandler SizeChanged;
- public event EventHandler StyleChanged;
- public event EventHandler SystemColorsChanged;
- public event EventHandler TabIndexChanged;
- public event EventHandler TabStopChanged;
- public event EventHandler TextChanged;
- public event EventHandler Validated;
- public event CancelEventHandler Validating;
- public event EventHandler VisibleChanged;
- #endregion // Events
- }
- }
|