* Tooltips show node type with access specifier, reference count and fully qualified name * Fields and global variables include the type name * Methods and functinos show whole signature. Gets broken into multiple lines if too long. Included changes: * Upgraded to C++14 * fixed clang warnings * Pass location of .srctrlprj file to build.sh script to load on launch * Split off QtCodeField for showing highlighted and annotated code fom QtCodeArea * removed TokenComponentSignature * added TaskDecoratorDelay bug id = 195
27 lines
588 B
CSS
27 lines
588 B
CSS
#tooltip {
|
|
background-color: <color:code/file/background>;
|
|
border: 1px solid <color:code/file/background>;
|
|
}
|
|
|
|
#tooltip_title {
|
|
color: <color:code/file/title/text>;
|
|
padding: 3px;
|
|
font-size: <setting:font_size>px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#tooltip_references {
|
|
background-color: <color:code/file/ref_count/background>;
|
|
color: <color:code/file/ref_count/text>;
|
|
margin: 4px;
|
|
padding: 3px 5px;
|
|
border-radius: 8px;
|
|
font-size: <setting:font_size-2>px;
|
|
}
|
|
|
|
#tooltip_widget {
|
|
background-color: <color:code/snippet/background>;
|
|
padding: 3px;
|
|
color: <color:code/snippet/syntax/normal>;
|
|
}
|