Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged Qt
0
votes
1.1k
views
1
answer
qt - How to set text alignment on a column of QTableView programmatically?
So far the only solution I have found is to subclass QItemDelegate and implement my alignment rule in the paint() ... using the C++ API. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
847
views
1
answer
qt - Start a process using QProcess
I'm trying to start Microsoft word using QProcess as following: QString program = "WINWORD.EXE"; process->start(program ... right way to do so ? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
719
views
1
answer
qt - Is it possible to show only certain indexes of a QML listview?
Is it possible to show only certain indexes or a range of indexes in QML listviews? I have a listmodel that has ... , only indices 5 to 8? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
728
views
1
answer
qt - QML - tracking global position of a component
I would like to track a global position of an object (or relative to one of it's ancestors) and bind ... calculating the distance between them. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
600
views
1
answer
qt - How to deal with "%1" in the argument of QString::arg()?
Everybody loves QString("Put something here %1 and here %2") .arg(replacement1) .arg(replacement2); but things get itchy ... "); gives "%3-foo" See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
1.3k
views
1
answer
qt - How can I create a QML GridLayout with items of proportionate sizes?
Potentially related: https://stackoverflow.com/a/30860285/3363018 I've been trying to create a QML layout with ... on grid rows and columns? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
791
views
1
answer
qt - QML: List all object members/properties in console
Is there any way to list all object members/properties in QML & Qt 5.1? Such as: var obj=myQObject; ... would be very helpful for debugging. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
667
views
1
answer
qt - How to use QTimer
In Qt I'm trying to set a QTimer that calls a function called "update" every second. Here is my .cpp file ... anybody see what I′m doing wrong? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
567
views
1
answer
qt - What are the advantages/disadvantages of QCustomPlot, compared to Qwt?
I am using Qwt now for two years. I like its object oriented classes, which makes it very easy to adapt the ... not? Are there any pitfalls? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
812
views
1
answer
qt - How to generate .sln/.vcproj using qmake
I have main.cpp in c:est folder and do the following: qmake -project qmake -tp vc test.pro The answer is: WARNING: ... for MSVC 7.1 and 8.0? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
700
views
1
answer
qt - How to preview sizes of widgets in layout before a show()?
How do I preview what the size of widgets in a window will be after the layout rules are applied, before I ... How do I go around that? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
608
views
1
answer
qt - How do you load .ui files onto python classes with PySide?
I've used PyQt for quite a while, and the entire time I've used it, there has been a pretty consistent ... you can just parse the ui?) See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
1.2k
views
1
answer
qt - How to convert qmake to cmake?
I have a .pro file on my project, but now I want to port it to a CMakeLists.txt file. How ... test_interface.h motomanlibrary.h processing.h See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
853
views
1
answer
qt - QWebView or QWebEngineView
Are there any functional differences between QWebView and QWebEngineView? If I understand correctly, QWebView is webkit, ... over the other? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
614
views
1
answer
qt - run apps using audio in a docker container
This question is inspired by Can you run GUI apps in a docker container?. The basic idea is to run apps with audio ... my qt app is using it ;) See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
672
views
1
answer
qt - c++ struct does not name a type
I am defining a structure in a header file, and then setting its members in the corrosponding .cpp file. For doing ... I can do to eliminate it. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
801
views
1
answer
qt - How to force QAbstractItemView recalculate items sizeHints
I have QListView and QTabWidget inside QSplitter. QListView is using custom model and custom delegates. In delegate I ... (); } Similar question See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
485
views
1
answer
qt - How to save and restore the content of a ListModel?
I am able to save settings for list items which is statically created using Component.onComponent method. But Settings ... .fill: parent } } See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
582
views
1
answer
qt - Need QGraphicsScene signal or event for _after_ change
I use QGraphicsScene of the Qt framework. Inside the scene I have some QGraphicsItems which the user can select ... everything by my own? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
829
views
1
answer
qt - Filtering in QFileDialog
I would like to filter the files that are shown in a QFileDialog more specifically than just by file extensions ... these for a QFileDialog? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
546
views
1
answer
qt - How to create a proxy model that would flatten nodes of a QAbstractItemModel into a list in PySide?
I have a hierarchy of nodes represented by a custom QAbstractItemModel. Is it possible to create a proxy model that ... 7 8 8 Thanks, FipS See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
799
views
1
answer
qt - .ico icons not showing up on Windows
I followed the The Qt Resource System guide and the .ico icons appear on Linux. The icons are not showing up on ... I repeat: it works on Linux. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
548
views
1
answer
qt - Is it possible to use QAbstractTableModel with TableView from QtQuick.Controls?
I'm trying to implement following thing: There is 2d table with values. I need to implement UI for viewing ... solution - QMap or QJsonObject? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
984
views
1
answer
qt - How to sort data in QTableWidget?
I have a QTableWidget and the first column contains numbers from 1 to 1000. Now I need to sort the table ... CSV file for populating the table. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
630
views
1
answer
qt - Unresolved Functions While Working With QSslSocket
I tried to run a simple program that is written with Qt and uses QSslSocket. I'm running this program on a ... How can I fix these errors? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
846
views
1
answer
qt - INCLUDEPATH in qmake project file doesn't work
I've got a problem with include in a qmake project. In my .pro file I've got: INCLUDEPATH += "C: ... Creator. What am I doing wrong? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
798
views
1
answer
qt - How to prevent the QBasicTimer::stop: Failed warning when objects become threadless?
QObjects can easily become threadless, when their work thread finishes ahead of them. When this happens, Qt doesn' ... what Qt already does. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
0
votes
721
views
1
answer
qt - Compile Poco with MinGW on Windows
I need to compile poco with MinGW so I can use it in Qt Creator but cannot figure out how to, I've ... use those libraries in Qt Creator. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
qt
Page:
« prev
1
2
3
4
5
6
7
8
9
10
11
12
13
next »
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question
Just Browsing Browsing
[1] antd Upload放动态增减表单 onchange不起作用是什么原因
[2] Vue Router 获取 addRoutes 动态添加的路由
[3] 如何进行登录加密?
[4] scala - ZIO Mock method that works with generics
[5] MySQL str_to_date 如果字符串中没有年 怎么补上?
[6] iconfont 下载的 svg 图标怎么可以让它细一点
[7] git使用开发中,多分支导致的代码混乱问题如何避免
[8] python - How to randomly uppercase characters in a string?
[9] python - Why is the result different ,despite the code is exactly the same?
[10] javascript - React Context Consumer does not update with Hooks state
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...