mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
2489dc1f01
This patch started an attempt to remove nsFrameSelection.h from nsCaret.h and metastasized into a rather large refactoring patch that removed it from some other header files as well, and changed nsFrameSelection::HINT into a global-scope enum with better names. I also converted bools into CaretAssociationHint in a few places where that was appropriate, but there are still some more places (GetChildFrameContainingOffset) where bools need to be converted. I figured this patch was big enough already. --HG-- extra : rebase_source : cc618ef60e707e1360644340a2648de389383da0
23 lines
579 B
C++
23 lines
579 B
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef CaretAssociationHint_h___
|
|
#define CaretAssociationHint_h___
|
|
|
|
namespace mozilla {
|
|
|
|
/**
|
|
* Hint whether a caret is associated with the content before a
|
|
* given character offset (ASSOCIATE_BEFORE), or with the content after a given
|
|
* character offset (ASSOCIATE_AFTER).
|
|
*/
|
|
enum CaretAssociationHint {
|
|
CARET_ASSOCIATE_BEFORE,
|
|
CARET_ASSOCIATE_AFTER
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|