KTextEditor
rangefeedback.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include "rangefeedback.h"
00020
00021 using namespace KTextEditor;
00022
00023 SmartRangeWatcher::~ SmartRangeWatcher( )
00024 {
00025 }
00026
00027 SmartRangeNotifier::SmartRangeNotifier( )
00028 : m_wantDirectChanges(true)
00029 {
00030 }
00031
00032 bool SmartRangeNotifier::wantsDirectChanges( ) const
00033 {
00034 return m_wantDirectChanges;
00035 }
00036
00037 void SmartRangeNotifier::setWantsDirectChanges( bool wantsDirectChanges )
00038 {
00039 m_wantDirectChanges = wantsDirectChanges;
00040 }
00041
00042 SmartRangeWatcher::SmartRangeWatcher( )
00043 : m_wantDirectChanges(true)
00044 {
00045 }
00046
00047 bool SmartRangeWatcher::wantsDirectChanges( ) const
00048 {
00049 return m_wantDirectChanges;
00050 }
00051
00052 void SmartRangeWatcher::setWantsDirectChanges( bool wantsDirectChanges )
00053 {
00054 m_wantDirectChanges = wantsDirectChanges;
00055 }
00056
00057 void SmartRangeWatcher::rangePositionChanged( SmartRange* )
00058 {
00059 }
00060
00061 void SmartRangeWatcher::rangeContentsChanged( SmartRange* )
00062 {
00063 }
00064
00065 void SmartRangeWatcher::rangeContentsChanged( SmartRange*, SmartRange* )
00066 {
00067 }
00068
00069 void SmartRangeWatcher::mouseEnteredRange( SmartRange*, View* )
00070 {
00071 }
00072
00073 void SmartRangeWatcher::mouseExitedRange( SmartRange*, View* )
00074 {
00075 }
00076
00077 void SmartRangeWatcher::caretEnteredRange( SmartRange*, View* )
00078 {
00079 }
00080
00081 void SmartRangeWatcher::caretExitedRange( SmartRange*, View* )
00082 {
00083 }
00084
00085 void SmartRangeWatcher::rangeEliminated( SmartRange* )
00086 {
00087 }
00088
00089 void SmartRangeWatcher::rangeDeleted( SmartRange* )
00090 {
00091 }
00092
00093 void SmartRangeWatcher::childRangeInserted( SmartRange*, SmartRange* )
00094 {
00095 }
00096
00097 void SmartRangeWatcher::childRangeRemoved( SmartRange*, SmartRange* )
00098 {
00099 }
00100
00101 void SmartRangeWatcher::rangeAttributeChanged( SmartRange*, Attribute::Ptr, Attribute::Ptr )
00102 {
00103 }
00104
00105 void SmartRangeWatcher::parentRangeChanged( SmartRange *, SmartRange *, SmartRange * )
00106 {
00107 }
00108
00109 #include "rangefeedback.moc"
00110
00111