1

Topic: background color: black/white

Is it possible to change the background color from white/gray to white/black?

2

Re: background color: black/white

https://qelectrotech.org/forum/viewtopi … 9412#p9412

"Le jour où tu découvres le Libre, tu sais que tu ne pourras jamais plus revenir en arrière..."Questions regarding QET belong in this forum and will NOT be answered via PM! – Les questions concernant QET doivent être posées sur ce forum et ne seront pas traitées par MP !

3

Re: background color: black/white

mineralcinza wrote:

Is it possible to change the background color from white/gray to white/black?

With the background color of black, you see nothing or draw elements conductors, etc in color or white..

https://download.qelectrotech.org/qet/forum_img_2/black.png


--- sources/qetdiagrameditor.cpp
+++ sources/qetdiagrameditor.cpp
@@ -359,7 +359,7 @@ void QETDiagramEditor::setUpActions()
     m_grey_background -> setStatusTip (tr("Affiche la couleur de fond du folio en blanc ou en gris", "Status tip of white/grey background button"));
     m_grey_background -> setCheckable (true);
     connect (m_grey_background, &QAction::triggered, [this](bool checked) {
-        Diagram::background_color = checked ? Qt::darkGray : Qt::white;
+        Diagram::background_color = checked ? Qt::black : Qt::white;
         if (this->currentDiagramView() &&  this->currentDiagramView()->diagram())
             this->currentDiagramView()->diagram()->update();
     });

"Le jour où tu découvres le Libre, tu sais que tu ne pourras jamais plus revenir en arrière..."Questions regarding QET belong in this forum and will NOT be answered via PM! – Les questions concernant QET doivent être posées sur ce forum et ne seront pas traitées par MP !

4

Re: background color: black/white

  • Unchecked  and checked "Use system colors"
    ../Readytouse/conf/qeletrotech.conf  doesn´t change the value
    [General]
    usesystemcolors=false (or true). It only changes if I edit it.

  • save it in ../AppData/Roaming/qet

Not works.

However, in Ubuntu works.
Indeed, the folio remains white and the others parts change to black.
However, I know the file that soluld be modified.

5

Re: background color: black/white

https://qelectrotech.org/forum/viewtopi … 9416#p9416
You are an example in examples/styles/ folder.

"Le jour où tu découvres le Libre, tu sais que tu ne pourras jamais plus revenir en arrière..."Questions regarding QET belong in this forum and will NOT be answered via PM! – Les questions concernant QET doivent être posées sur ce forum et ne seront pas traitées par MP !