Home
last modified time | relevance | path

Searched refs:TEXT_NO_TABS (Results 1 – 14 of 14) sorted by relevance

/dports/x11-toolkits/fox17/fox-1.7.77/adie/
H A DTextWindow.cpp1456 if(!hardtabs) modebits|=TEXT_NO_TABS; in readRegistry()
2389 FXuint modebits=editor->getTextStyle()^TEXT_NO_TABS; in onCmdInsertTabs()
2391 hardtabs=((modebits&TEXT_NO_TABS)==0); in onCmdInsertTabs()
2398 FXbool ht=(editor->getTextStyle()&TEXT_NO_TABS)==0; in onUpdInsertTabs()
2615 FXString tab((editor->getTextStyle()&TEXT_NO_TABS)?"EMT":"TAB"); in onUpdTabMode()
4285 if(modes.getTabMode()==0) modebits&=~TEXT_NO_TABS; in parseModeline()
4286 if(modes.getTabMode()==1) modebits|=TEXT_NO_TABS; in parseModeline()
4566 if(syntax->getTabMode()==0) modebits&=~TEXT_NO_TABS; in setSyntax()
4567 if(syntax->getTabMode()==1) modebits|=TEXT_NO_TABS; in setSyntax()
4591 if(hardtabs) modebits&=~TEXT_NO_TABS; else modebits|=TEXT_NO_TABS; in setSyntax()
/dports/x11-toolkits/fox14/fox-1.4.35/adie/
H A DTextWindow.cpp1235 editor->setTextStyle(editor->getTextStyle()&~TEXT_NO_TABS); in readRegistry()
1237 editor->setTextStyle(editor->getTextStyle()|TEXT_NO_TABS); in readRegistry()
1331 getApp()->reg().writeIntEntry("SETTINGS","hardtabs",(editor->getTextStyle()&TEXT_NO_TABS)==0); in writeRegistry()
2009 editor->setTextStyle(editor->getTextStyle()^TEXT_NO_TABS); in onCmdInsertTabs()
2016 …sender->handle(this,(editor->getTextStyle()&TEXT_NO_TABS)?FXSEL(SEL_COMMAND,ID_UNCHECK):FXSEL(SEL_… in onUpdInsertTabs()
/dports/x11-toolkits/fox16/fox-1.6.57/adie/
H A DTextWindow.cpp1237 editor->setTextStyle(editor->getTextStyle()&~TEXT_NO_TABS); in readRegistry()
1239 editor->setTextStyle(editor->getTextStyle()|TEXT_NO_TABS); in readRegistry()
1333 getApp()->reg().writeIntEntry("SETTINGS","hardtabs",(editor->getTextStyle()&TEXT_NO_TABS)==0); in writeRegistry()
2019 editor->setTextStyle(editor->getTextStyle()^TEXT_NO_TABS); in onCmdInsertTabs()
2026 …sender->handle(this,(editor->getTextStyle()&TEXT_NO_TABS)?FXSEL(SEL_COMMAND,ID_UNCHECK):FXSEL(SEL_… in onUpdInsertTabs()
/dports/x11-toolkits/fox14/fox-1.4.35/include/
H A DFXText.h40 TEXT_NO_TABS = 0x01000000, /// Insert spaces for tabs enumerator
/dports/audio/gogglesmm/gogglesmm-1.2.2/cfox/lib/
H A DFXText.cpp153 #define TEXT_MASK (TEXT_FIXEDWRAP|TEXT_WORDWRAP|TEXT_OVERSTRIKE|TEXT_READONLY|TEXT_NO_TABS|TE…
2852 if(!(options&TEXT_NO_TABS)){ in replaceStyledTextBlock()
2909 if(!(options&TEXT_NO_TABS)){ in overstrikeStyledTextBlock()
3027 if(!(options&TEXT_NO_TABS)){ in insertStyledTextBlock()
3122 if(!(options&TEXT_NO_TABS)){ in removeTextBlock()
3238 if(!(options&TEXT_NO_TABS)){ in extractTextBlock()
3313 FXString rep=FXString::tabbify(org,tabcolumns,0,0,shift,!(options&TEXT_NO_TABS)); in shiftText()
5689 …return handle(this,(options&TEXT_NO_TABS)?FXSEL(SEL_COMMAND,ID_INSERT_SOFTTAB):FXSEL(SEL_COMMAND,I… in onCmdInsertTab()
/dports/x11-toolkits/fox17/fox-1.7.77/lib/
H A DFXText.cpp156 #define TEXT_MASK (TEXT_FIXEDWRAP|TEXT_WORDWRAP|TEXT_OVERSTRIKE|TEXT_READONLY|TEXT_NO_TABS|TE…
2856 if(!(options&TEXT_NO_TABS)){ in replaceStyledTextBlock()
2913 if(!(options&TEXT_NO_TABS)){ in overstrikeStyledTextBlock()
3033 if(!(options&TEXT_NO_TABS)){ in insertStyledTextBlock()
3134 if(!(options&TEXT_NO_TABS)){ in removeTextBlock()
3268 if(!(options&TEXT_NO_TABS)){ in extractTextBlock()
3343 FXString rep=FXString::tabbify(org,tabcolumns,0,0,shift,!(options&TEXT_NO_TABS)); in shiftText()
5699 if(options&TEXT_NO_TABS){ in onCmdInsertTab()
/dports/math/reduce/Reduce-svn5758-src/csl/fox/include/
H A DFXText.h51 TEXT_NO_TABS = 0x01000000, /// Insert spaces for tabs enumerator
/dports/x11-toolkits/fox16/fox-1.6.57/include/
H A DFXText.h40 TEXT_NO_TABS = 0x01000000, /// Insert spaces for tabs enumerator
/dports/audio/gogglesmm/gogglesmm-1.2.2/cfox/include/
H A DFXText.h37 TEXT_NO_TABS = 0x01000000, /// Insert spaces for tabs enumerator
/dports/x11-toolkits/fox17/fox-1.7.77/include/
H A DFXText.h37 TEXT_NO_TABS = 0x01000000, /// Insert spaces for tabs enumerator
/dports/math/reduce/Reduce-svn5758-src/csl/fox/src/
H A DFXText.cpp227 TEXT_OVERSTRIKE|TEXT_READONLY|TEXT_NO_TABS| \
230 #define TEXT_MASK (TEXT_FIXEDWRAP|TEXT_WORDWRAP|TEXT_OVERSTRIKE|TEXT_READONLY|TEXT_NO_TABS|TEXT_A…
3930 if(options&TEXT_NO_TABS){
4336 … if(!(options&TEXT_NO_TABS)){ size+=(white/tabcolumns+white%tabcolumns); } else { size+=white; }
4364 … if(!(options&TEXT_NO_TABS)){ while(white>=tabcolumns){ text[len++]='\t'; white-=tabcolumns;} }
/dports/x11-toolkits/fox14/fox-1.4.35/src/
H A DFXText.cpp143 #define TEXT_MASK (TEXT_FIXEDWRAP|TEXT_WORDWRAP|TEXT_OVERSTRIKE|TEXT_READONLY|TEXT_NO_TABS|TEXT_A…
3274 if(options&TEXT_NO_TABS){ in onCmdInsertTab()
3626 … if(!(options&TEXT_NO_TABS)){ size+=(white/tabcolumns+white%tabcolumns); } else { size+=white; } in shiftText()
3654 … if(!(options&TEXT_NO_TABS)){ while(white>=tabcolumns){ text[len++]='\t'; white-=tabcolumns;} } in shiftText()
/dports/x11-toolkits/fox16/fox-1.6.57/src/
H A DFXText.cpp150 #define TEXT_MASK (TEXT_FIXEDWRAP|TEXT_WORDWRAP|TEXT_OVERSTRIKE|TEXT_READONLY|TEXT_NO_TABS|TEXT_A…
3466 if(options&TEXT_NO_TABS){ in onCmdInsertTab()
3872 … if(!(options&TEXT_NO_TABS)){ size+=(white/tabcolumns+white%tabcolumns); } else { size+=white; } in shiftText()
3900 … if(!(options&TEXT_NO_TABS)){ while(white>=tabcolumns){ text[len++]='\t'; white-=tabcolumns;} } in shiftText()
/dports/x11-fm/xfe/xfe-1.44/src/
H A DWriteWindow.cpp621 editor->setTextStyle(editor->getTextStyle()&~TEXT_NO_TABS); in FXIMPLEMENT()