|
@@ -697,7 +697,7 @@ namespace IDE.ui
|
|
|
using (g.PushColor(0xFFFFFFFF))
|
|
|
g.DrawBox(DarkTheme.sDarkTheme.GetImage(.Menu), drawX, drawY, mRightBoxAdjust - GS!(8), drawHeight - GS!(8));
|
|
|
|
|
|
- using (g.PushColor(0xFFC0C0C0))
|
|
|
+ using (g.PushColor(gApp.mSettings.mUISettings.mColors.mAutoCompleteDocText))
|
|
|
g.DrawString(docParser.ShowDocString, drawX + GS!(8), drawY + GS!(4), .Left, mDocWidth - GS!(20), .Wrap);
|
|
|
}
|
|
|
}
|
|
@@ -923,7 +923,7 @@ namespace IDE.ui
|
|
|
numStr.AppendF("{0}/{1}", mSelectIdx + 1, mEntryList.Count);
|
|
|
if (g != null)
|
|
|
{
|
|
|
- using (g.PushColor(0xFFB0B0B0))
|
|
|
+ using (g.PushColor(gApp.mSettings.mUISettings.mColors.mAutoCompleteSubText))
|
|
|
g.DrawString(numStr, curX, curY);
|
|
|
}
|
|
|
curX += font.GetWidth(numStr) + GS!(8);
|
|
@@ -979,7 +979,7 @@ namespace IDE.ui
|
|
|
|
|
|
if (g != null)
|
|
|
{
|
|
|
- using (g.PushColor(((sectionIdx == cursorSection) && (isParam)) ? 0xFFB0B0FF : 0xFFFFFFFF))
|
|
|
+ using (g.PushColor(((sectionIdx == cursorSection) && (isParam)) ? gApp.mSettings.mUISettings.mColors.mAutoCompleteActiveText : gApp.mSettings.mUISettings.mColors.mText))
|
|
|
g.DrawString(sectionStr, curX, curY);
|
|
|
}
|
|
|
curX += sectionWidth;
|
|
@@ -1015,7 +1015,7 @@ namespace IDE.ui
|
|
|
curY += font.GetLineSpacing() + GS!(4);
|
|
|
if (g != null)
|
|
|
{
|
|
|
- using (g.PushColor(0xFFC0C0C0))
|
|
|
+ using (g.PushColor(gApp.mSettings.mUISettings.mColors.mAutoCompleteDocText))
|
|
|
docHeight = g.DrawString(docString, curX, curY, .Left, maxDocWidth, .Wrap);
|
|
|
}
|
|
|
else
|
|
@@ -1052,12 +1052,12 @@ namespace IDE.ui
|
|
|
curY += font.GetLineSpacing() + GS!(4);
|
|
|
if (g != null)
|
|
|
{
|
|
|
- using (g.PushColor(0xFFFFFFFF))
|
|
|
+ using (g.PushColor(gApp.mSettings.mUISettings.mColors.mText))
|
|
|
{
|
|
|
g.DrawString(scope String(paramName.Length + 1)..AppendF("{0}:", paramName), curX, curY, .Left, mWidth, .Ellipsis);
|
|
|
}
|
|
|
|
|
|
- using (g.PushColor(0xFFC0C0C0))
|
|
|
+ using (g.PushColor(gApp.mSettings.mUISettings.mColors.mAutoCompleteDocText))
|
|
|
{
|
|
|
g.DrawString(paramDoc, curX + font.GetWidth(paramName) + font.GetWidth(": "), curY, .Left, mWidth, .Ellipsis);
|
|
|
}
|