Re: [Qt-creator] test discovery

2021-01-05 Thread Alessandro Portale
Von: Qt-creator  im Auftrag von André Pönitz 

Gesendet: Dienstag, 5. Januar 2021 19:18
An: Stefan Seefeld 
Cc: qt-creator@qt-project.org 
Betreff: Re: [Qt-creator] test discovery

> Can't I just compile the plugin (using some public qt-creator Plugin API) ?
> Sorry if I'm displaying my ignorance here, but I assumed that qt-creator
> supporting "plugins" implied that those plugins could be managed (including
> built) independently from qt-creator.

The Qt Creator plugin SDK is there for that.

Shameful plug of my talk about that: https://youtu.be/G73umuER5dA?t=1432

Br,
Alessandro
___
Qt-creator mailing list
Qt-creator@qt-project.org
https://lists.qt-project.org/listinfo/qt-creator


Re: [Qt-creator] WebAssembly rough edges

2020-12-16 Thread Alessandro Portale
G-23741). I don't know if
> point 7 would be fixed as a consequence of the other changes.

The code model issues were already present when emsdk and Qt Creator played 
well together. TBH, I never tried to elaborate a workaround for that.
The good news is that 4.15, by registering the wrapper scripts and successfully 
querying includes and defines, is supposed to solve all this. It would however 
be great to get confirmations from users other than myself if this works :)

> However, I see that the fix version is 4.15. :-(  That's two releases
> away. Is there any fix/workaround for this last issue, or should I
> just (for now) go to the console to do the WebAssembly build/run?

Unfortunately, there is not much more than what you found and what I mentioned 
that I can suggest as workaround.

You can use a Qt Creator 4.15 snapshot from 
https://download.qt.io/snapshots/qtcreator/4.15/ and "Link to Qt".

I have my brown paper bag with the WebAssembly logo on it already prepared for 
the imminent Qt Creator 4.14 release.

> Thank you.

> PS: Writing all this mostly as a brain dump (only 7 requires a
> solution), in case someone else finds these issues and wants a
> solution for the first points, because I did not find much by doing
> searches on the web. I had to go to JIRA to find the meat of it. :)

Thank you for the feedback! And sorry for the most likely unsatisfying current 
state. The plugin obviously lacks overall "priority" and "interest", but my 
goal is to at least have very basic, functional Qt for WebAssembly support in 
Qt Creator.

-- 
Best regards,
Alessandro Portale

___
Qt-creator mailing list
Qt-creator@qt-project.org
https://lists.qt-project.org/listinfo/qt-creator


Re: [Qt-creator] QtCreator 4.6 - constant, high CPU usage

2018-04-13 Thread Alessandro Portale
Hi Jakub,


there were reports about Qt Creator occupying one CPU core for no obvious 
reason.


Here is the Jira task:

https://bugreports.qt.io/browse/QTCREATORBUG-19458

It would be great to gather more information about it.


Thank You,

Alessandro


Von: Qt-creator  im 
Auftrag von Jakub Narolewski 
Gesendet: Freitag, 13. April 2018 15:37:26
An: qt-creator@qt-project.org
Betreff: [Qt-creator] QtCreator 4.6 - constant, high CPU usage


Hello :]

I'm having a weird problem with newest Creator update.
QtC seems to spin some heavy-duty thread on one of CPU cores on all my machines.
On my six cored AMD CPU I see it taking 16% of total processing power [as 
reported by Windows' Task Manager].
I notice it every time due to my not-so-quiet fans :P

This starts at seemingly random times; sometimes during cpp/QML code editing, 
sometimes when QtC is minimized.
When it starts there is 50/50 chance it won't stop on its own and only closing 
the application helps.

I remember seeing something very similar in versions 4.5.x when I had clang 
refactoring plugin enabled in Plugins menu.
In version 4.6 I can't seem to find this plugin in the list.

This happens in QtCreator installed with MaintenanceTool.
It reports itself as:

Based on Qt 5.10.1 (MSVC 2015, 32 bit)
Built on Mar 27 2018 15:05:08
>From revision 3ac2aa7bb5

I have this problem on up-to-date versions of Windows 7 x64 and Windows 10 x64 
on two different workstations.
Have someone seen something like this lately? Maybe it has an already opened 
issue?

Jakub Narolewski
___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator


Re: [Qt-creator] 4.2 is funny about }

2016-12-23 Thread Alessandro Portale
...me too. The editor does not remove that one underline when the document 
switches from invalid to valid while editing.


I will create a bugreport for it today (if there is none, yet)


Br,

Alessandro


Von: Qt-creator  im 
Auftrag von Marco Piccolino 
Gesendet: Freitag, 23. Dezember 2016 10:52:58
An: qt-creator@qt-project.org
Betreff: Re: [Qt-creator] 4.2 is funny about }

I also noticed this issue.


--

Message: 6
Date: Thu, 22 Dec 2016 21:58:20 +0100
From: "Jason H" mailto:jh...@gmx.com>>
To: qt-creator mailto:qt-creator@qt-project.org>>
Subject: [Qt-creator] 4.2 is funny about  }
Message-ID:



Content-Type: text/plain; charset="utf-8"

I'm not sure why the closing ListView } is causing a red underline

ListView {
id: statusView
model: listModel
anchors.top: row.bottom
anchors.bottom: parent.bottom
width: parent.width
delegate: Text {
width: parent.width
wrapMode: Text.WordWrap
text: date + " " + status
}
clip: true
}
-- next part --
A non-text attachment was scrubbed...
Name: Screen Shot 2016-12-22 at 3.56.40 PM.png
Type: image/png
Size: 38394 bytes
Desc: not available
URL: 

___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator


Re: [Qt-creator] Adjusting colors in one of the Themes

2016-12-01 Thread Alessandro Portale
Hi,

Short version: For a higher contrast, you can set  "PreferredStyles=Windows" in 
the "[General]" section of your *.creatortheme file.

Long version:
You can influence palette colors in the *.creatortheme files like this:
...
  [Colors]
  PaletteButton=
...
"PaletteButton" sets the QPalette::Button ColorRole for the whole application. 
All other ColorRoles are mapped accordingly. Depending on the used QStyle, 
despite its name PaletteButton also influences the scroll bar color (at least 
this is the case with FusionStyle).

Which QStyle is used depends on the theme and OS. The theme may force the style 
via:
...
  [General]
  PreferredStyles=Fusion
...

If you use HighDpi, FusionStyle is forced unless you are on macOS.

Br,
Alessandro


Von: Qt-creator  im 
Auftrag von Mike Jackson 
Gesendet: Dienstag, 29. November 2016 14:21:00
An: qt-creator@qt-project.org
Betreff: Re: [Qt-creator] Adjusting colors in one of the Themes

Thanks but those are for the little highlight marks that appear in the
scroll bar. I want to change the color of either the scrollbar handle
itself or the scrollbar background. Those two are so close in contrast
that they are very hard to tell apart. It wonder if the scrollbar colors
are baked into the actual source code for QtCreator? Or maybe one of the
"Styles" that Qt supports on Windows?

Could a QtCreator developer maybe point to the place in the source code
where the styles and colors are initialized?

--
Michael A. Jackson
BlueQuartz Software, LLC
[e]: mike.jack...@bluequartz.net


David Schulz wrote:
> Hi Mike,
>
> the color of the scrollbar highlights can be adjusted in the
> *.creatortheme files by changing the *_TextMarkColor and
> *_ScrollBarColor entries.
>
> greetings
> David
>
> On 28-Nov-16 16:40, Mike Jackson wrote:
>> I need to adjust the colors of the editor scrollbars in QtCreator as
>> the contrast between the scrollbar background and the scrollbar
>> "handle" is so light as to be indistinguishable for my "old" eyes to
>> see. I thought I had done this once before but maybe it was on Linux
>> and I just changed EVERY scrollbar in Unity. This is on Windows with
>> the latest QtCreator 4.1 or 4.2. I found the .qtcreatortheme file
>> which looks to be just a .ini formatted file. Looked through it but
>> did not find anything that jumped out at me as beings specifically for
>> scrollbar colors.
>>
>> Thanks for any help
>>
>> --
>> Mike Jackson
>> BlueQuartz Software
>> ___
>> Qt-creator mailing list
>> Qt-creator@qt-project.org
>> http://lists.qt-project.org/mailman/listinfo/qt-creator
>
> ___
> Qt-creator mailing list
> Qt-creator@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/qt-creator
___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator
___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator


Re: [Qt-creator] I have a suggestion

2016-09-16 Thread Alessandro Portale
Hi,


> Von: 陈维晃 

> Gesendet: Freitag, 16. September 2016 09:16
>
> qtcreator code editor into consideration the possibility of following this 
> look like?

Qt Creator 4.1 comes with the "Solarized Dark" text editor scheme, wich looks 
very similar to the theme on your screen shot.

Br,
Alessandro
___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator


Re: [Qt-creator] Some useful fixes and extensions

2016-05-12 Thread Alessandro Portale
I assume Vlad already has a patch on code review: 
https://codereview.qt-project.org/102069/


Br,

Alessandro


Von: Qt-creator  im 
Auftrag von Tobias Hunger 
Gesendet: Freitag, 13. Mai 2016 07:48:47
An: Vlad Seryakov
Cc: qt-creator
Betreff: Re: [Qt-creator] Some useful fixes and extensions


Hi Vlad,
Am 13.05.2016 00:11 schrieb "Vlad Seryakov" 
mailto:vserya...@gmail.com>>:
> Below is my full patch with all the changes

Please push your proposed patches to code 
review.qt-project.org. For legal reasons we can 
not accept non-trivial patches sent in using mail or bug reports.

This involves some initial setup, but is actually pretty convenient once that 
hurdle is tackled.

https://wiki.qt.io/Gerrit_Introduction should have the setup covered (but in Qt 
Creator our development branch is actually master, not dev).

Best Regards,
Tobias
___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator