| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004 |
- // 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-2006 Novell, Inc. (http://www.novell.com)
- //
- // Authors:
- // Peter Bartok [email protected]
- //
- //
- // NOT COMPLETE
- #undef Debug
- #undef DebugClick
- using System.ComponentModel;
- using System.ComponentModel.Design;
- using System.Drawing;
- using System.Drawing.Text;
- using System.Text;
- using System.Runtime.InteropServices;
- using System.Collections;
- namespace System.Windows.Forms {
- [DefaultEvent("TextChanged")]
- [Designer("System.Windows.Forms.Design.TextBoxBaseDesigner, " + Consts.AssemblySystem_Design)]
- public abstract class TextBoxBase : Control {
- #region Local Variables
- internal HorizontalAlignment alignment;
- internal bool accepts_tab;
- internal bool accepts_return;
- internal bool auto_size;
- internal bool backcolor_set;
- internal CharacterCasing character_casing;
- internal bool hide_selection;
- internal int max_length;
- internal bool modified;
- internal char password_char;
- internal bool read_only;
- internal bool word_wrap;
- internal Document document;
- internal LineTag caret_tag; // tag our cursor is in
- internal int caret_pos; // position on the line our cursor is in (can be 0 = beginning of line)
- internal ImplicitHScrollBar hscroll;
- internal ImplicitVScrollBar vscroll;
- internal RichTextBoxScrollBars scrollbars;
- internal Timer scroll_timer;
- internal bool richtext;
- internal bool show_selection; // set to true to always show selection, even if no focus is set
- internal int selection_length = -1; // set to the user-specified selection length, or -1 if none
- internal bool show_caret_w_selection; // TextBox shows the caret when the selection is visible
- internal int requested_height;
- internal int canvas_width;
- internal int canvas_height;
- static internal int track_width = 2; //
- static internal int track_border = 5; //
- internal DateTime click_last;
- internal int click_point_x;
- internal int click_point_y;
- internal CaretSelection click_mode;
- internal Bitmap bmp;
- internal BorderStyle actual_border_style;
- internal bool shortcuts_enabled = true;
- #if Debug
- internal static bool draw_lines = false;
- #endif
- #endregion // Local Variables
- #region Internal Constructor
- // Constructor will go when complete, only for testing - pdb
- internal TextBoxBase() {
- alignment = HorizontalAlignment.Left;
- accepts_return = false;
- accepts_tab = false;
- auto_size = true;
- border_style = BorderStyle.Fixed3D;
- actual_border_style = BorderStyle.Fixed3D;
- character_casing = CharacterCasing.Normal;
- hide_selection = true;
- max_length = 32767;
- modified = true;
- password_char = '\0';
- read_only = false;
- word_wrap = true;
- richtext = false;
- show_selection = false;
- show_caret_w_selection = (this is TextBox);
- document = new Document(this);
- document.WidthChanged += new EventHandler(document_WidthChanged);
- document.HeightChanged += new EventHandler(document_HeightChanged);
- //document.CaretMoved += new EventHandler(CaretMoved);
- document.Wrap = false;
- requested_height = -1;
- click_last = DateTime.Now;
- click_mode = CaretSelection.Position;
- bmp = new Bitmap(1, 1, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
- MouseDown += new MouseEventHandler(TextBoxBase_MouseDown);
- MouseUp += new MouseEventHandler(TextBoxBase_MouseUp);
- MouseMove += new MouseEventHandler(TextBoxBase_MouseMove);
- SizeChanged += new EventHandler(TextBoxBase_SizeChanged);
- FontChanged += new EventHandler(TextBoxBase_FontOrColorChanged);
- ForeColorChanged += new EventHandler(TextBoxBase_FontOrColorChanged);
- MouseWheel += new MouseEventHandler(TextBoxBase_MouseWheel);
-
- scrollbars = RichTextBoxScrollBars.None;
- hscroll = new ImplicitHScrollBar();
- hscroll.ValueChanged += new EventHandler(hscroll_ValueChanged);
- hscroll.SetStyle (ControlStyles.Selectable, false);
- hscroll.Enabled = false;
- hscroll.Visible = false;
- hscroll.Maximum = Int32.MaxValue;
- vscroll = new ImplicitVScrollBar();
- vscroll.ValueChanged += new EventHandler(vscroll_ValueChanged);
- vscroll.SetStyle (ControlStyles.Selectable, false);
- vscroll.Enabled = false;
- vscroll.Visible = false;
- vscroll.Maximum = Int32.MaxValue;
- SuspendLayout ();
- this.Controls.AddImplicit (hscroll);
- this.Controls.AddImplicit (vscroll);
- ResumeLayout ();
-
- SetStyle(ControlStyles.UserPaint | ControlStyles.StandardClick, false);
- #if NET_2_0
- SetStyle(ControlStyles.UseTextForAccessibility, false);
- #endif
- canvas_width = ClientSize.Width;
- canvas_height = ClientSize.Height;
- document.ViewPortWidth = canvas_width;
- document.ViewPortHeight = canvas_height;
- Cursor = Cursors.IBeam;
- CalculateScrollBars();
- }
- #endregion // Internal Constructor
- #region Private and Internal Methods
- internal string CaseAdjust(string s) {
- if (character_casing == CharacterCasing.Normal) {
- return s;
- }
- if (character_casing == CharacterCasing.Lower) {
- return s.ToLower();
- } else {
- return s.ToUpper();
- }
- }
- internal override void HandleClick(int clicks, MouseEventArgs me) {
- // MS seems to fire the click event in spite of the styles they set
- bool click_set = GetStyle (ControlStyles.StandardClick);
- bool doubleclick_set = GetStyle (ControlStyles.StandardDoubleClick);
- // so explicitly set them to true first
- SetStyle (ControlStyles.StandardClick | ControlStyles.StandardDoubleClick, true);
- base.HandleClick (clicks, me);
- // then revert to our previous state
- if (!click_set)
- SetStyle (ControlStyles.StandardClick, false);
- if (!doubleclick_set)
- SetStyle (ControlStyles.StandardDoubleClick, false);
- }
- #endregion // Private and Internal Methods
- #region Public Instance Properties
- [DefaultValue(false)]
- [MWFCategory("Behavior")]
- public bool AcceptsTab {
- get {
- return accepts_tab;
- }
- set {
- if (value != accepts_tab) {
- accepts_tab = value;
- OnAcceptsTabChanged(EventArgs.Empty);
- }
- }
- }
- [DefaultValue(true)]
- [Localizable(true)]
- [RefreshProperties(RefreshProperties.Repaint)]
- [MWFCategory("Behavior")]
- public
- #if NET_2_0
- override
- #else
- virtual
- #endif
- bool AutoSize {
- get {
- return auto_size;
- }
- set {
- if (value != auto_size) {
- auto_size = value;
- if (auto_size) {
- if (PreferredHeight != ClientSize.Height) {
- ClientSize = new Size(ClientSize.Width, PreferredHeight);
- }
- }
- OnAutoSizeChanged(EventArgs.Empty);
- }
- }
- }
- [DispId(-501)]
- public override System.Drawing.Color BackColor {
- get {
- return base.BackColor;
- }
- set {
- backcolor_set = true;
- base.BackColor = ChangeBackColor (value);
- }
- }
- [Browsable(false)]
- [EditorBrowsable(EditorBrowsableState.Never)]
- public override System.Drawing.Image BackgroundImage {
- get {
- return base.BackgroundImage;
- }
- set {
- base.BackgroundImage = value;
- }
- }
- [DefaultValue(BorderStyle.Fixed3D)]
- [DispId(-504)]
- [MWFCategory("Appearance")]
- public BorderStyle BorderStyle {
- get { return actual_border_style; }
- set {
- if (value == actual_border_style)
- return;
- if (actual_border_style != BorderStyle.Fixed3D || value != BorderStyle.Fixed3D)
- Invalidate ();
- actual_border_style = value;
- if (value != BorderStyle.Fixed3D)
- value = BorderStyle.None;
- InternalBorderStyle = value;
- OnBorderStyleChanged(EventArgs.Empty);
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public bool CanUndo {
- get {
- return document.undo.CanUndo;
- }
- }
- [DispId(-513)]
- public override System.Drawing.Color ForeColor {
- get {
- return base.ForeColor;
- }
- set {
- base.ForeColor = value;
- }
- }
- [DefaultValue(true)]
- [MWFCategory("Behavior")]
- public bool HideSelection {
- get {
- return hide_selection;
- }
- set {
- if (value != hide_selection) {
- hide_selection = value;
- OnHideSelectionChanged(EventArgs.Empty);
- }
- if (hide_selection) {
- document.selection_visible = false;
- } else {
- document.selection_visible = true;
- }
- document.InvalidateSelectionArea();
- }
- }
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [Editor("System.Windows.Forms.Design.StringArrayEditor, " + Consts.AssemblySystem_Design, typeof(System.Drawing.Design.UITypeEditor))]
- [Localizable(true)]
- [MWFCategory("Appearance")]
- public string[] Lines {
- get {
- int count;
- ArrayList lines;
- count = document.Lines;
- // Handle empty document
- if ((count == 1) && (document.GetLine (1).text.Length == 0)) {
- return new string [0];
- }
- lines = new ArrayList ();
- int i = 1;
- while (i <= count) {
- Line line;
- StringBuilder lt = new StringBuilder ();
- do {
- line = document.GetLine (i++);
- lt.Append (line.TextWithoutEnding ());
- } while (line.ending == LineEnding.Wrap && i <= count);
- lines.Add (lt.ToString ());
- }
- return (string []) lines.ToArray (typeof (string));
- }
- set {
- int i;
- int l;
- SolidBrush brush;
- document.Empty();
- l = value.Length;
- brush = ThemeEngine.Current.ResPool.GetSolidBrush(this.ForeColor);
- document.SuspendRecalc ();
- for (i = 0; i < l; i++) {
- // Don't add the last line if it is just an empty line feed
- // the line feed is reflected in the previous line's ending
- if (i == l - 1 && value [i].Length == 0)
- break;
- LineEnding ending = LineEnding.Rich;
- if (value [i].EndsWith ("\r"))
- ending = LineEnding.Hard;
- document.Add (i + 1, CaseAdjust (value [i]), alignment, Font, brush, ending);
- }
- document.ResumeRecalc (true);
- // CalculateDocument();
- OnTextChanged(EventArgs.Empty);
- }
- }
- [DefaultValue(32767)]
- [Localizable(true)]
- [MWFCategory("Behavior")]
- public virtual int MaxLength {
- get {
- if (max_length == 2147483646) { // We don't distinguish between single and multi-line limits
- return 0;
- }
- return max_length;
- }
- set {
- if (value != max_length) {
- max_length = value;
- }
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public bool Modified {
- get {
- return modified;
- }
- set {
- if (value != modified) {
- modified = value;
- OnModifiedChanged(EventArgs.Empty);
- }
- }
- }
- [DefaultValue(false)]
- [Localizable(true)]
- [RefreshProperties(RefreshProperties.All)]
- [MWFCategory("Behavior")]
- public virtual bool Multiline {
- get {
- return document.multiline;
- }
- set {
- if (value != document.multiline) {
- document.multiline = value;
- // Make sure we update our size; the user may have already set the size before going to multiline
- if (document.multiline && requested_height != -1) {
- Height = requested_height;
- requested_height = -1;
- }
- if (Parent != null)
- Parent.PerformLayout ();
- OnMultilineChanged(EventArgs.Empty);
- }
- if (document.multiline) {
- document.Wrap = word_wrap;
- document.PasswordChar = "";
- } else {
- document.Wrap = false;
- if (this.password_char != '\0') {
- document.PasswordChar = password_char.ToString();
- } else {
- document.PasswordChar = "";
- }
- }
- if (IsHandleCreated)
- CalculateDocument ();
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [EditorBrowsable(EditorBrowsableState.Advanced)]
- public int PreferredHeight {
- get {
- return Font.Height + (BorderStyle != BorderStyle.Fixed3D ? 0 : 7);
- }
- }
- [DefaultValue(false)]
- [MWFCategory("Behavior")]
- public bool ReadOnly {
- get {
- return read_only;
- }
- set {
- if (value != read_only) {
- read_only = value;
- #if NET_2_0
- if (!backcolor_set) {
- if (read_only)
- background_color = SystemColors.Control;
- else
- background_color = SystemColors.Window;
- }
- #endif
- OnReadOnlyChanged(EventArgs.Empty);
- Invalidate ();
- }
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public virtual string SelectedText {
- get {
- return document.GetSelection();
- }
- set {
- document.ReplaceSelection(CaseAdjust(value), false);
- ScrollToCaret();
- OnTextChanged(EventArgs.Empty);
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public virtual int SelectionLength {
- get {
- int res = document.SelectionLength ();
- if (res == 0)
- res = -1;
- return res;
- }
- set {
- if (value < 0) {
- throw new ArgumentException(String.Format("{0} is not a valid value", value), "value");
- }
- if (value != 0) {
- int start;
- Line line;
- LineTag tag;
- int pos;
- selection_length = value;
- start = document.LineTagToCharIndex(document.selection_start.line, document.selection_start.pos);
- document.CharIndexToLineTag(start + value, out line, out tag, out pos);
- document.SetSelectionEnd(line, pos, true);
- document.PositionCaret(line, pos);
- } else {
- selection_length = -1;
- document.SetSelectionEnd(document.selection_start.line, document.selection_start.pos, true);
- document.PositionCaret(document.selection_start.line, document.selection_start.pos);
- }
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- public int SelectionStart {
- get {
- int index;
- index = document.LineTagToCharIndex(document.selection_start.line, document.selection_start.pos);
- return index;
- }
- set {
- document.SetSelectionStart(value, false);
- if (selection_length > -1 ) {
- document.SetSelectionEnd(value + selection_length, true);
- } else {
- document.SetSelectionEnd(value, true);
- }
- document.PositionCaret(document.selection_start.line, document.selection_start.pos);
- ScrollToCaret();
- }
- }
- #if NET_2_0
- public virtual bool ShortcutsEnabled {
- get { return shortcuts_enabled; }
- set { shortcuts_enabled = value; }
- }
- #endif
- [Localizable(true)]
- public override string Text {
- get {
- if (document == null || document.Root == null || document.Root.text == null) {
- return string.Empty;
- }
- StringBuilder sb = new StringBuilder();
- Line line = null;
- for (int i = 1; i <= document.Lines; i++) {
- line = document.GetLine (i);
- sb.Append(line.text.ToString ());
- }
- return sb.ToString();
- }
- set {
- if (value == Text)
- return;
- if ((value != null) && (value != "")) {
- document.Empty ();
- document.Insert (document.GetLine (1), 0, false, value);
-
- document.PositionCaret (document.GetLine (1), 0);
- document.SetSelectionToCaret (true);
- ScrollToCaret ();
- } else {
- document.Empty();
- if (IsHandleCreated)
- CalculateDocument ();
- }
- // set the var so OnModifiedChanged is not raised
- modified = false;
- OnTextChanged(EventArgs.Empty);
- }
- }
- [Browsable(false)]
- public virtual int TextLength {
- get {
- if (document == null || document.Root == null || document.Root.text == null) {
- return 0;
- }
- return Text.Length;
- }
- }
- [DefaultValue(true)]
- [Localizable(true)]
- [MWFCategory("Behavior")]
- public bool WordWrap {
- get {
- return word_wrap;
- }
- set {
- if (value != word_wrap) {
- if (document.multiline) {
- word_wrap = value;
- document.Wrap = value;
- }
- }
- }
- }
- #endregion // Public Instance Properties
- #region Protected Instance Properties
- protected override CreateParams CreateParams {
- get {
- return base.CreateParams;
- }
- }
- protected override System.Drawing.Size DefaultSize {
- get {
- return new Size(100, 20);
- }
- }
- #endregion // Protected Instance Properties
- #region Public Instance Methods
- public void AppendText(string text) {
- document.MoveCaret (CaretDirection.CtrlEnd);
- document.Insert (document.caret.line, document.caret.pos, false, text);
- document.MoveCaret (CaretDirection.CtrlEnd);
- document.SetSelectionToCaret (true);
- OnTextChanged(EventArgs.Empty);
- }
- public void Clear() {
- Text = null;
- }
- public void ClearUndo() {
- document.undo.Clear();
- }
- public void Copy() {
- DataObject o;
- o = new DataObject(DataFormats.Text, SelectedText);
- if (this is RichTextBox) {
- o.SetData(DataFormats.Rtf, ((RichTextBox)this).SelectedRtf);
- }
- Clipboard.SetDataObject(o);
- }
- public void Cut() {
- DataObject o;
- o = new DataObject(DataFormats.Text, SelectedText);
- if (this is RichTextBox) {
- o.SetData(DataFormats.Rtf, ((RichTextBox)this).SelectedRtf);
- }
- Clipboard.SetDataObject (o);
- document.undo.BeginUserAction (Locale.GetText ("Cut"));
- document.ReplaceSelection (String.Empty, false);
- document.undo.EndUserAction ();
- }
- public void Paste() {
- Paste(Clipboard.GetDataObject(), null, false);
- }
- public void ScrollToCaret() {
- if (IsHandleCreated) {
- CaretMoved(this, EventArgs.Empty);
- }
- }
- public void Select(int start, int length) {
- SelectionStart = start;
- SelectionLength = length;
- }
- public void SelectAll() {
- Line last;
- last = document.GetLine(document.Lines);
- document.SetSelectionStart(document.GetLine(1), 0, false);
- document.SetSelectionEnd(last, last.text.Length, true);
- document.PositionCaret (document.selection_end.line, document.selection_end.pos);
- selection_length = -1;
- CaretMoved (this, null);
- document.DisplayCaret ();
- }
- /// Sync with above (except the invalidation of course)
- internal void SelectAllNoInvalidate ()
- {
- Line last;
- last = document.GetLine(document.Lines);
- document.SetSelectionStart(document.GetLine(1), 0, false);
- document.SetSelectionEnd(last, last.text.Length, false);
- document.PositionCaret (document.selection_end.line, document.selection_end.pos);
- selection_length = -1;
- }
- public override string ToString() {
- return String.Concat (base.ToString (), ", Text: ", Text);
- }
- public void Undo() {
- document.undo.Undo();
- }
- #endregion // Public Instance Methods
- #region Protected Instance Methods
- protected override void CreateHandle() {
- CalculateDocument ();
- base.CreateHandle ();
- document.AlignCaret();
- ScrollToCaret();
- }
- protected override bool IsInputKey(Keys keyData) {
- if ((keyData & Keys.Alt) != 0) {
- return base.IsInputKey(keyData);
- }
- switch (keyData & Keys.KeyCode) {
- case Keys.Enter: {
- if (accepts_return) {
- return true;
- }
- return false;
- }
- case Keys.Tab: {
- if (accepts_tab && document.multiline) {
- if ((keyData & Keys.Control) == 0) {
- return true;
- }
- }
- return false;
- }
- case Keys.Left:
- case Keys.Right:
- case Keys.Up:
- case Keys.Down:
- case Keys.PageUp:
- case Keys.PageDown:
- case Keys.Home:
- case Keys.End: {
- return true;
- }
- }
- return false;
- }
- protected virtual void OnAcceptsTabChanged(EventArgs e) {
- EventHandler eh = (EventHandler)(Events [AcceptsTabChangedEvent]);
- if (eh != null)
- eh (this, e);
- }
- protected virtual void OnAutoSizeChanged(EventArgs e) {
- EventHandler eh = (EventHandler)(Events [AutoSizeChangedEvent]);
- if (eh != null)
- eh (this, e);
- }
- protected virtual void OnBorderStyleChanged(EventArgs e) {
- EventHandler eh = (EventHandler)(Events [BorderStyleChangedEvent]);
- if (eh != null)
- eh (this, e);
- }
- protected override void OnFontChanged(EventArgs e) {
- base.OnFontChanged (e);
- if (auto_size && !document.multiline) {
- if (PreferredHeight != ClientSize.Height) {
- Height = PreferredHeight;
- }
- }
- }
- protected override void OnHandleCreated(EventArgs e) {
- base.OnHandleCreated (e);
- }
- protected override void OnHandleDestroyed(EventArgs e) {
- base.OnHandleDestroyed (e);
- }
- protected virtual void OnHideSelectionChanged(EventArgs e) {
- EventHandler eh = (EventHandler)(Events [HideSelectionChangedEvent]);
- if (eh != null)
- eh (this, e);
- }
- protected virtual void OnModifiedChanged(EventArgs e) {
- EventHandler eh = (EventHandler)(Events [ModifiedChangedEvent]);
- if (eh != null)
- eh (this, e);
- }
- protected virtual void OnMultilineChanged(EventArgs e) {
- EventHandler eh = (EventHandler)(Events [MultilineChangedEvent]);
- if (eh != null)
- eh (this, e);
- }
- protected virtual void OnReadOnlyChanged(EventArgs e) {
- EventHandler eh = (EventHandler)(Events [ReadOnlyChangedEvent]);
- if (eh != null)
- eh (this, e);
- }
- protected override bool ProcessDialogKey(Keys keyData) {
- return base.ProcessDialogKey(keyData);
- }
- private bool ProcessKey(Keys keyData) {
- bool control;
- bool shift;
- control = (Control.ModifierKeys & Keys.Control) != 0;
- shift = (Control.ModifierKeys & Keys.Shift) != 0;
- if (shortcuts_enabled) {
- switch (keyData & Keys.KeyCode) {
- case Keys.X:
- if (control) {
- Cut();
- return true;
- }
- return false;
- case Keys.C:
- if (control) {
- Copy();
- return true;
- }
- return false;
- case Keys.V:
- if (control) {
- return Paste(Clipboard.GetDataObject(), null, true);
- }
- return false;
- case Keys.Z:
- if (control) {
- Undo();
- return true;
- }
- return false;
- case Keys.A:
- if (control) {
- SelectAll();
- return true;
- }
- return false;
- case Keys.Insert:
- if (shift) {
- Paste(Clipboard.GetDataObject(), null, true);
- return true;
- }
- if (control) {
- Copy();
- return true;
- }
- return false;
- case Keys.Delete:
- if (shift) {
- Cut();
- return true;
- }
- if (read_only)
- break;
- if (document.selection_visible) {
- document.ReplaceSelection("", false);
- } else {
- // DeleteChar only deletes on the line, doesn't do the combine
- if (document.CaretPosition == document.CaretLine.TextLengthWithoutEnding ()) {
- if (document.CaretLine.LineNo < document.Lines) {
- Line line;
- line = document.GetLine(document.CaretLine.LineNo + 1);
- // this line needs to be invalidated before it is combined
- // because once it is combined, all it's coordinates will
- // have changed
- document.Invalidate (line, 0, line, line.text.Length);
- document.Combine(document.CaretLine, line);
- document.UpdateView(document.CaretLine,
- document.Lines, 0);
- }
- } else {
- if (!control) {
- document.DeleteChar(document.CaretTag, document.CaretPosition, true);
- } else {
- int end_pos;
- end_pos = document.CaretPosition;
- while ((end_pos < document.CaretLine.Text.Length) && !Document.IsWordSeparator(document.CaretLine.Text[end_pos])) {
- end_pos++;
- }
- if (end_pos < document.CaretLine.Text.Length) {
- end_pos++;
- }
- document.DeleteChars(document.CaretTag, document.CaretPosition, end_pos - document.CaretPosition);
- }
- }
- }
- OnTextChanged(EventArgs.Empty);
- document.AlignCaret();
- document.UpdateCaret();
- CaretMoved(this, null);
- return true;
- }
- }
- switch (keyData & Keys.KeyCode) {
- case Keys.Left: {
- if (control) {
- document.MoveCaret(CaretDirection.WordBack);
- } else {
- if (!document.selection_visible || shift) {
- document.MoveCaret(CaretDirection.CharBack);
- } else {
- document.MoveCaret(CaretDirection.SelectionStart);
- }
- }
-
- if (!shift) {
- document.SetSelectionToCaret(true);
- } else {
- document.SetSelectionToCaret(false);
- }
- CaretMoved(this, null);
- return true;
- }
- case Keys.Right: {
- if (control) {
- document.MoveCaret(CaretDirection.WordForward);
- } else {
- if (!document.selection_visible || shift) {
- document.MoveCaret(CaretDirection.CharForward);
- } else {
- document.MoveCaret(CaretDirection.SelectionEnd);
- }
- }
- if (!shift) {
- document.SetSelectionToCaret(true);
- } else {
- document.SetSelectionToCaret(false);
- }
- CaretMoved(this, null);
- return true;
- }
- case Keys.Up: {
- if (control) {
- if (document.CaretPosition == 0) {
- document.MoveCaret(CaretDirection.LineUp);
- } else {
- document.MoveCaret(CaretDirection.Home);
- }
- } else {
- document.MoveCaret(CaretDirection.LineUp);
- }
- if ((Control.ModifierKeys & Keys.Shift) == 0) {
- document.SetSelectionToCaret(true);
- } else {
- document.SetSelectionToCaret(false);
- }
- CaretMoved(this, null);
- return true;
- }
- case Keys.Down: {
- if (control) {
- if (document.CaretPosition == document.CaretLine.Text.Length) {
- document.MoveCaret(CaretDirection.LineDown);
- } else {
- document.MoveCaret(CaretDirection.End);
- }
- } else {
- document.MoveCaret(CaretDirection.LineDown);
- }
- if ((Control.ModifierKeys & Keys.Shift) == 0) {
- document.SetSelectionToCaret(true);
- } else {
- document.SetSelectionToCaret(false);
- }
- CaretMoved(this, null);
- return true;
- }
- case Keys.Home: {
- if ((Control.ModifierKeys & Keys.Control) != 0) {
- document.MoveCaret(CaretDirection.CtrlHome);
- } else {
- document.MoveCaret(CaretDirection.Home);
- }
- if ((Control.ModifierKeys & Keys.Shift) == 0) {
- document.SetSelectionToCaret(true);
- } else {
- document.SetSelectionToCaret(false);
- }
- CaretMoved(this, null);
- return true;
- }
- case Keys.End: {
- if ((Control.ModifierKeys & Keys.Control) != 0) {
- document.MoveCaret(CaretDirection.CtrlEnd);
- } else {
- document.MoveCaret(CaretDirection.End);
- }
- if ((Control.ModifierKeys & Keys.Shift) == 0) {
- document.SetSelectionToCaret(true);
- } else {
- document.SetSelectionToCaret(false);
- }
- CaretMoved(this, null);
- return true;
- }
- case Keys.Enter: {
- // ignoring accepts_return, fixes bug #76355
- if (!read_only && (accepts_return || (FindForm() != null && FindForm().AcceptButton == null) || ((Control.ModifierKeys & Keys.Control) != 0))) {
- Line line;
- if (document.selection_visible) {
- document.ReplaceSelection("\n", false);
- }
- line = document.CaretLine;
- document.Split (document.CaretLine, document.CaretTag, document.CaretPosition);
- line.ending = LineEnding.Rich;
- document.InsertString (line, line.text.Length,
- document.LineEndingToString (line.ending));
- OnTextChanged(EventArgs.Empty);
- document.UpdateView (line, document.Lines - line.line_no, 0);
- CaretMoved(this, null);
- return true;
- }
- break;
- }
- case Keys.Tab: {
- if (!read_only && accepts_tab && document.multiline) {
- document.InsertChar(document.CaretLine, document.CaretPosition, '\t');
- if (document.selection_visible) {
- document.ReplaceSelection("", false);
- }
- document.SetSelectionToCaret(true);
- OnTextChanged(EventArgs.Empty);
- CaretMoved(this, null);
- return true;
- }
- break;
- }
- case Keys.PageUp: {
- if ((Control.ModifierKeys & Keys.Control) != 0) {
- document.MoveCaret(CaretDirection.CtrlPgUp);
- } else {
- document.MoveCaret(CaretDirection.PgUp);
- }
- document.DisplayCaret ();
- return true;
- }
- case Keys.PageDown: {
- if ((Control.ModifierKeys & Keys.Control) != 0) {
- document.MoveCaret(CaretDirection.CtrlPgDn);
- } else {
- document.MoveCaret(CaretDirection.PgDn);
- }
- document.DisplayCaret ();
- return true;
- }
- }
- return false;
- }
- private void HandleBackspace(bool control) {
- bool fire_changed;
- fire_changed = false;
- // delete only deletes on the line, doesn't do the combine
- if (document.selection_visible) {
- document.undo.BeginUserAction (Locale.GetText ("Delete"));
- document.ReplaceSelection("", false);
- document.undo.EndUserAction ();
- fire_changed = true;
- }
- document.SetSelectionToCaret(true);
- if (document.CaretPosition == 0) {
- if (document.CaretLine.LineNo > 1) {
- Line line;
- int new_caret_pos;
- line = document.GetLine(document.CaretLine.LineNo - 1);
- new_caret_pos = line.TextLengthWithoutEnding ();
- // Invalidate the old line position before we do the combine
- document.Invalidate (line, 0, line, line.text.Length);
- document.Combine(line, document.CaretLine);
- document.UpdateView(line, document.Lines - line.LineNo, 0);
- document.PositionCaret(line, new_caret_pos);
- document.SetSelectionToCaret (true);
- document.UpdateCaret();
- fire_changed = true;
- }
- } else {
- if (!control || document.CaretPosition == 0) {
- // Move before we delete because the delete will change positions around
- // if we cross a wrap border
- LineTag tag = document.CaretTag;
- int pos = document.CaretPosition;
- document.MoveCaret (CaretDirection.CharBack);
- document.DeleteChar (tag, pos, false);
- document.SetSelectionToCaret (true);
- } else {
- int start_pos;
-
- start_pos = document.CaretPosition - 1;
- while ((start_pos > 0) && !Document.IsWordSeparator(document.CaretLine.Text[start_pos - 1])) {
- start_pos--;
- }
- document.undo.BeginUserAction (Locale.GetText ("Delete"));
- document.DeleteChars(document.CaretTag, start_pos, document.CaretPosition - start_pos);
- document.undo.EndUserAction ();
- document.PositionCaret(document.CaretLine, start_pos);
- document.SetSelectionToCaret (true);
- }
- document.UpdateCaret();
- fire_changed = true;
- }
- if (fire_changed) {
- OnTextChanged(EventArgs.Empty);
- }
- CaretMoved(this, null);
- }
- protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
- // Make sure we don't get sized bigger than we want to be
- if (!richtext) {
- if (!document.multiline) {
- if (height != PreferredHeight) {
- requested_height = height;
- height = PreferredHeight;
- specified |= BoundsSpecified.Height;
- }
- }
- }
- base.SetBoundsCore (x, y, width, height, specified);
- }
- protected override void WndProc(ref Message m) {
- switch ((Msg)m.Msg) {
- case Msg.WM_KEYDOWN: {
- if (ProcessKeyMessage(ref m) || ProcessKey((Keys)m.WParam.ToInt32() | XplatUI.State.ModifierKeys)) {
- m.Result = IntPtr.Zero;
- return;
- }
- DefWndProc (ref m);
- return;
- }
- case Msg.WM_CHAR: {
- int ch;
- if (ProcessKeyMessage(ref m)) {
- m.Result = IntPtr.Zero;
- return;
- }
- if (read_only) {
- return;
- }
- m.Result = IntPtr.Zero;
- ch = m.WParam.ToInt32();
- if (ch == 127) {
- HandleBackspace(true);
- } else if (ch >= 32) {
- if (document.selection_visible) {
- document.ReplaceSelection("", false);
- }
- char c = (char)m.WParam;
- switch (character_casing) {
- case CharacterCasing.Upper:
- c = Char.ToUpper((char) m.WParam);
- break;
- case CharacterCasing.Lower:
- c = Char.ToLower((char) m.WParam);
- break;
- }
- if (document.Length < max_length) {
- document.InsertCharAtCaret(c, true);
- #if NET_2_0
- OnTextUpdate ();
- #endif
- OnTextChanged(EventArgs.Empty);
- CaretMoved(this, null);
- } else {
- XplatUI.AudibleAlert();
- }
- return;
- } else if (ch == 8) {
- HandleBackspace(false);
- }
- return;
- }
- case Msg.WM_SETFOCUS:
- base.WndProc(ref m);
- document.CaretHasFocus ();
- break;
- case Msg.WM_KILLFOCUS:
- base.WndProc(ref m);
- document.CaretLostFocus ();
- break;
- default:
- base.WndProc(ref m);
- return;
- }
- }
- #endregion // Protected Instance Methods
- #region Events
- static object AcceptsTabChangedEvent = new object ();
- static object AutoSizeChangedEvent = new object ();
- static object BorderStyleChangedEvent = new object ();
- static object HideSelectionChangedEvent = new object ();
- static object ModifiedChangedEvent = new object ();
- static object MultilineChangedEvent = new object ();
- static object ReadOnlyChangedEvent = new object ();
- static object HScrolledEvent = new object ();
- static object VScrolledEvent = new object ();
- public event EventHandler AcceptsTabChanged {
- add { Events.AddHandler (AcceptsTabChangedEvent, value); }
- remove { Events.RemoveHandler (AcceptsTabChangedEvent, value); }
- }
- public new event EventHandler AutoSizeChanged {
- add { Events.AddHandler (AutoSizeChangedEvent, value); }
- remove { Events.RemoveHandler (AutoSizeChangedEvent, value); }
- }
- public event EventHandler BorderStyleChanged {
- add { Events.AddHandler (BorderStyleChangedEvent, value); }
- remove { Events.RemoveHandler (BorderStyleChangedEvent, value); }
- }
- public event EventHandler HideSelectionChanged {
- add { Events.AddHandler (HideSelectionChangedEvent, value); }
- remove { Events.RemoveHandler (HideSelectionChangedEvent, value); }
- }
- public event EventHandler ModifiedChanged {
- add { Events.AddHandler (ModifiedChangedEvent, value); }
- remove { Events.RemoveHandler (ModifiedChangedEvent, value); }
- }
- public event EventHandler MultilineChanged {
- add { Events.AddHandler (MultilineChangedEvent, value); }
- remove { Events.RemoveHandler (MultilineChangedEvent, value); }
- }
- public event EventHandler ReadOnlyChanged {
- add { Events.AddHandler (ReadOnlyChangedEvent, value); }
- remove { Events.RemoveHandler (ReadOnlyChangedEvent, value); }
- }
- internal event EventHandler HScrolled {
- add { Events.AddHandler (HScrolledEvent, value); }
- remove { Events.RemoveHandler (HScrolledEvent, value); }
- }
- internal event EventHandler VScrolled {
- add { Events.AddHandler (VScrolledEvent, value); }
- remove { Events.RemoveHandler (VScrolledEvent, value); }
- }
- [Browsable(false)]
- [EditorBrowsable(EditorBrowsableState.Never)]
- public new event EventHandler BackgroundImageChanged {
- add { base.BackgroundImageChanged += value; }
- remove { base.BackgroundImageChanged -= value; }
- }
- [Browsable(false)]
- [EditorBrowsable(EditorBrowsableState.Advanced)]
- public new event EventHandler Click {
- add { base.Click += value; }
- remove { base.Click -= value; }
- }
- // XXX should this not manipulate base.Paint?
- [Browsable(false)]
- [EditorBrowsable(EditorBrowsableState.Never)]
- public new event PaintEventHandler Paint;
- #endregion // Events
- #region Private Methods
- internal Document Document {
- get {
- return document;
- }
- set {
- document = value;
- }
- }
- internal bool ShowSelection {
- get {
- if (show_selection || !hide_selection) {
- return true;
- }
- return has_focus;
- }
- set {
- if (show_selection == value)
- return;
- show_selection = value;
- // Currently InvalidateSelectionArea is commented out so do a full invalidate
- document.InvalidateSelectionArea();
- }
- }
- internal Graphics CreateGraphicsInternal() {
- if (IsHandleCreated) {
- return base.CreateGraphics();
- }
- return Graphics.FromImage(bmp);
- }
- #if Debug
- static int current;
- #endif
- internal override void OnPaintInternal (PaintEventArgs pevent) {
- // Fill background
- if (backcolor_set || (Enabled && !read_only)) {
- pevent.Graphics.FillRectangle(ThemeEngine.Current.ResPool.GetSolidBrush(BackColor), pevent.ClipRectangle);
- } else {
- pevent.Graphics.FillRectangle(ThemeEngine.Current.ResPool.GetSolidBrush(ThemeEngine.Current.ColorControl), pevent.ClipRectangle);
- }
-
- // Draw the viewable document
- document.Draw(pevent.Graphics, pevent.ClipRectangle);
- //
- // OnPaint does not get raised on MS (see bug #80639)
- //
- pevent.Handled = true;
- }
- private bool IsDoubleClick (MouseEventArgs e)
- {
- TimeSpan interval = DateTime.Now - click_last;
- if (interval.TotalMilliseconds > SystemInformation.DoubleClickTime)
- return false;
- Size dcs = SystemInformation.DoubleClickSize;
- if (e.X < click_point_x - dcs.Width / 2 || e.X > click_point_x + dcs.Width / 2)
- return false;
- if (e.Y < click_point_y - dcs.Height / 2 || e.Y > click_point_y + dcs.Height / 2)
- return false;
- return true;
- }
- private void TextBoxBase_MouseDown (object sender, MouseEventArgs e)
- {
- if (e.Button == MouseButtons.Left) {
- document.PositionCaret(e.X + document.ViewPortX, e.Y + document.ViewPortY);
- if (IsDoubleClick (e)) {
- switch (click_mode) {
- case CaretSelection.Position:
- SelectWord ();
- click_mode = CaretSelection.Word;
- break;
- case CaretSelection.Word:
- if (this is TextBox) {
- document.SetSelectionToCaret (true);
- click_mode = CaretSelection.Position;
- break;
- }
- document.ExpandSelection (CaretSelection.Line, false);
- click_mode = CaretSelection.Line;
- break;
- case CaretSelection.Line:
- // Gotta do this first because Exanding to a word
- // from a line doesn't really work
- document.SetSelectionToCaret (true);
- SelectWord ();
- click_mode = CaretSelection.Word;
- break;
- }
- } else {
- document.SetSelectionToCaret (true);
- click_mode = CaretSelection.Position;
- }
- click_point_x = e.X;
- click_point_y = e.Y;
- click_last = DateTime.Now;
- }
- if ((e.Button == MouseButtons.Middle) && (((int)Environment.OSVersion.Platform == 4) || ((int)Environment.OSVersion.Platform == 128))) {
- Document.Marker marker;
- marker.tag = document.FindCursor(e.X + document.ViewPortX, e.Y + document.ViewPortY, out marker.pos);
- marker.line = marker.tag.line;
- marker.height = marker.tag.height;
- document.SetSelection(marker.line, marker.pos, marker.line, marker.pos);
- Paste (Clipboard.GetDataObject (true), null, true);
- }
- }
- private void TextBoxBase_MouseUp(object sender, MouseEventArgs e) {
- if (e.Button == MouseButtons.Left) {
- if (click_mode == CaretSelection.Position) {
- document.SetSelectionToCaret(false);
- document.DisplayCaret();
- }
- if (scroll_timer != null) {
- scroll_timer.Enabled = false;
- }
- return;
- }
- }
- private void PositionControls ()
- {
- if (hscroll.Visible) {
- //vscroll.Maximum += hscroll.Height;
- canvas_height = ClientSize.Height - hscroll.Height;
- } else {
- canvas_height = ClientSize.Height;
- }
- if (vscroll.Visible) {
- //hscroll.Maximum += vscroll.Width;
- canvas_width = ClientSize.Width - vscroll.Width;
- } else {
- canvas_width = ClientSize.Width;
- }
- document.ViewPortWidth = canvas_width;
- document.ViewPortHeight = canvas_height;
- if (canvas_height < 1 || canvas_width < 1)
- return;
- // We always move them, they just might not be displayed
- hscroll.Bounds = new Rectangle (ClientRectangle.Left,
- Math.Max (0, ClientRectangle.Height - hscroll.Height),
- Math.Max (0, ClientSize.Width - (vscroll.Visible ? vscroll.Width : 0)),
- hscroll.Height);
- vscroll.Bounds = new Rectangle (Math.Max (0, ClientRectangle.Right - vscroll.Width),
- ClientRectangle.Top, vscroll.Width,
- Math.Max (0, ClientSize.Height - (hscroll.Visible ? hscroll.Height : 0)));
-
- }
- private void TextBoxBase_SizeChanged(object sender, EventArgs e) {
- if (IsHandleCreated)
- CalculateDocument ();
- }
- private void TextBoxBase_MouseWheel(object sender, MouseEventArgs e) {
- if (!vscroll.Enabled) {
- return;
- }
- if (e.Delta < 0)
- vscroll.Value = Math.Min (vscroll.Value + SystemInformation.MouseWheelScrollLines * 5,
- Math.Max (0, vscroll.Maximum - document.ViewPortHeight + 1));
- else
- vscroll.Value = Math.Max (0, vscroll.Value - SystemInformation.MouseWheelScrollLines * 5);
- }
- internal virtual void SelectWord ()
- {
- StringBuilder s = document.caret.line.text;
- int start = document.caret.pos;
- int end = document.caret.pos;
- if (s.Length < 1) {
- if (document.caret.line.line_no >= document.Lines)
- return;
- Line line = document.GetLine (document.caret.line.line_no + 1);
- document.PositionCaret (line, 0);
- return;
- }
- if (start > 0) {
- start--;
- end--;
- }
- // skip whitespace until we hit a word
- while (start > 0 && s [start] == ' ')
- start--;
- if (start > 0) {
- while (start > 0 && (s [start] != ' '))
- start--;
- if (s [start] == ' ')
- start++;
- }
- if (s [end] == ' ') {
- while (end < s.Length && s [end] == ' ')
- end++;
- } else {
- while (end < s.Length && s [end] != ' ')
- end++;
- while (end < s.Length && s [end] == ' ')
- end++;
- }
- document.SetSelection (document.caret.line, start, document.caret.line, end);
- document.PositionCaret (document.selection_end.line, document.selection_end.pos);
- document.DisplayCaret();
- }
- internal void CalculateDocument()
- {
- CalculateScrollBars ();
- document.RecalculateDocument (CreateGraphicsInternal ());
- if (document.caret.line != null && document.caret.line.Y < document.ViewPortHeight) {
- // The window has probably been resized, making the entire thing visible, so
- // we need to set the scroll position back to zero.
- vscroll.Value = 0;
- }
- Invalidate();
- }
- internal void CalculateScrollBars () {
- // FIXME - need separate calculations for center and right alignment
- //
- if (document.Width >= document.ViewPortWidth) {
- hscroll.SetValues (0, Math.Max (1, document.Width), -1,
- document.ViewPortWidth < 0 ? 0 : document.ViewPortWidth);
- if (document.multiline)
- hscroll.Enabled = true;
- } else {
- hscroll.Enabled = false;
- hscroll.Maximum = document.ViewPortWidth;
- }
- if (document.Height >= document.ViewPortHeight) {
- vscroll.SetValues (0, Math.Max (1, document.Height), -1,
- document.ViewPortHeight < 0 ? 0 : document.ViewPortHeight);
- if (document.multiline)
- vscroll.Enabled = true;
- } else {
- vscroll.Enabled = false;
- vscroll.Maximum = document.ViewPortHeight;
- }
- if (!WordWrap) {
- if ((scrollbars & RichTextBoxScrollBars.Horizontal) != 0) {
- if (((scrollbars & RichTextBoxScrollBars.ForcedHorizontal) != 0) || hscroll.Enabled) {
- hscroll.Visible = true;
- } else {
- hscroll.Visible = false;
- }
- } else {
- hscroll.Visible = false;
- }
- }
- if ((scrollbars & RichTextBoxScrollBars.Vertical) != 0) {
- if (((scrollbars & RichTextBoxScrollBars.ForcedVertical) != 0) || vscroll.Enabled) {
- vscroll.Visible = true;
- } else {
- vscroll.Visible = false;
- }
- } else {
- vscroll.Visible = false;
- }
- PositionControls ();
- }
- private void document_WidthChanged(object sender, EventArgs e) {
- CalculateScrollBars();
- }
- private void document_HeightChanged(object sender, EventArgs e) {
- CalculateScrollBars();
- }
- private void hscroll_ValueChanged(object sender, EventArgs e) {
- int old_viewport_x;
- old_viewport_x = document.ViewPortX;
- document.ViewPortX = this.hscroll.Value;
- //
- // Before scrolling we want to destroy the caret, then draw a new one after the scroll
- // the reason for this is that scrolling changes the coordinates of the caret, and we
- // will get tracers if we don't
- //
- if (Focused)
- document.CaretLostFocus ();
- if (vscroll.Visible) {
- XplatUI.ScrollWindow(this.Handle, new Rectangle(0, 0, ClientSize.Width - vscroll.Width, ClientSize.Height), old_viewport_x - this.hscroll.Value, 0, false);
- } else {
- XplatUI.ScrollWindow(this.Handle, ClientRectangle, old_viewport_x - this.hscroll.Value, 0, false);
- }
- if (Focused)
- document.CaretHasFocus ();
- EventHandler eh = (EventHandler)(Events [HScrolledEvent]);
- if (eh != null)
- eh (this, EventArgs.Empty);
- }
- private void vscroll_ValueChanged(object sender, EventArgs e) {
- int old_viewport_y;
- old_viewport_y = document.ViewPortY;
- document.ViewPortY = this.vscroll.Value;
- //
- // Before scrolling we want to destroy the caret, then draw a new one after the scroll
- // the reason for this is that scrolling changes the coordinates of the caret, and we
- // will get tracers if we don't
- //
- if (Focused)
- document.CaretLostFocus ();
- if (hscroll.Visible) {
- XplatUI.ScrollWindow(this.Handle, new Rectangle(0, 0, ClientSize.Width, ClientSize.Height - hscroll.Height), 0, old_viewport_y - this.vscroll.Value, false);
- } else {
- XplatUI.ScrollWindow(this.Handle, ClientRectangle, 0, old_viewport_y - this.vscroll.Value, false);
- }
- if (Focused)
- document.CaretHasFocus ();
- EventHandler eh = (EventHandler)(Events [VScrolledEvent]);
- if (eh != null)
- eh (this, EventArgs.Empty);
- }
- private void TextBoxBase_MouseMove(object sender, MouseEventArgs e) {
- // FIXME - handle auto-scrolling if mouse is to the right/left of the window
- if (e.Button == MouseButtons.Left && Capture) {
- if (!ClientRectangle.Contains (e.X, e.Y)) {
- if (scroll_timer == null) {
- scroll_timer = new Timer ();
- scroll_timer.Interval = 100;
- scroll_timer.Tick += new EventHandler (ScrollTimerTickHandler);
- }
- if (!scroll_timer.Enabled) {
- scroll_timer.Start ();
- // Force the first tick
- ScrollTimerTickHandler (null, EventArgs.Empty);
- }
- }
- document.PositionCaret(e.X + document.ViewPortX, e.Y + document.ViewPortY);
- if (click_mode == CaretSelection.Position) {
- document.SetSelectionToCaret(false);
- document.DisplayCaret();
- }
- }
- }
-
- private void TextBoxBase_FontOrColorChanged(object sender, EventArgs e) {
- if (!richtext) {
- Line line;
- document.SuspendRecalc ();
- // Font changes apply to the whole document
- for (int i = 1; i <= document.Lines; i++) {
- line = document.GetLine(i);
- LineTag.FormatText(line, 1, line.text.Length, Font,
- ThemeEngine.Current.ResPool.GetSolidBrush(ForeColor),
- null, FormatSpecified.Font | FormatSpecified.Color);
- }
- document.ResumeRecalc (false);
- // Make sure the caret height is matching the new font height
- document.AlignCaret();
- }
- }
- private void ScrollTimerTickHandler (object sender, EventArgs e)
- {
- Point pt = Cursor.Position;
- pt = PointToClient (pt);
- if (pt.X < ClientRectangle.Left) {
- document.MoveCaret(CaretDirection.CharBackNoWrap);
- document.SetSelectionToCaret(false);
-
- CaretMoved(this, null);
- } else if (pt.X > ClientRectangle.Right) {
- document.MoveCaret(CaretDirection.CharForwardNoWrap);
- document.SetSelectionToCaret(false);
-
- CaretMoved(this, null);
- } else if (pt.Y > ClientRectangle.Bottom) {
- document.MoveCaret(CaretDirection.LineDown);
- document.SetSelectionToCaret(false);
-
- CaretMoved(this, null);
- } else if (pt.Y < ClientRectangle.Top) {
- document.MoveCaret(CaretDirection.LineUp);
- document.SetSelectionToCaret(false);
-
- CaretMoved(this, null);
- }
- }
- /// <summary>Ensure the caret is always visible</summary>
- internal void CaretMoved(object sender, EventArgs e) {
- Point pos;
- int height;
- if (canvas_width < 1 || canvas_height < 1)
- return;
- document.MoveCaretToTextTag ();
- pos = document.Caret;
- //Console.WriteLine("Caret now at {0} (Thumb: {1}x{2}, Canvas: {3}x{4}, Document {5}x{6})", pos, hscroll.Value, vscroll.Value, canvas_width, canvas_height, document.Width, document.Height);
- // Horizontal scrolling:
- // If the caret moves to the left outside the visible area, we jump the document into view, not just one
- // character, but 1/3 of the width of the document
- // If the caret moves to the right outside the visible area, we scroll just enough to keep the caret visible
- // Handle horizontal scrolling
- if (document.CaretLine.alignment == HorizontalAlignment.Left) {
- // Check if we moved out of view to the left
- if (pos.X < (document.ViewPortX)) {
- do {
- if ((hscroll.Value - document.ViewPortWidth / 3) >= hscroll.Minimum) {
- hscroll.Value -= document.ViewPortWidth / 3;
- } else {
- hscroll.Value = hscroll.Minimum;
- }
- } while (hscroll.Value > pos.X);
- }
- // Check if we moved out of view to the right
- if ((pos.X >= (document.ViewPortWidth + document.ViewPortX)) && (hscroll.Value != hscroll.Maximum)) {
- if ((pos.X - document.ViewPortWidth + 1) <= hscroll.Maximum) {
- if (pos.X - document.ViewPortWidth >= 0) {
- hscroll.Value = pos.X - document.ViewPortWidth + 1;
- } else {
- hscroll.Value = 0;
- }
- } else {
- hscroll.Value = hscroll.Maximum;
- }
- }
- } else if (document.CaretLine.alignment == HorizontalAlignment.Right) {
- // hscroll.Value = pos.X;
- // if ((pos.X > (this.canvas_width + document.ViewPortX)) && (hscroll.Enabled && (hscroll.Value != hscroll.Maximum))) {
- // hscroll.Value = hscroll.Maximum;
- // }
- } else {
- // FIXME - implement center cursor alignment
- }
- if (!document.multiline) {
- return;
- }
- // Handle vertical scrolling
- height = document.CaretLine.Height + 1;
- if (pos.Y < document.ViewPortY) {
- vscroll.Value = pos.Y;
- }
- if ((pos.Y + height) > (document.ViewPortY + canvas_height)) {
- vscroll.Value = Math.Max (0, pos.Y - canvas_height + height);
- }
- }
- internal bool Paste(IDataObject clip, DataFormats.Format format, bool obey_length) {
- string s;
- if (clip == null)
- return false;
- if (format == null) {
- if ((this is RichTextBox) && clip.GetDataPresent(DataFormats.Rtf)) {
- format = DataFormats.GetFormat(DataFormats.Rtf);
- } else if ((this is RichTextBox) && clip.GetDataPresent (DataFormats.Bitmap)) {
- format = DataFormats.GetFormat (DataFormats.Bitmap);
- } else if (clip.GetDataPresent(DataFormats.UnicodeText)) {
- format = DataFormats.GetFormat(DataFormats.UnicodeText);
- } else if (clip.GetDataPresent(DataFormats.Text)) {
- format = DataFormats.GetFormat(DataFormats.Text);
- } else {
- return false;
- }
- } else {
- if ((format.Name == DataFormats.Rtf) && !(this is RichTextBox)) {
- return false;
- }
- if (!clip.GetDataPresent(format.Name)) {
- return false;
- }
- }
- if (format.Name == DataFormats.Rtf) {
- document.undo.BeginUserAction (Locale.GetText ("Paste"));
- ((RichTextBox)this).SelectedRtf = (string)clip.GetData(DataFormats.Rtf);
- document.undo.EndUserAction ();
- return true;
- } else if (format.Name == DataFormats.Bitmap) {
- document.undo.BeginUserAction (Locale.GetText ("Paste"));
- // document.InsertImage (document.caret.line, document.caret.pos, (Image) clip.GetData (DataFormats.Bitmap));
- document.MoveCaret (CaretDirection.CharForward);
- document.undo.EndUserAction ();
- return true;
- } else if (format.Name == DataFormats.UnicodeText) {
- s = (string)clip.GetData(DataFormats.UnicodeText);
- } else if (format.Name == DataFormats.Text) {
- s = (string)clip.GetData(DataFormats.Text);
- } else {
- return false;
- }
- if (!obey_length) {
- document.undo.BeginUserAction (Locale.GetText ("Paste"));
- this.SelectedText = s;
- document.undo.EndUserAction ();
- } else {
- if ((s.Length + document.Length) < max_length) {
- document.undo.BeginUserAction (Locale.GetText ("Paste"));
- this.SelectedText = s;
- document.undo.EndUserAction ();
- } else if (document.Length < max_length) {
- document.undo.BeginUserAction (Locale.GetText ("Paste"));
- this.SelectedText = s.Substring (0, max_length - document.Length);
- document.undo.EndUserAction ();
- }
- }
- return true;
- }
- internal abstract Color ChangeBackColor (Color backColor);
- #endregion // Private Methods
- #if NET_2_0
- // This is called just before OnTextChanged is called.
- internal virtual void OnTextUpdate ()
- {
- }
-
- protected override void OnTextChanged (EventArgs e)
- {
- base.OnTextChanged (e);
- }
- public virtual int GetLineFromCharIndex (int index)
- {
- Line line_out;
- LineTag tag_out;
- int pos;
-
- document.CharIndexToLineTag (index, out line_out, out tag_out, out pos);
- return line_out.LineNo;
- }
- protected override void OnMouseUp (MouseEventArgs e)
- {
- base.OnMouseUp (e);
- }
- #endif
- }
- }
|