• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/

Lines Matching defs:fore

464 // and optionally the fore and background colours.
477 void wxStyledTextCtrl::MarkerSetForeground(int markerNumber, const wxColour& fore) {
478 SendMsg(2041, markerNumber, wxColourAsLong(fore));
589 void wxStyledTextCtrl::StyleSetForeground(int style, const wxColour& fore) {
590 SendMsg(2051, style, wxColourAsLong(fore));
644 void wxStyledTextCtrl::SetSelForeground(bool useSetting, const wxColour& fore) {
645 SendMsg(2067, useSetting, wxColourAsLong(fore));
664 void wxStyledTextCtrl::SetCaretForeground(const wxColour& fore) {
665 SendMsg(2069, wxColourAsLong(fore), 0);
731 void wxStyledTextCtrl::IndicatorSetForeground(int indic, const wxColour& fore) {
732 SendMsg(2082, indic, wxColourAsLong(fore));
742 void wxStyledTextCtrl::SetWhitespaceForeground(bool useSetting, const wxColour& fore) {
743 SendMsg(2084, useSetting, wxColourAsLong(fore));
1454 void wxStyledTextCtrl::CallTipSetForeground(const wxColour& fore) {
1455 SendMsg(2206, wxColourAsLong(fore), 0);
1459 void wxStyledTextCtrl::CallTipSetForegroundHighlight(const wxColour& fore) {
1460 SendMsg(2207, wxColourAsLong(fore), 0);
1723 void wxStyledTextCtrl::SetFoldMarginHiColour(bool useSetting, const wxColour& fore) {
1724 SendMsg(2291, useSetting, wxColourAsLong(fore));
2283 // Set a fore colour for active hotspots.
2284 void wxStyledTextCtrl::SetHotspotActiveForeground(bool useSetting, const wxColour& fore) {
2285 SendMsg(2410, useSetting, wxColourAsLong(fore));
2608 // fore:[name or #RRGGBB] sets the foreground colour
2645 else if (option == wxT("fore"))