Is it possible to change the background color of the line at which the debugger has currently stopped?
sure, in the qt creator go to editor and enable the "Highlight current line" option
Related
I recently discovered oh-my-zsh and want to use a custom skin.
I found a good one (crunch) and want to change just one thing. Unfortunately I can't find any documentation about how to write a theme.
I am looking for a way to change the background color only of the line I enter my command into. Kind of like here:
I even found the code for the picture.
How can I change the background color in this one single line?
I was just wondering if/how I could change the background color of IDLDE, to avoid having a white screen all day long, and use a less exhausting color for my eyes like brown/grey...
Thanks a lot
EDIT : IDLDE (the IDL IDE) not IDLE, my bad, I'm working with IDLE and IDLDE...
Try right-clicking on the editor window, and hit Preferences. At the bottom, under Appearance color options select Background color and uncheck System Default. Then, you can play with the little color box just above it.
Works for me in IDL 8.3.0.
My Qt version is 4.7.1 and I want to set the background color of a QLineEdit the same as window color, and I use this way:
QString bgColorName = palette().color(QPalette::Normal, QPalette::Window).name();
QString strStyleSheet = QString("QLineEdit {background-color: ").append(bgColorName).append("}");
ui->lineEdit->setStyleSheet(strStyleSheet);
I tried to get the background colors name and then set the stylesheet of the QLineEdit, however, after running the application, I found the QLineEdit's color is a little different, that is, if you look at it carefully, you can see the difference, both on Win7 and Mac.
Could anyone help me to find a way to get the right background color of the dialog, thank you in advance.
The code you posted actually works for me (using Windows 7). Have you verified with an image editor such as Photoshop that the background of the line edit isn't the same as the dialog? Sometimes the mind plays tricks and can think the background color is different (due to the border) when in fact it isn't.
By the way, you can just make the background of your QLineEdit transparent using style sheets like this:
QLineEdit le("Line Edit with transparent BG");
le.setStyleSheet("background:transparent;");
Thing is, after applying a new color theme for my Flash Builder enviroment, the only thing I couldnt find was an option to change the color when you enter in debug mode. When you have a brakpoint there, the color of that line change to light green, and I got dark background and white characters.. so, I dont see anything, I have to manually highlight the line.. really annoying.
I spend some minuts trying to change that color, but no luck so far, do anyone know where can I change that color?
Thanks!
Thats is simple goto windows->preferences->Genral->Editors->TextEditors->Annotations where you can find the Debug Current Instruction Pointer. there you can find the color value for that.
change and Enjoy.
I cannot figure out how to change the title bar icon (the icon in the furthest top left corner of the application) in Adobe AIR. It is currently displaying the default 'Adobe AIR' red icon.
I have been able to change it in the system tray, however.
Does the following help?
http://groups.google.com/group/chennai-flex-user-group/browse_thread/thread/cffb9ab56450c28e
The first link shows how to change the Taskbar Icon, the second shows the application icon I believe used on the desktop. I am going to recompile and install the application and see if it works.
Edit: Yea, the one that changes the Desktop Icon also changes the Title Bar icon. It's in the app.xml file.