| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385 |
- // 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-2005 Novell, Inc.
- //
- // Authors:
- // Jordi Mas i Hernandez, [email protected]
- //
- // COMPLETE
- using System;
- using System.Drawing;
- using System.Collections;
- using System.ComponentModel;
- using System.ComponentModel.Design;
- using System.ComponentModel.Design.Serialization;
- using System.Reflection;
- using System.Runtime.InteropServices;
- namespace System.Windows.Forms
- {
- [DefaultProperty("Items")]
- [DefaultEvent("SelectedIndexChanged")]
- [Designer ("System.Windows.Forms.Design.ListBoxDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
- public class ListBox : ListControl
- {
- public const int DefaultItemHeight = 13;
- public const int NoMatches = -1;
-
- internal class ListBoxInfo
- {
- internal int item_height; /* Item's height */
- internal int top_item; /* First item that we show the in the current page */
- internal int last_item; /* Last visible item */
- internal int page_size; /* Number of listbox items per page. In MultiColumn listbox indicates items per column */
- internal Rectangle textdrawing_rect; /* Displayable Client Rectangle minus the scrollbars and with IntegralHeight calculated*/
- internal bool show_verticalsb; /* Is Vertical scrollbar show it? */
- internal bool show_horizontalsb; /* Is Horizontal scrollbar show it? */
- internal Rectangle client_rect; /* Client Rectangle. Usually = ClientRectangle except when IntegralHeight has been applied*/
- internal int max_itemwidth; /* Maxium item width within the listbox */
- public ListBoxInfo ()
- {
- last_item = 0;
- item_height = 0;
- top_item = 0;
- page_size = 0;
- max_itemwidth = 0;
- show_verticalsb = false;
- show_horizontalsb = false;
- }
- }
- internal class ListBoxItem
- {
- internal int Index;
- internal bool Selected;
- internal int ItemHeight; /* Only used for OwnerDrawVariable */
- internal CheckState State;
- public ListBoxItem (int index)
- {
- Index = index;
- Selected = false;
- ItemHeight = -1;
- State = CheckState.Unchecked;
- }
-
- public void CopyState (ListBoxItem src)
- {
- Selected = src.Selected;
- ItemHeight = src.ItemHeight;
- State = src.State;
- }
- }
- internal enum ItemNavigation
- {
- First,
- Last,
- Next,
- Previous,
- NextPage,
- PreviousPage,
- PreviousColumn,
- NextColumn
- }
-
- internal enum UpdateOperation
- {
- AddItems,
- DeleteItems,
- AllItems
- }
- private int column_width;
- private DrawMode draw_mode;
- private int horizontal_extent;
- private bool horizontal_scrollbar;
- private bool integral_height;
- private bool multicolumn;
- private bool scroll_always_visible;
- private int selected_index;
- private SelectedIndexCollection selected_indices;
- private SelectedObjectCollection selected_items;
- private SelectionMode selection_mode;
- private bool sorted;
- private bool use_tabstops;
- private int column_width_internal;
- private VScrollBar vscrollbar_ctrl;
- private HScrollBar hscrollbar_ctrl;
- private bool suspend_ctrlupdate;
- private bool ctrl_pressed;
- private bool shift_pressed;
- private bool has_focus;
- private bool use_item_height;
-
- internal int focused_item;
- internal ListBoxInfo listbox_info;
- internal ObjectCollection items;
- public ListBox ()
- {
- border_style = BorderStyle.Fixed3D;
- draw_mode = DrawMode.Normal;
- horizontal_extent = 0;
- horizontal_scrollbar = false;
- integral_height = true;
- multicolumn = false;
- scroll_always_visible = false;
- selected_index = -1;
- focused_item = -1;
- selection_mode = SelectionMode.One;
- sorted = false;
- use_tabstops = true;
- BackColor = ThemeEngine.Current.ColorWindow;
- ColumnWidth = 0;
- suspend_ctrlupdate = false;
- ctrl_pressed = false;
- shift_pressed = false;
- has_focus = false;
- use_item_height = false;
- items = new ObjectCollection (this);
- selected_indices = new SelectedIndexCollection (this);
- selected_items = new SelectedObjectCollection (this);
- listbox_info = new ListBoxInfo ();
- listbox_info.item_height = FontHeight;
- /* Vertical scrollbar */
- vscrollbar_ctrl = new VScrollBar ();
- vscrollbar_ctrl.Minimum = 0;
- vscrollbar_ctrl.SmallChange = 1;
- vscrollbar_ctrl.LargeChange = 1;
- vscrollbar_ctrl.Maximum = 0;
- vscrollbar_ctrl.ValueChanged += new EventHandler (VerticalScrollEvent);
- vscrollbar_ctrl.Visible = false;
- /* Horizontal scrollbar */
- hscrollbar_ctrl = new HScrollBar ();
- hscrollbar_ctrl.Minimum = 0;
- hscrollbar_ctrl.SmallChange = 1;
- hscrollbar_ctrl.LargeChange = 1;
- hscrollbar_ctrl.Maximum = 0;
- hscrollbar_ctrl.Visible = false;
- hscrollbar_ctrl.ValueChanged += new EventHandler (HorizontalScrollEvent);
- /* Events */
- MouseDown += new MouseEventHandler (OnMouseDownLB);
- KeyDown += new KeyEventHandler (OnKeyDownLB);
- KeyUp += new KeyEventHandler (OnKeyUpLB);
- GotFocus += new EventHandler (OnGotFocus);
- LostFocus += new EventHandler (OnLostFocus);
-
- SetStyle (ControlStyles.UserPaint, false);
- }
- #region Events
- [Browsable (false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- public new event EventHandler BackgroundImageChanged;
- [Browsable (false)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public new event EventHandler Click;
- public event DrawItemEventHandler DrawItem;
- public event MeasureItemEventHandler MeasureItem;
- [Browsable (false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- public new event PaintEventHandler Paint;
- public event EventHandler SelectedIndexChanged;
- [Browsable (false)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public new event EventHandler TextChanged;
- #endregion // Events
- #region Public Properties
- public override Color BackColor {
- get { return base.BackColor; }
- set {
- if (base.BackColor == value)
- return;
- base.BackColor = value;
- base.Refresh (); // Careful. Calling the base method is not the same that calling
- } // the overriden one that refresh also all the items
- }
- [Browsable (false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- public override Image BackgroundImage {
- get { return base.BackgroundImage; }
- set {
- if (base.BackgroundImage == value)
- return;
- base.BackgroundImage = value;
- if (BackgroundImageChanged != null)
- BackgroundImageChanged (this, EventArgs.Empty);
- base.Refresh ();
- }
- }
- [DefaultValue (BorderStyle.Fixed3D)]
- [DispId(-504)]
- public BorderStyle BorderStyle {
- get { return InternalBorderStyle; }
- set { InternalBorderStyle = value; }
- }
- [DefaultValue (0)]
- [Localizable (true)]
- public int ColumnWidth {
- get { return column_width; }
- set {
- if (value < 0)
- throw new ArgumentException ("A value less than zero is assigned to the property.");
- column_width = value;
- if (value == 0)
- ColumnWidthInternal = 120;
- else
- ColumnWidthInternal = value;
- base.Refresh ();
- }
- }
- protected override CreateParams CreateParams {
- get { return base.CreateParams;}
- }
- protected override Size DefaultSize {
- get { return new Size (120, 96); }
- }
- [RefreshProperties(RefreshProperties.Repaint)]
- [DefaultValue (DrawMode.Normal)]
- public virtual DrawMode DrawMode {
- get { return draw_mode; }
- set {
- if (!Enum.IsDefined (typeof (DrawMode), value))
- throw new InvalidEnumArgumentException (string.Format("Enum argument value '{0}' is not valid for DrawMode", value));
-
- if (value == DrawMode.OwnerDrawVariable && multicolumn == true)
- throw new ArgumentException ("Cannot have variable height and multicolumn");
- if (draw_mode == value)
- return;
- draw_mode = value;
- base.Refresh ();
- }
- }
- public override Color ForeColor {
- get { return base.ForeColor; }
- set {
- if (base.ForeColor == value)
- return;
- base.ForeColor = value;
- base.Refresh ();
- }
- }
- [DefaultValue (0)]
- [Localizable (true)]
- public int HorizontalExtent {
- get { return horizontal_extent; }
- set {
- if (horizontal_extent == value)
- return;
- horizontal_extent = value;
- base.Refresh ();
- }
- }
- [DefaultValue (false)]
- [Localizable (true)]
- public bool HorizontalScrollbar {
- get { return horizontal_scrollbar; }
- set {
- if (horizontal_scrollbar == value)
- return;
- horizontal_scrollbar = value;
- UpdateShowHorizontalScrollBar ();
- base.Refresh ();
- }
- }
- [DefaultValue (true)]
- [Localizable (true)]
- [RefreshProperties(RefreshProperties.Repaint)]
- public bool IntegralHeight {
- get { return integral_height; }
- set {
- if (integral_height == value)
- return;
- integral_height = value;
- CalcClientArea ();
- }
- }
- [DefaultValue (13)]
- [Localizable (true)]
- [RefreshProperties(RefreshProperties.Repaint)]
- public virtual int ItemHeight {
- get {
- if (draw_mode == DrawMode.Normal)
- return FontHeight;
- return listbox_info.item_height;
- }
- set {
- if (value > 255)
- throw new ArgumentOutOfRangeException ("The ItemHeight property was set beyond 255 pixels");
- if (listbox_info.item_height == value)
- return;
- listbox_info.item_height = value;
- use_item_height = true;
- CalcClientArea ();
- }
- }
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- [Localizable (true)]
- [Editor ("System.Windows.Forms.Design.ListControlStringCollectionEditor, " + Consts.AssemblySystem_Design, typeof (System.Drawing.Design.UITypeEditor))]
- public ObjectCollection Items {
- get { return items; }
- }
- [DefaultValue (false)]
- public bool MultiColumn {
- get { return multicolumn; }
- set {
- if (multicolumn == value)
- return;
- if (value == true && DrawMode == DrawMode.OwnerDrawVariable)
- throw new ArgumentException ("A multicolumn ListBox cannot have a variable-sized height.");
-
- multicolumn = value;
-
- if (IsHandleCreated) {
- RellocateScrollBars ();
- CalcClientArea ();
- UpdateItemInfo (UpdateOperation.AllItems, 0, 0);
- }
- }
- }
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public int PreferredHeight {
- get {
- int itemsHeight = 0;
- if (draw_mode == DrawMode.Normal)
- itemsHeight = FontHeight * items.Count;
- else if (draw_mode == DrawMode.OwnerDrawFixed)
- itemsHeight = ItemHeight * items.Count;
- else if (draw_mode == DrawMode.OwnerDrawVariable) {
- for (int i = 0; i < items.Count; i++)
- itemsHeight += items.GetListBoxItem (i).ItemHeight;
- }
-
- return itemsHeight;
- }
- }
- public override RightToLeft RightToLeft {
- get { return base.RightToLeft; }
- set {
- base.RightToLeft = value;
- base.Refresh ();
- }
- }
- // Only affects the Vertical ScrollBar
- [DefaultValue (false)]
- [Localizable (true)]
- public bool ScrollAlwaysVisible {
- get { return scroll_always_visible; }
- set {
- if (scroll_always_visible == value)
- return;
- scroll_always_visible = value;
- UpdateShowVerticalScrollBar ();
- UpdateShowHorizontalScrollBar ();
- }
- }
- [Bindable(true)]
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public override int SelectedIndex {
- get { return selected_index;}
- set {
- if (value < -1 || value >= Items.Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- if (SelectionMode == SelectionMode.None)
- throw new ArgumentException ("cannot call this method if SelectionMode is SelectionMode.None");
- if (selected_index == value)
- return;
- if (SelectionMode == SelectionMode.One)
- UnSelectItem (selected_index, true);
- SelectItem (value);
- selected_index = value;
- focused_item = value;
- OnSelectedIndexChanged (new EventArgs ());
- OnSelectedValueChanged (new EventArgs ());
- }
- }
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public SelectedIndexCollection SelectedIndices {
- get { return selected_indices; }
- }
- [Bindable(true)]
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public object SelectedItem {
- get {
- if (SelectedItems.Count > 0)
- return SelectedItems[0];
- else
- return null;
- }
- set {
-
- int index = Items.IndexOf (value);
- if (index == -1)
- return;
-
- if (index != SelectedIndex) {
- SelectedIndex = index;
- }
- }
- }
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public SelectedObjectCollection SelectedItems {
- get {return selected_items;}
- }
- [DefaultValue (SelectionMode.One)]
- public virtual SelectionMode SelectionMode {
- get { return selection_mode; }
- set {
- if (!Enum.IsDefined (typeof (SelectionMode), value))
- throw new InvalidEnumArgumentException (string.Format("Enum argument value '{0}' is not valid for SelectionMode", value));
- if (selection_mode == value)
- return;
-
- selection_mode = value;
-
- if (SelectedItems.Count > 0) {
- switch (selection_mode) {
- case SelectionMode.None:
- ClearSelected ();
- break;
- case SelectionMode.One: {
- if (SelectedItems.Count > 1) { // All except one
- int cnt = selected_indices.Count - 1;
- for (int i = 0; i < cnt; i++) {
- UnSelectItem (i, true);
- }
- }
- }
- break;
- default:
- break;
- }
- }
- }
- }
- [DefaultValue (false)]
- public bool Sorted {
- get { return sorted; }
- set {
- if (sorted == value)
- return;
- sorted = value;
- Sort ();
- }
- }
- [Bindable (false)]
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public override string Text {
- get {
- if (SelectionMode != SelectionMode.None && SelectedIndex != -1)
- return GetItemText (SelectedItem);
- return base.Text;
- }
- set {
- base.Text = value;
- if (SelectionMode == SelectionMode.None)
- return;
- int index;
- index = FindStringExact (value);
- if (index == -1)
- return;
- SelectedIndex = index;
- }
- }
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public int TopIndex {
- get { return LBoxInfo.top_item; }
- set {
- if (value == LBoxInfo.top_item)
- return;
- if (value < 0 || value >= Items.Count)
- return;
- LBoxInfo.top_item = value;
- UpdatedTopItem ();
- base.Refresh ();
- }
- }
- [DefaultValue (true)]
- public bool UseTabStops {
- get { return use_tabstops; }
- set {
- if (use_tabstops == value)
- return;
- use_tabstops = value;
- base.Refresh ();
- }
- }
- #endregion Public Properties
- #region Private Properties
- internal ListBoxInfo LBoxInfo {
- get { return listbox_info; }
- }
- private int ColumnWidthInternal {
- get { return column_width_internal; }
- set { column_width_internal = value; }
- }
- #endregion Private Properties
- #region Public Methods
- protected virtual void AddItemsCore (object[] value)
- {
- Items.AddRange (value);
- }
- public void BeginUpdate ()
- {
- suspend_ctrlupdate = true;
- }
- public void ClearSelected ()
- {
- foreach (int i in selected_indices) {
- UnSelectItem (i, false);
- }
- selected_indices.ClearIndices ();
- selected_items.ClearObjects ();
- }
- protected virtual ObjectCollection CreateItemCollection ()
- {
- return new ObjectCollection (this);
- }
- public void EndUpdate ()
- {
- suspend_ctrlupdate = false;
- UpdateItemInfo (UpdateOperation.AllItems, 0, 0);
- base.Refresh ();
- }
- public int FindString (String s)
- {
- return FindString (s, -1);
- }
- public int FindString (string s, int startIndex)
- {
- if (Items.Count == 0)
- return -1; // No exception throwing if empty
- if (startIndex < -1 || startIndex >= Items.Count - 1)
- throw new ArgumentOutOfRangeException ("Index of out range");
- startIndex++;
- for (int i = startIndex; i < Items.Count; i++) {
- if ((GetItemText (Items[i])).StartsWith (s))
- return i;
- }
- return NoMatches;
- }
- public int FindStringExact (string s)
- {
- return FindStringExact (s, -1);
- }
- public int FindStringExact (string s, int startIndex)
- {
- if (Items.Count == 0)
- return -1; // No exception throwing if empty
- if (startIndex < -1 || startIndex >= Items.Count - 1)
- throw new ArgumentOutOfRangeException ("Index of out range");
- startIndex++;
- for (int i = startIndex; i < Items.Count; i++) {
- if ((GetItemText (Items[i])).Equals (s))
- return i;
- }
- return NoMatches;
- }
- public int GetItemHeight (int index)
- {
- if (index < 0 || index >= Items.Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
-
- if (DrawMode == DrawMode.OwnerDrawVariable && IsHandleCreated == true) {
-
- if ((Items.GetListBoxItem (index)).ItemHeight != -1) {
- return (Items.GetListBoxItem (index)).ItemHeight;
- }
-
- MeasureItemEventArgs args = new MeasureItemEventArgs (DeviceContext, index, ItemHeight);
- OnMeasureItem (args);
- (Items.GetListBoxItem (index)).ItemHeight = args.ItemHeight;
- return args.ItemHeight;
- }
- return ItemHeight;
- }
- public Rectangle GetItemRectangle (int index)
- {
- if (index < 0 || index >= Items.Count)
- throw new ArgumentOutOfRangeException ("GetItemRectangle index out of range.");
- Rectangle rect = new Rectangle ();
- if (MultiColumn == false) {
- rect.X = 0;
- rect.Height = GetItemHeight (index);
- rect.Width = listbox_info.textdrawing_rect.Width;
-
- if (DrawMode == DrawMode.OwnerDrawVariable) {
- rect.Y = 0;
- if (index >= listbox_info.top_item) {
- for (int i = listbox_info.top_item; i < index; i++) {
- rect.Y += GetItemHeight (i);
- }
- } else {
- for (int i = index; i < listbox_info.top_item; i++) {
- rect.Y -= GetItemHeight (i);
- }
- }
- } else {
- rect.Y = ItemHeight * (index - listbox_info.top_item);
- }
- }
- else {
- int which_page;
- which_page = index / listbox_info.page_size;
- rect.Y = ((index - listbox_info.top_item) % listbox_info.page_size) * ItemHeight;
- rect.X = which_page * ColumnWidthInternal;
- rect.Height = ItemHeight;
- rect.Width = ColumnWidthInternal;
- }
- return rect;
- }
- public bool GetSelected (int index)
- {
- if (index < 0 || index >= Items.Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- return (Items.GetListBoxItem (index)).Selected;
- }
- public int IndexFromPoint (Point p)
- {
- return IndexFromPoint (p.X, p.Y);
- }
- // Only returns visible points
- public int IndexFromPoint (int x, int y)
- {
- for (int i = LBoxInfo.top_item; i <= LBoxInfo.last_item; i++) {
- if (GetItemRectangle (i).Contains (x,y) == true)
- return i;
- }
- return -1;
- }
- protected override void OnChangeUICues (UICuesEventArgs e)
- {
- base.OnChangeUICues (e);
- }
- protected override void OnDataSourceChanged (EventArgs e)
- {
- base.OnDataSourceChanged (e);
- BindDataItems (items);
-
- if (DataSource == null || DataManager == null) {
- SelectedIndex = -1;
- }
- else {
- SelectedIndex = DataManager.Position;
- }
- }
- protected override void OnDisplayMemberChanged (EventArgs e)
- {
- base.OnDisplayMemberChanged (e);
- if (DataManager == null || !IsHandleCreated)
- return;
- BindDataItems (items);
- base.Refresh ();
- }
- protected virtual void OnDrawItem (DrawItemEventArgs e)
- {
-
- if (DrawItem != null && (DrawMode == DrawMode.OwnerDrawFixed || DrawMode == DrawMode.OwnerDrawVariable)) {
- DrawItem (this, e);
- return;
- }
- ThemeEngine.Current.DrawListBoxItem (this, e);
- }
- protected override void OnFontChanged (EventArgs e)
- {
- base.OnFontChanged (e);
- if (!use_item_height) {
- listbox_info.item_height = FontHeight;
- RellocateScrollBars ();
- CalcClientArea ();
- UpdateItemInfo (UpdateOperation.AllItems, 0, 0);
- } else {
- base.Refresh ();
- }
- }
- protected override void OnHandleCreated (EventArgs e)
- {
- base.OnHandleCreated (e);
- UpdateInternalClientRect (ClientRectangle);
- SuspendLayout ();
- Controls.AddImplicit (vscrollbar_ctrl);
- Controls.AddImplicit (hscrollbar_ctrl);
- ResumeLayout ();
- UpdateItemInfo (UpdateOperation.AllItems, 0, 0);
- }
- protected override void OnHandleDestroyed (EventArgs e)
- {
- base.OnHandleDestroyed (e);
- }
- protected virtual void OnMeasureItem (MeasureItemEventArgs e)
- {
- if (draw_mode != DrawMode.OwnerDrawVariable)
- return;
-
- if (MeasureItem != null)
- MeasureItem (this, e);
- }
- protected override void OnParentChanged (EventArgs e)
- {
- base.OnParentChanged (e);
- }
- protected override void OnResize (EventArgs e)
- {
- base.OnResize (e);
- UpdateInternalClientRect (ClientRectangle);
- }
- protected override void OnSelectedIndexChanged (EventArgs e)
- {
- base.OnSelectedIndexChanged (e);
- if (SelectedIndexChanged != null)
- SelectedIndexChanged (this, e);
- }
- protected override void OnSelectedValueChanged (EventArgs e)
- {
- base.OnSelectedValueChanged (e);
- }
- public override void Refresh ()
- {
- if (draw_mode == DrawMode.OwnerDrawVariable) {
- for (int i = 0; i < Items.Count; i++) {
- (Items.GetListBoxItem (i)).ItemHeight = -1;
- }
- }
-
- base.Refresh ();
- }
- protected override void RefreshItem (int index)
- {
- if (index < 0 || index >= Items.Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
-
- if (draw_mode == DrawMode.OwnerDrawVariable) {
- (Items.GetListBoxItem (index)).ItemHeight = -1;
- }
- }
- protected override void SetBoundsCore (int x, int y, int width, int height, BoundsSpecified specified)
- {
- base.SetBoundsCore (x, y, width, height, specified);
- }
- protected override void SetItemCore (int index, object value)
- {
- if (index < 0 || index >= Items.Count)
- return;
- Items[index] = value;
- }
- protected override void SetItemsCore (IList value)
- {
- BeginUpdate ();
- try {
- Items.Clear ();
- Items.AddRange (value);
- } finally {
- EndUpdate ();
- }
- }
- public void SetSelected (int index, bool value)
- {
- if (index < 0 || index >= Items.Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- if (SelectionMode == SelectionMode.None)
- throw new InvalidOperationException ();
- if (value)
- SelectItem (index);
- else
- UnSelectItem (index, true);
- }
- protected virtual void Sort ()
- {
- if (Items.Count == 0)
- return;
- Items.Sort ();
- base.Refresh ();
- }
- public override string ToString ()
- {
- return base.ToString () + ", Items Count: " + Items.Count;
- }
- protected virtual void WmReflectCommand (ref Message m)
- {
- }
- protected override void WndProc (ref Message m)
- {
- switch ((Msg) m.Msg) {
- case Msg.WM_PAINT: {
- PaintEventArgs paint_event;
- paint_event = XplatUI.PaintEventStart (Handle, true);
- OnPaintLB (paint_event);
- XplatUI.PaintEventEnd (Handle, true);
- return;
- }
- case Msg.WM_ERASEBKGND:
- m.Result = (IntPtr) 1;
- return;
- default:
- break;
- }
- base.WndProc (ref m);
- }
- #endregion Public Methods
- #region Private Methods
- internal void CalcClientArea ()
- {
- listbox_info.textdrawing_rect = listbox_info.client_rect;
-
- if (listbox_info.show_verticalsb)
- listbox_info.textdrawing_rect.Width -= vscrollbar_ctrl.Width;
- if (listbox_info.show_horizontalsb)
- listbox_info.textdrawing_rect.Height -= hscrollbar_ctrl.Height;
- if (DrawMode == DrawMode.OwnerDrawVariable) {
- int height = 0;
-
- listbox_info.page_size = 0;
- for (int i = 0; i < Items.Count; i++) {
- height += GetItemHeight (i);
- if (height > listbox_info.textdrawing_rect.Height)
- break;
-
- listbox_info.page_size++;
- }
-
- } else {
- listbox_info.page_size = listbox_info.textdrawing_rect.Height / ItemHeight;
- }
- if (listbox_info.page_size == 0) {
- listbox_info.page_size = 1;
- }
- /* Adjust size to visible the maximum number of displayable items */
- if (IntegralHeight == true) {
- // From MS Docs: The integral height is based on the height of the ListBox, rather than
- // the client area height. As a result, when the IntegralHeight property is set true,
- // items can still be partially shown if scroll bars are displayed.
- int remaining = listbox_info.client_rect.Height % listbox_info.item_height;
- if (remaining > 0) {
- listbox_info.client_rect.Height -= remaining;
- CalcClientArea ();
- RellocateScrollBars ();
- base.Refresh ();
- }
- }
- }
- internal void Draw (Rectangle clip, Graphics dc)
- {
- // IntegralHeight has effect, we also have to paint the unused area
- if (IntegralHeight) {
- if (ClientRectangle.Height > listbox_info.client_rect.Height) {
- Region area = new Region (ClientRectangle);
- area.Exclude (LBoxInfo.textdrawing_rect);
- if (listbox_info.show_horizontalsb) {
- area.Exclude (new Rectangle (hscrollbar_ctrl.Location.X, hscrollbar_ctrl.Location.Y,
- hscrollbar_ctrl.Width, hscrollbar_ctrl.Height));
- }
- dc.FillRectangle (ThemeEngine.Current.ResPool.GetSolidBrush (BackColor),
- area.GetBounds (dc));
- area.Dispose ();
- }
- }
-
- dc.FillRectangle (ThemeEngine.Current.ResPool.GetSolidBrush (BackColor),
- LBoxInfo.textdrawing_rect);
- if (Items.Count > 0) {
- Rectangle item_rect;
- DrawItemState state = DrawItemState.None;
- for (int i = LBoxInfo.top_item; i <= LBoxInfo.last_item; i++) {
- item_rect = GetItemDisplayRectangle (i, LBoxInfo.top_item);
- if (clip.IntersectsWith (item_rect) == false)
- continue;
- /* Draw item */
- state = DrawItemState.None;
- if ((Items.GetListBoxItem (i)).Selected) {
- state |= DrawItemState.Selected;
- }
-
- if (has_focus == true && focused_item == i)
- state |= DrawItemState.Focus;
-
- if (MultiColumn == false && hscrollbar_ctrl != null && hscrollbar_ctrl.Visible) {
- item_rect.X -= hscrollbar_ctrl.Value;
- item_rect.Width += hscrollbar_ctrl.Value;
- }
- OnDrawItem (new DrawItemEventArgs (dc, Font, item_rect,
- i, state, ForeColor, BackColor));
- }
- }
-
- }
- // Converts a GetItemRectangle to a one that we can display
- internal Rectangle GetItemDisplayRectangle (int index, int first_displayble)
- {
- Rectangle item_rect;
- Rectangle first_item_rect = GetItemRectangle (first_displayble);
- item_rect = GetItemRectangle (index);
- item_rect.X -= first_item_rect.X;
- item_rect.Y -= first_item_rect.Y;
-
- return item_rect;
- }
- // Value Changed
- private void HorizontalScrollEvent (object sender, EventArgs e)
- {
- if (!multicolumn) {
- base.Refresh ();
- return;
- }
- int top_item = LBoxInfo.top_item;
- int last_item = LBoxInfo.last_item;
- LBoxInfo.top_item = listbox_info.page_size * hscrollbar_ctrl.Value;
- LBoxInfo.last_item = LastVisibleItem ();
-
- if (top_item != LBoxInfo.top_item || last_item != LBoxInfo.last_item)
- base.Refresh ();
- }
- // Only returns visible points. The diference of with IndexFromPoint is that the rectangle
- // has screen coordinates
- internal int IndexFromPointDisplayRectangle (int x, int y)
- {
- if (Items.Count == 0)
- return -1;
-
- for (int i = LBoxInfo.top_item; i <= LBoxInfo.last_item; i++) {
- if (GetItemDisplayRectangle (i, LBoxInfo.top_item).Contains (x, y) == true)
- return i;
- }
- return -1;
- }
- private int LastVisibleItem ()
- {
- Rectangle item_rect;
- int top_y = LBoxInfo.textdrawing_rect.Y + LBoxInfo.textdrawing_rect.Height;
- int i = 0;
- if (LBoxInfo.top_item >= Items.Count)
- return LBoxInfo.top_item;
- for (i = LBoxInfo.top_item; i < Items.Count; i++) {
- item_rect = GetItemDisplayRectangle (i, LBoxInfo.top_item);
- if (MultiColumn) {
- if (item_rect.X > LBoxInfo.textdrawing_rect.Width)
- return i - 1;
- }
- else {
- if (item_rect.Y + item_rect.Height > top_y) {
- return i;
- }
- }
- }
- return i - 1;
- }
- private void UpdatedTopItem ()
- {
- if (multicolumn) {
- int col = LBoxInfo.top_item / LBoxInfo.page_size;
-
- if (col > hscrollbar_ctrl.Maximum)
- hscrollbar_ctrl.Value = hscrollbar_ctrl.Maximum;
- else
- hscrollbar_ctrl.Value = col;
- }
- else {
- if (LBoxInfo.top_item > vscrollbar_ctrl.Maximum)
- vscrollbar_ctrl.Value = vscrollbar_ctrl.Maximum;
- else
- vscrollbar_ctrl.Value = LBoxInfo.top_item;
- }
- }
-
- // Navigates to the indicated item and returns the new item
- private int NavigateItemVisually (ItemNavigation navigation)
- {
- int page_size, columns, selected_index = -1;
- if (multicolumn) {
- columns = LBoxInfo.textdrawing_rect.Width / ColumnWidthInternal;
- page_size = columns * LBoxInfo.page_size;
- if (page_size == 0) {
- page_size = LBoxInfo.page_size;
- }
- } else {
- page_size = LBoxInfo.page_size;
- }
- switch (navigation) {
- case ItemNavigation.PreviousColumn: {
- if (focused_item - LBoxInfo.page_size < 0) {
- return -1;
- }
- if (focused_item - LBoxInfo.page_size < LBoxInfo.top_item) {
- LBoxInfo.top_item = focused_item - LBoxInfo.page_size;
- UpdatedTopItem ();
- }
-
- selected_index = focused_item - LBoxInfo.page_size;
- break;
- }
-
- case ItemNavigation.NextColumn: {
- if (focused_item + LBoxInfo.page_size >= Items.Count) {
- break;
- }
- if (focused_item + LBoxInfo.page_size > LBoxInfo.last_item) {
- LBoxInfo.top_item = focused_item;
- UpdatedTopItem ();
- }
-
- selected_index = focused_item + LBoxInfo.page_size;
- break;
- }
- case ItemNavigation.First: {
- LBoxInfo.top_item = 0;
- selected_index = 0;
- UpdatedTopItem ();
- break;
- }
- case ItemNavigation.Last: {
- if (Items.Count < LBoxInfo.page_size) {
- LBoxInfo.top_item = 0;
- selected_index = Items.Count - 1;
- UpdatedTopItem ();
- } else {
- LBoxInfo.top_item = Items.Count - LBoxInfo.page_size;
- selected_index = Items.Count - 1;
- UpdatedTopItem ();
- }
- break;
- }
- case ItemNavigation.Next: {
- if (focused_item + 1 < Items.Count) {
- int actualHeight = 0;
- if (draw_mode == DrawMode.OwnerDrawVariable) {
- for (int i = LBoxInfo.top_item; i <= focused_item + 1; i++)
- actualHeight += GetItemHeight (i);
- } else {
- actualHeight = ((focused_item + 1) - LBoxInfo.top_item + 1) * ItemHeight;
- }
- if (actualHeight >= LBoxInfo.textdrawing_rect.Height) {
- int bal = IntegralHeight ? 0 : (listbox_info.textdrawing_rect.Height == actualHeight ? 0 : 1);
- if (focused_item + bal >= LBoxInfo.last_item) {
- LBoxInfo.top_item++;
- UpdatedTopItem ();
- }
- }
- selected_index = focused_item + 1;
- }
- break;
- }
- case ItemNavigation.Previous: {
- if (focused_item > 0) {
- if (focused_item - 1 < LBoxInfo.top_item) {
- LBoxInfo.top_item--;
- UpdatedTopItem ();
- }
- selected_index = focused_item - 1;
- }
- break;
- }
- case ItemNavigation.NextPage: {
- if (Items.Count < page_size) {
- NavigateItemVisually (ItemNavigation.Last);
- break;
- }
- if (focused_item + page_size - 1 >= Items.Count) {
- LBoxInfo.top_item = Items.Count - page_size;
- UpdatedTopItem ();
- selected_index = Items.Count - 1;
- }
- else {
- if (focused_item + page_size - 1 > LBoxInfo.last_item) {
- LBoxInfo.top_item = focused_item;
- UpdatedTopItem ();
- }
-
- selected_index = focused_item + page_size - 1;
- }
-
- break;
- }
- case ItemNavigation.PreviousPage: {
-
- if (focused_item - (LBoxInfo.page_size - 1) <= 0) {
-
- LBoxInfo.top_item = 0;
- UpdatedTopItem ();
- SelectedIndex = 0;
- }
- else {
- if (focused_item - (LBoxInfo.page_size - 1) < LBoxInfo.top_item) {
- LBoxInfo.top_item = focused_item - (LBoxInfo.page_size - 1);
- UpdatedTopItem ();
- }
-
- selected_index = focused_item - (LBoxInfo.page_size - 1);
- }
-
- break;
- }
- default:
- break;
- }
-
- return selected_index;
- }
-
-
- private void OnGotFocus (object sender, EventArgs e)
- {
- has_focus = true;
-
- if (focused_item != -1) {
- Rectangle invalidate = GetItemDisplayRectangle (focused_item, LBoxInfo.top_item);
- Invalidate (invalidate);
- }
- }
-
- private void OnLostFocus (object sender, EventArgs e)
- {
- has_focus = false;
-
- if (focused_item != -1) {
- Rectangle invalidate = GetItemDisplayRectangle (focused_item, LBoxInfo.top_item);
- Invalidate (invalidate);
- }
- }
- private void OnKeyDownLB (object sender, KeyEventArgs e)
- {
- int new_item = -1;
-
- if (Items.Count == 0)
- return;
- switch (e.KeyCode) {
-
- case Keys.ControlKey:
- ctrl_pressed = true;
- break;
-
- case Keys.ShiftKey:
- shift_pressed = true;
- break;
-
- case Keys.Home:
- new_item = NavigateItemVisually (ItemNavigation.First);
- break;
- case Keys.End:
- new_item = NavigateItemVisually (ItemNavigation.Last);
- break;
- case Keys.Up:
- new_item = NavigateItemVisually (ItemNavigation.Previous);
- break;
-
- case Keys.Down:
- new_item = NavigateItemVisually (ItemNavigation.Next);
- break;
-
- case Keys.PageUp:
- new_item = NavigateItemVisually (ItemNavigation.PreviousPage);
- break;
-
- case Keys.PageDown:
- new_item = NavigateItemVisually (ItemNavigation.NextPage);
- break;
- case Keys.Right:
- if (multicolumn == true) {
- new_item = NavigateItemVisually (ItemNavigation.NextColumn);
- }
- break;
-
- case Keys.Left:
- if (multicolumn == true) {
- new_item = NavigateItemVisually (ItemNavigation.PreviousColumn);
- }
- break;
-
- case Keys.Space:
- if (selection_mode == SelectionMode.MultiSimple) {
- SelectedItemFromNavigation (focused_item);
- }
- break;
-
- default:
- break;
- }
-
- if (new_item != -1) {
- SetFocusedItem (new_item);
- }
-
- if (new_item != -1) {
- if (selection_mode != SelectionMode.MultiSimple && selection_mode != SelectionMode.None) {
- SelectedItemFromNavigation (new_item);
- }
- }
- }
-
- private void OnKeyUpLB (object sender, KeyEventArgs e)
- {
- switch (e.KeyCode) {
- case Keys.ControlKey:
- ctrl_pressed = false;
- break;
- case Keys.ShiftKey:
- shift_pressed = false;
- break;
- default:
- break;
- }
- }
- internal virtual void OnMouseDownLB (object sender, MouseEventArgs e)
- {
- if (Click != null) {
- if (e.Button == MouseButtons.Left) {
- Click (this, e);
- }
- }
-
- int index = IndexFromPointDisplayRectangle (e.X, e.Y);
-
- if (index != -1) {
- SelectedItemFromNavigation (index);
- SetFocusedItem (index);
- }
- }
- private void OnPaintLB (PaintEventArgs pevent)
- {
- if (Paint != null)
- Paint (this, pevent);
- if (suspend_ctrlupdate == true)
- return;
- Draw (pevent.ClipRectangle, pevent.Graphics);
- }
- internal void RellocateScrollBars ()
- {
- if (listbox_info.show_verticalsb) {
- vscrollbar_ctrl.Size = new Size (vscrollbar_ctrl.Width, ClientRectangle.Height);
- vscrollbar_ctrl.Location = new Point (ClientRectangle.Width - vscrollbar_ctrl.Width, 0);
- }
- if (listbox_info.show_horizontalsb) {
- int width = listbox_info.client_rect.Width;
- if (listbox_info.show_verticalsb)
- width -= vscrollbar_ctrl.Width;
- hscrollbar_ctrl.Size = new Size (width, hscrollbar_ctrl.Height);
- hscrollbar_ctrl.Location = new Point (0, ClientRectangle.Height - hscrollbar_ctrl.Height);
- }
- CalcClientArea ();
- }
- // Add an item in the Selection array and marks it visually as selected
- private void SelectItem (int index)
- {
- if (index == -1)
- return;
- Rectangle invalidate = GetItemDisplayRectangle (index, LBoxInfo.top_item);
- (Items.GetListBoxItem (index)).Selected = true;
- selected_indices.AddIndex (index);
- selected_items.AddObject (Items[index]);
- if (ClientRectangle.Contains (invalidate))
- Invalidate (invalidate);
- }
-
- // An item navigation operation (mouse or keyboard) has caused to select a new item
- internal void SelectedItemFromNavigation (int index)
- {
- switch (SelectionMode) {
- case SelectionMode.None: // Do nothing
- break;
- case SelectionMode.One: {
- SelectedIndex = index;
- break;
- }
- case SelectionMode.MultiSimple: {
- if (selected_index == -1) {
- SelectedIndex = index;
- } else {
- if ((Items.GetListBoxItem (index)).Selected) // BUG: index or selected_index?
- UnSelectItem (index, true);
- else {
- SelectItem (index);
- OnSelectedIndexChanged (new EventArgs ());
- OnSelectedValueChanged (new EventArgs ());
- }
- }
- break;
- }
-
- case SelectionMode.MultiExtended: {
- if (selected_index == -1) {
- SelectedIndex = index;
- } else {
- if (ctrl_pressed == false && shift_pressed == false) {
- ClearSelected ();
- }
-
- if (shift_pressed == true) {
- ShiftSelection (index);
- } else { // ctrl_pressed or single item
- SelectItem (index);
- }
-
- OnSelectedIndexChanged (new EventArgs ());
- OnSelectedValueChanged (new EventArgs ());
- }
- break;
- }
-
- default:
- break;
- }
- }
-
- private void ShiftSelection (int index)
- {
- int shorter_item = -1, dist = Items.Count + 1, cur_dist;
-
- foreach (int idx in selected_indices) {
- if (idx > index) {
- cur_dist = idx - index;
- }
- else {
- cur_dist = index - idx;
- }
-
- if (cur_dist < dist) {
- dist = cur_dist;
- shorter_item = idx;
- }
- }
-
- if (shorter_item != -1) {
- int start, end;
-
- if (shorter_item > index) {
- start = index;
- end = shorter_item;
- } else {
- start = shorter_item;
- end = index;
- }
-
- ClearSelected ();
- for (int idx = start; idx <= end; idx++) {
- SelectItem (idx);
- }
- }
- }
-
- internal void SetFocusedItem (int index)
- {
- Rectangle invalidate;
- int prev = focused_item;
-
- focused_item = index;
-
- if (has_focus == false)
- return;
- if (prev != -1) { // Invalidates previous item
- invalidate = GetItemDisplayRectangle (prev, LBoxInfo.top_item);
- Invalidate (invalidate);
- }
-
- if (index != -1) {
- invalidate = GetItemDisplayRectangle (index, LBoxInfo.top_item);
- Invalidate (invalidate);
- }
- }
- // Removes an item in the Selection array and marks it visually as unselected
- private void UnSelectItem (int index, bool remove)
- {
- if (index == -1)
- return;
- Rectangle invalidate = GetItemDisplayRectangle (index, LBoxInfo.top_item);
- (Items.GetListBoxItem (index)).Selected = false;
- if (remove) {
- selected_indices.RemoveIndex (index);
- selected_items.RemoveObject (Items[index]);
- }
- if (ClientRectangle.Contains (invalidate))
- Invalidate (invalidate);
- }
- internal StringFormat GetFormatString ()
- {
- StringFormat string_format = new StringFormat ();
-
- if (RightToLeft == RightToLeft.Yes)
- string_format.Alignment = StringAlignment.Far;
- else
- string_format.Alignment = StringAlignment.Near;
- if (UseTabStops)
- string_format.SetTabStops (0, new float [] {(float)(Font.Height * 3.7)});
-
- return string_format;
- }
- // Updates the scrollbar's position with the new items and inside area
- internal virtual void UpdateItemInfo (UpdateOperation operation, int first, int last)
- {
- if (!IsHandleCreated || suspend_ctrlupdate == true)
- return;
- UpdateShowVerticalScrollBar ();
- if (listbox_info.show_verticalsb && Items.Count > listbox_info.page_size)
- if (vscrollbar_ctrl.Enabled)
- vscrollbar_ctrl.Maximum = Items.Count - listbox_info.page_size;
- if (listbox_info.show_horizontalsb) {
- if (MultiColumn) {
- int fullpage = (listbox_info.page_size * (listbox_info.client_rect.Width / ColumnWidthInternal));
- if (hscrollbar_ctrl.Enabled && listbox_info.page_size > 0)
- hscrollbar_ctrl.Maximum = Math.Max (0, 1 + ((Items.Count - fullpage) / listbox_info.page_size));
- }
- }
- if (MultiColumn == false) {
- /* Calc the longest items for non multicolumn listboxes */
- if (operation == UpdateOperation.AllItems || operation == UpdateOperation.DeleteItems) {
- SizeF size;
- for (int i = 0; i < Items.Count; i++) {
- size = DeviceContext.MeasureString (GetItemText (Items[i]), Font);
- if ((int) size.Width > listbox_info.max_itemwidth)
- listbox_info.max_itemwidth = (int) size.Width;
- }
- }
- else {
- if (operation == UpdateOperation.AddItems) {
- SizeF size;
- for (int i = first; i < last + 1; i++) {
- size = DeviceContext.MeasureString (GetItemText (Items[i]), Font);
- if ((int) size.Width > listbox_info.max_itemwidth)
- listbox_info.max_itemwidth = (int) size.Width;
- }
- }
- }
- }
- if (sorted)
- Sort ();
-
- if (Items.Count == 0) {
- selected_index = -1;
- focused_item = -1;
- }
- SelectedItems.ReCreate ();
- SelectedIndices.ReCreate ();
- UpdateShowHorizontalScrollBar ();
- LBoxInfo.last_item = LastVisibleItem ();
- base.Refresh ();
- }
- private void UpdateInternalClientRect (Rectangle client_rectangle)
- {
- listbox_info.client_rect = client_rectangle;
- UpdateShowHorizontalScrollBar ();
- UpdateShowVerticalScrollBar ();
- RellocateScrollBars ();
- UpdateItemInfo (UpdateOperation.AllItems, 0, 0);
- }
- /* Determines if the horizontal scrollbar has to be displyed */
- private void UpdateShowHorizontalScrollBar ()
- {
- bool show = false;
- bool enabled = true;
- if (MultiColumn) { /* Horizontal scrollbar is always shown in Multicolum mode */
- /* Is it really need it */
- int page_size = listbox_info.client_rect.Height / listbox_info.item_height;
- int fullpage = (page_size * (listbox_info.textdrawing_rect.Height / ColumnWidthInternal));
- if (Items.Count > fullpage) {
- show = true;
- }
- else { /* Acording to MS Documentation ScrollAlwaysVisible only affects Horizontal scrollbars but
- this is not true for MultiColumn listboxes */
- if (ScrollAlwaysVisible == true) {
- enabled = false;
- show = true;
- }
- }
- } else { /* If large item*/
- if (listbox_info.max_itemwidth > listbox_info.client_rect.Width && HorizontalScrollbar) {
- show = true;
- hscrollbar_ctrl.Maximum = listbox_info.max_itemwidth;
- hscrollbar_ctrl.LargeChange = listbox_info.textdrawing_rect.Width;
- }
- }
- if (hscrollbar_ctrl.Enabled != enabled)
- hscrollbar_ctrl.Enabled = enabled;
- if (listbox_info.show_horizontalsb == show)
- return;
- listbox_info.show_horizontalsb = show;
- hscrollbar_ctrl.Visible = show;
- if (show == true) {
- RellocateScrollBars ();
- }
- CalcClientArea ();
- }
- /* Determines if the vertical scrollbar has to be displyed */
- private void UpdateShowVerticalScrollBar ()
- {
- bool show = false;
- bool enabled = true;
- if (!MultiColumn) { /* Vertical scrollbar is never shown in Multicolum mode */
- if (Items.Count > listbox_info.page_size) {
- show = true;
- }
- else
- if (ScrollAlwaysVisible) {
- show = true;
- enabled = false;
- }
- }
- if (vscrollbar_ctrl.Enabled != enabled)
- vscrollbar_ctrl.Enabled = enabled;
- if (listbox_info.show_verticalsb == show)
- return;
- listbox_info.show_verticalsb = show;
- vscrollbar_ctrl.Visible = show;
- if (show == true) {
- if (vscrollbar_ctrl.Enabled)
- vscrollbar_ctrl.Maximum = Items.Count - listbox_info.page_size;
- RellocateScrollBars ();
- } else if (vscrollbar_ctrl.Maximum > 0) {
- vscrollbar_ctrl.Maximum = 0;
- }
- CalcClientArea ();
- }
- // Value Changed
- private void VerticalScrollEvent (object sender, EventArgs e)
- {
- int top_item = LBoxInfo.top_item;
- int last_item = LBoxInfo.last_item;
- LBoxInfo.top_item = /*listbox_info.page_size + */ vscrollbar_ctrl.Value;
- LBoxInfo.last_item = LastVisibleItem ();
- if (top_item != LBoxInfo.top_item || last_item != LBoxInfo.last_item)
- base.Refresh ();
- }
- #endregion Private Methods
- /*
- ListBox.ObjectCollection
- */
- [ListBindable (false)]
- public class ObjectCollection : IList, ICollection, IEnumerable
- {
- // Compare objects
- internal class ListObjectComparer : IComparer
- {
- private ListBox owner;
-
- public ListObjectComparer (ListBox owner)
- {
- this.owner = owner;
- }
-
- public int Compare (object a, object b)
- {
- string str1 = a.ToString ();
- string str2 = b.ToString ();
- return str1.CompareTo (str2);
- }
- }
- // Compare ListItem
- internal class ListItemComparer : IComparer
- {
- private ListBox owner;
-
- public ListItemComparer (ListBox owner)
- {
- this.owner = owner;
- }
-
- public int Compare (object a, object b)
- {
- int index1 = ((ListBox.ListBoxItem) (a)).Index;
- int index2 = ((ListBox.ListBoxItem) (b)).Index;
- string str1 = owner.GetItemText (owner.Items[index1]);
- string str2 = owner.GetItemText (owner.Items[index2]);
- return str1.CompareTo (str2);
- }
- }
- private ListBox owner;
- internal ArrayList object_items = new ArrayList ();
- internal ArrayList listbox_items = new ArrayList ();
- public ObjectCollection (ListBox owner)
- {
- this.owner = owner;
- }
- public ObjectCollection (ListBox owner, object[] obj)
- {
- this.owner = owner;
- AddRange (obj);
- }
- public ObjectCollection (ListBox owner, ObjectCollection obj)
- {
- this.owner = owner;
- AddRange (obj);
- }
- #region Public Properties
- public virtual int Count {
- get { return object_items.Count; }
- }
- public virtual bool IsReadOnly {
- get { return false; }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public virtual object this [int index] {
- get {
- if (index < 0 || index >= Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- return object_items[index];
- }
- set {
- if (index < 0 || index >= Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- object_items[index] = value;
- }
- }
- bool ICollection.IsSynchronized {
- get { return false; }
- }
- object ICollection.SyncRoot {
- get { return this; }
- }
- bool IList.IsFixedSize {
- get { return false; }
- }
- #endregion Public Properties
-
- #region Private Properties
- internal ArrayList ObjectItems {
- get { return object_items;}
- set {
- object_items = value;
- }
- }
-
- internal ArrayList ListBoxItems {
- get { return listbox_items;}
- set {
- listbox_items = value;
- }
- }
- #endregion Private Properties
- #region Public Methods
- public int Add (object item)
- {
- int idx;
- idx = AddItem (item);
- owner.UpdateItemInfo (UpdateOperation.AddItems, idx, idx);
- return idx;
- }
- public void AddRange (object[] items)
- {
- int cnt = Count;
- foreach (object mi in items)
- AddItem (mi);
- owner.UpdateItemInfo (UpdateOperation.AddItems, cnt, Count - 1);
- }
- public void AddRange (ObjectCollection col)
- {
- int cnt = Count;
- foreach (object mi in col)
- AddItem (mi);
- owner.UpdateItemInfo (UpdateOperation.AddItems, cnt, Count - 1);
- }
- internal void AddRange (IList list)
- {
- int cnt = Count;
- foreach (object mi in list)
- AddItem (mi);
- owner.UpdateItemInfo (UpdateOperation.AddItems, cnt, Count - 1);
- }
- public virtual void Clear ()
- {
- owner.selected_index = -1;
- owner.focused_item = -1;
- object_items.Clear ();
- listbox_items.Clear ();
- owner.UpdateItemInfo (UpdateOperation.AllItems, 0, 0);
- }
- public virtual bool Contains (object obj)
- {
- return object_items.Contains (obj);
- }
- public void CopyTo (object[] dest, int arrayIndex)
- {
- object_items.CopyTo (dest, arrayIndex);
- }
- void ICollection.CopyTo (Array dest, int index)
- {
- object_items.CopyTo (dest, index);
- }
- public virtual IEnumerator GetEnumerator ()
- {
- return object_items.GetEnumerator ();
- }
- int IList.Add (object item)
- {
- return Add (item);
- }
- public virtual int IndexOf (object value)
- {
- return object_items.IndexOf (value);
- }
- public virtual void Insert (int index, object item)
- {
- if (index < 0 || index > Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
-
- int idx;
- ObjectCollection new_items = new ObjectCollection (owner);
-
- owner.BeginUpdate ();
-
- for (int i = 0; i < index; i++) {
- idx = new_items.AddItem (ObjectItems[i]);
- (new_items.GetListBoxItem (idx)).CopyState (GetListBoxItem (i));
- }
- new_items.AddItem (item);
- for (int i = index; i < Count; i++){
- idx = new_items.AddItem (ObjectItems[i]);
- (new_items.GetListBoxItem (idx)).CopyState (GetListBoxItem (i));
- }
- ObjectItems = new_items.ObjectItems;
- ListBoxItems = new_items.ListBoxItems;
-
- owner.EndUpdate (); // Calls UpdateItemInfo
- }
- public virtual void Remove (object value)
- {
- RemoveAt (IndexOf (value));
- }
- public virtual void RemoveAt (int index)
- {
- if (index < 0 || index >= Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- object_items.RemoveAt (index);
- listbox_items.RemoveAt (index);
- owner.UpdateItemInfo (UpdateOperation.DeleteItems, index, index);
- }
- #endregion Public Methods
- #region Private Methods
- internal int AddItem (object item)
- {
- int cnt = object_items.Count;
- object_items.Add (item);
- listbox_items.Add (new ListBox.ListBoxItem (cnt));
- return cnt;
- }
- internal ListBox.ListBoxItem GetListBoxItem (int index)
- {
- if (index < 0 || index >= Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- return (ListBox.ListBoxItem) listbox_items[index];
- }
-
- internal void SetListBoxItem (ListBox.ListBoxItem item, int index)
- {
- if (index < 0 || index >= Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- listbox_items[index] = item;
- }
- internal void Sort ()
- {
- /* Keep this order */
- listbox_items.Sort (new ListItemComparer (owner));
- object_items.Sort (new ListObjectComparer (owner));
- for (int i = 0; i < listbox_items.Count; i++) {
- ListBox.ListBoxItem item = GetListBoxItem (i);
- item.Index = i;
- }
- }
- #endregion Private Methods
- }
- /*
- ListBox.SelectedIndexCollection
- */
- public class SelectedIndexCollection : IList, ICollection, IEnumerable
- {
- private ListBox owner;
- private ArrayList indices = new ArrayList ();
- public SelectedIndexCollection (ListBox owner)
- {
- this.owner = owner;
- }
- #region Public Properties
- [Browsable (false)]
- public virtual int Count {
- get { return indices.Count; }
- }
- public virtual bool IsReadOnly {
- get { return true; }
- }
- public int this [int index] {
- get {
- if (index < 0 || index >= Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- return (int) indices[index];
- }
- }
- bool ICollection.IsSynchronized {
- get { return true; }
- }
- bool IList.IsFixedSize{
- get { return true; }
- }
- object ICollection.SyncRoot {
- get { return this; }
- }
- #endregion Public Properties
- #region Public Methods
- public bool Contains (int selectedIndex)
- {
- return indices.Contains (selectedIndex);
- }
- public virtual void CopyTo (Array dest, int index)
- {
- indices.CopyTo (dest, index);
- }
- public virtual IEnumerator GetEnumerator ()
- {
- return indices.GetEnumerator ();
- }
- int IList.Add (object obj)
- {
- throw new NotSupportedException ();
- }
- void IList.Clear ()
- {
- throw new NotSupportedException ();
- }
- bool IList.Contains (object selectedIndex)
- {
- return Contains ((int)selectedIndex);
- }
- int IList.IndexOf (object selectedIndex)
- {
- return IndexOf ((int) selectedIndex);
- }
- void IList.Insert (int index, object value)
- {
- throw new NotSupportedException ();
- }
- void IList.Remove (object value)
- {
- throw new NotSupportedException ();
- }
- void IList.RemoveAt (int index)
- {
- throw new NotSupportedException ();
- }
- object IList.this[int index]{
- get {return indices[index]; }
- set {throw new NotImplementedException (); }
- }
- public int IndexOf (int selectedIndex)
- {
- return indices.IndexOf (selectedIndex);
- }
- #endregion Public Methods
- #region Private Methods
- internal void AddIndex (int index)
- {
- indices.Add (index);
- }
- internal void ClearIndices ()
- {
- indices.Clear ();
- }
- internal void RemoveIndex (int index)
- {
- indices.Remove (index);
- }
- internal void ReCreate ()
- {
- indices.Clear ();
- for (int i = 0; i < owner.Items.Count; i++) {
- ListBox.ListBoxItem item = owner.Items.GetListBoxItem (i);
- if (item.Selected)
- indices.Add (item.Index);
- }
- }
- #endregion Private Methods
- }
- /*
- SelectedObjectCollection
- */
- public class SelectedObjectCollection : IList, ICollection, IEnumerable
- {
- private ListBox owner;
- private ArrayList object_items = new ArrayList ();
- public SelectedObjectCollection (ListBox owner)
- {
- this.owner = owner;
- }
- #region Public Properties
- public virtual int Count {
- get { return object_items.Count; }
- }
- public virtual bool IsReadOnly {
- get { return true; }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public virtual object this [int index] {
- get {
- if (index < 0 || index >= Count)
- throw new ArgumentOutOfRangeException ("Index of out range");
- return object_items[index];
- }
- set {throw new NotSupportedException ();}
- }
- bool ICollection.IsSynchronized {
- get { return true; }
- }
- object ICollection.SyncRoot {
- get { return this; }
- }
- bool IList.IsFixedSize {
- get { return true; }
- }
- object IList.this[int index] {
- get { return object_items[index]; }
- set { throw new NotSupportedException (); }
- }
- #endregion Public Properties
- #region Public Methods
- public virtual bool Contains (object selectedObject)
- {
- return object_items.Contains (selectedObject);
- }
- public virtual void CopyTo (Array dest, int index)
- {
- object_items.CopyTo (dest, index);
- }
- int IList.Add (object value)
- {
- throw new NotSupportedException ();
- }
- void IList.Clear ()
- {
- throw new NotSupportedException ();
- }
- bool IList.Contains (object selectedIndex)
- {
- throw new NotImplementedException ();
- }
-
- void IList.Insert (int index, object value)
- {
- throw new NotSupportedException ();
- }
- void IList.Remove (object value)
- {
- throw new NotSupportedException ();
- }
- void IList.RemoveAt (int index)
- {
- throw new NotSupportedException ();
- }
-
- public int IndexOf (object item)
- {
- return object_items.IndexOf (item);
- }
- public virtual IEnumerator GetEnumerator ()
- {
- return object_items.GetEnumerator ();
- }
- #endregion Public Methods
- #region Private Methods
- internal void AddObject (object obj)
- {
- object_items.Add (obj);
- }
- internal void ClearObjects ()
- {
- object_items.Clear ();
- }
- internal void ReCreate ()
- {
- object_items.Clear ();
- for (int i = 0; i < owner.Items.Count; i++) {
- ListBox.ListBoxItem item = owner.Items.GetListBoxItem (i);
- if (item.Selected)
- object_items.Add (owner.Items[item.Index]);
- }
- }
- internal void RemoveObject (object obj)
- {
- object_items.Remove (obj);
- }
- #endregion Private Methods
- }
- }
- }
|