class st0
{
public:
int y;
int b;
};
class st1 : public st0
{
int z;
int a;
};
void foo()
{
st1 b;
b.
2) after typing "b." in code completion box members are sorted alphabetically "a, b, y, z".This should be a feature request.... Need some work. :D
how to make them sorted as they appears in source code, inherited classes first, base classes - last?
int st1::a, int st1::z, int st0::y, int st0::b
This is important too, Visual studio lacks this, but Borland studio (RAD studio) has such functionality.
3) how to eliminate time delay between hovering mouse on "foo" and hint appearing "int foo()" in example???There is an option in CC which can set the time delay.
QuoteQuote from: xakepp35 on Yesterday at 08:27:49 pmThere is an option in CC which can set the time delay.
3) how to eliminate time delay between hovering mouse on "foo" and hint appearing "int foo()" in example???
Oh, You are right, I will check the source, it seems it can be configured in wxScintilla. :DQuoteQuoteQuote from: xakepp35 on Yesterday at 08:27:49 pmThere is an option in CC which can set the time delay.
3) how to eliminate time delay between hovering mouse on "foo" and hint appearing "int foo()" in example???
this option(in CC settings) applies only to "CC box" (box with member names and color squares - green square for public members, etc) appearing timeout.
but not on "item hint" appearing timeout.
Dwell time for editors is hardcoded to 1000 ms in cbEditor at the moment, but can of course be made configurable.Oh, You are right, I will check the source, it seems it can be configured in wxScintilla. :DQuoteQuoteQuote from: xakepp35 on Yesterday at 08:27:49 pmThere is an option in CC which can set the time delay.
3) how to eliminate time delay between hovering mouse on "foo" and hint appearing "int foo()" in example???
this option(in CC settings) applies only to "CC box" (box with member names and color squares - green square for public members, etc) appearing timeout.
but not on "item hint" appearing timeout.
Dwell time for editors is hardcoded to 1000 ms in cbEditor at the moment, but can of course be made configurable.
But it would affect all editor tooltips, not only cc's.
1 second * 1000 times you want tooltip in a day / 8 hours in seconds = loosing 4% of your work day's time, just sitting and waiting for tooltips?