Commit Graph

655 Commits

Author SHA1 Message Date
tague%netscape.com
d0540fc75b Conditional fix for #7629. Only builds with a conditional set in my environment 1999-06-09 03:17:56 +00:00
cmanske%netscape.com
e351151970 Fixed fingers-to-quick checkin error 1999-06-09 02:28:47 +00:00
cmanske%netscape.com
c56d124f5b Moved destination of editor string bundle file to editor's chrome directory 1999-06-09 02:26:48 +00:00
cmanske%netscape.com
19a50dffc4 Added string bundle file to Mac manifest file 1999-06-09 02:16:48 +00:00
cmanske%netscape.com
2707da4d24 Added string bundle file 1999-06-09 02:12:52 +00:00
sfraser%netscape.com
8fd9fae568 Added Network shared lib to fix bustage. 1999-06-09 02:09:24 +00:00
cmanske%netscape.com
c624b316cb Added support for prefs and string bundles for editor, various bug fixes, preliminary Horizontal Line dialog work 1999-06-09 01:27:08 +00:00
akkana%netscape.com
9b33e3e633 5380: middle-mouse paste to correct position in the editor 1999-06-08 21:51:40 +00:00
warren%netscape.com
b113f2332f Moved WriteFrom to nsIBufferOutputStream. Made necko pass around buffer streams. 1999-06-08 20:57:32 +00:00
buster%netscape.com
6a3429ddc2 * Added nsAutoSelectionReset, a tiny class that resets the selection to what it was before a block transformation.
* Added some code to restore selection after RemoveTextProperty.
* Made a tiny change to the way the editor holds onto the transaction manager, so client (like the ender text control) can
turn undo on and off effectively
* Fixed a bug in IsNodeInline that was causing GetBlockParent to return the wrong parent node (and who knows what
other mischief) where atom compares were being done on strings of different case, for <B>, "b" vs. "B".  The DOM
method nsIDOMElement::GetTagName forced the returned tag name to upper case.  I don't know how long that has
been true, but I assume it's a fairly recent change (or something on our side related to it changed recently) or this method
never would have worked.  I also found a few cases of nsString::Equals that I changed to EqualsIgnoreCase
* Made some general improvements to the interaction between editors and rules, so that the aCancel out param is always
intialized, and all rules with Will... are matched with a Did... call.  Added Will/DidSetTextProperty() and
Will/DidRemoveTextProperty().  This helps enable plain text mode.  Added a skeleton for max length support in text editor.
* fixed some warnings.
1999-06-08 06:04:51 +00:00
akkana%netscape.com
4dc34da92a call Init on the document encoder 1999-06-08 00:02:25 +00:00
akkana%netscape.com
f08ae8af33 Get rid of overloaded class names, to eliminate warnings 1999-06-07 21:12:01 +00:00
pinkerton%netscape.com
1e3b08c682 changes so that transferable no longer takes ownership of dataflavor string, but correctly copies it. fix some memory leaks as well. 1999-06-07 20:43:23 +00:00
akkana%netscape.com
b80a790741 Split document encoder's Encode() method into a stream method and a string method 1999-06-07 19:32:36 +00:00
law%netscape.com
475e0fa63c "First step towards exorcism of nsIXULWindowCallbacks" 1999-06-07 19:21:33 +00:00
briano%netscape.com
8699ea0019 Handle the (Unix) platform-specific DLL naming conventions properly. 1999-06-04 22:17:30 +00:00
tague%netscape.com
6740fde5bb Fix for #6896: Windows editor interprests the '.' key as a forward delete. Not building by default -- will switch over once tested on Mac and Unix. 1999-06-04 05:14:01 +00:00
akkana%netscape.com
b0031e0a99 Vidur's initial implementation of Insert HTML Fragment 1999-06-03 22:38:38 +00:00
warren%netscape.com
cbbfa208f8 IDLized stream interfaces. Required rename of overloaded Write method (now WriteFrom). 1999-06-03 21:50:47 +00:00
kin%netscape.com
236417d08b Enabled LOCK/UNLOCK macros. 1999-06-03 15:26:48 +00:00
jfrancis%netscape.com
1522156259 groundwork for block transformation functionality 1999-06-03 06:01:08 +00:00
jfrancis%netscape.com
dc79d9b074 using nsAutoEditBatch where appropriate; changed all "result" variables to "res" so they won't show up types in mac dev editor; groundwork for block transformation functions 1999-06-03 06:00:23 +00:00
jfrancis%netscape.com
965cc90b46 fixing a comment 1999-06-03 05:58:38 +00:00
jfrancis%netscape.com
9c7801d005 adding stackbased class for editor transaction batching 1999-06-03 05:58:20 +00:00
jfrancis%netscape.com
388fb3940d linking against nspr 1999-06-01 22:07:00 +00:00
bruce%cybersight.com
73409a6395 Correct typo, fix HP-UX bustage. 1999-05-29 02:15:07 +00:00
kin%netscape.com
ae5b3d673c Fixed double addref in EnableUndo() that was causing us to leak the transaction manager on destruction of the editor. 1999-05-28 21:49:24 +00:00
buster%netscape.com
6b09e8c917 Preparation for ender-based text control
* added focus listener.  Doesn't do much yet, but when focus notifications start appearing, we'll be ready for them.  The code is in
place to hide selection when we lose focus and paint selection when we get focus.  That's probably not quite right, but it's a start.
We will need to be able to determine the distinction between losing focus to another control within our app, and losing focus to
another app.
* added support for disabled and readonly states in the editor.  This is accomplished by having flags set by the client, and letting the
rules system deal with those flags.  The flags I added are:
     TEXT_EDITOR_FLAG_PLAINTEXT   0x01   // only plain text editing is allowed
     TEXT_EDITOR_FLAG_SINGLELINE  0x02   // enter key and CR-LF handled specially
     TEXT_EDITOR_FLAG_PASSWORD    0x04   // text is not entered into content, only a representative character
     TEXT_EDITOR_FLAG_READONLY    0x08   // editing events are disabled.  Editor may still accept focus.
     TEXT_EDITOR_FLAG_DISALBED    0x10   // all events are disabled (like scrolling).  Editor will not accept focus.
* added WillInsertBreak/DidInsertBreak into text rules, so flags could be checked.  This gets us readonly, disabled, and single line
behavior.
* cleaned up the code that allocates, registers, and destroys event listeners.  Thanks to Kin and Simon for cleaning up the
ownership model on the listeners, it was a big help.
* added support for a max text length.  You can now tell the text editor, be no bigger than n characters.
1999-05-28 21:24:18 +00:00
jfrancis%netscape.com
38b9a7c369 cleanup util function duplication 1999-05-28 21:17:30 +00:00
alecf%netscape.com
e6f2aa2ab6 GetCharPref() is going away for nsIPref scriptability. Use CopyCharPref instead 1999-05-28 00:50:29 +00:00
akkana%netscape.com
ee4632cddb Add paste/insert as quotation into editor app cores to be accessible from JS. 1999-05-28 00:46:34 +00:00
sfraser%netscape.com
f8afbe3ce3 Remove the appcore from the AppCoresManager in onunload(). 1999-05-28 00:37:04 +00:00
sfraser%netscape.com
f538ed4757 Removed obsolete IID definitions, use GetIID() instead. 1999-05-28 00:20:41 +00:00
sfraser%netscape.com
b7ca9366ce Fix the event listeners to no longer hold owning pointer to the editor. 1999-05-28 00:19:51 +00:00
sfraser%netscape.com
7e9989b7b9 Change the transactions to have non-owning pointers to the editor. 1999-05-28 00:16:55 +00:00
sfraser%netscape.com
7e7e1b3a66 Changed transactions not to have owning pointers to the Editor. 1999-05-28 00:13:02 +00:00
mcmullen%netscape.com
43e2872126 Removed obsolete base/baseDebug.shlb 1999-05-27 23:28:37 +00:00
akkana%netscape.com
c30adc3405 Add plaintext editor as an option in browser and editor menus 1999-05-27 22:21:48 +00:00
kin%netscape.com
41199b08d2 Changed all occurrences of GetUndoString() and GetRedoString() to accept nsString *. 1999-05-27 20:50:52 +00:00
kin%netscape.com
4c8dbecd07 Changed GetUndoString() and GetRedoString() to use nsString *. 1999-05-27 20:50:05 +00:00
kin%netscape.com
8245590ade Changed interface and implementation to us NS_IMETHOD and NS_IMPMETHOD macros. 1999-05-27 20:48:55 +00:00
rickg%netscape.com
b9c5e27244 changed to align with nsString2 1999-05-27 07:38:37 +00:00
sfraser%netscape.com
2239a8a64e Add unit test call to nsIEditor, and implement it in nsText- and nsHTMLEditors. 1999-05-27 04:10:04 +00:00
sfraser%netscape.com
220d4a3520 Remove the old key code function, and call the new unit test routine 1999-05-27 04:08:59 +00:00
sfraser%netscape.com
b2397b0876 Add Find, Find Next, and Unit Test menu items 1999-05-27 04:08:11 +00:00
sfraser%netscape.com
ac9180c682 Change dedent to outdent, and alignpopup to align. 1999-05-27 04:06:54 +00:00
sfraser%netscape.com
d8a619ce70 Fix the page title 1999-05-27 04:06:17 +00:00
cmanske%netscape.com
68c91d40d9 Changed ED_AlignPopup.gif to ED_Alig.gif in makefiles 1999-05-27 04:04:02 +00:00
leaf%mozilla.org
7cdb9eb64d fixing -kb flag 1999-05-27 04:01:08 +00:00
sfraser%netscape.com
9ab7226d23 Add page titles, and white background through style. 1999-05-27 03:56:07 +00:00