Set TableView as central widget in dialogHow do you set, clear, and toggle a single bit?What are the differences between a pointer variable and a reference variable in C++?How do I iterate over the words of a string?How can I profile C++ code running on Linux?What is the difference between const int*, const int * const, and int const *?Why do we need virtual functions in C++?Cycles in family tree softwareC++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?Qt QMainWindow central widget deletionImage Processing: Algorithm Improvement for 'Coca-Cola Can' Recognition
Character Transformation
Designing a time thief proof safe
Algorithm that generates orthogonal vectors: C++ implementation
Highest Density Interval for the measure of central tendency
Whaling ship logistics
What secular civic space would pioneers build for small frontier towns?
How to stop the death waves in my city?
MaxDetect speed
Should the average user with no special access rights be worried about SMS-based 2FA being theoretically interceptable?
Duplicate Tuples in two different ways
Assembly of PCBs containing a mix of SMT and thru-hole parts?
When does a UA Sea Sorcerer choose to use the Curse of the Sea feature's additional effect?
How to deal with a PC being played as homophobic?
When did Unix stop storing passwords in clear text?
Windows 10 deletes lots of tiny files super slowly. Anything that can be done to speed it up?
Why is volatility skew/smile for long term options flatter compare to short term options?
How do we know neutrons have no charge?
Beyond Futuristic Technology for an Alien Warship?
Would you write key signatures for non-conventional scales?
Convex hull in a discrete space
"I will not" or "I don't" in the following context?
How to realistically describe pain?
Youtube not blocked by iptables
Why did the Soviet Union not "grant" Inner Mongolia to Mongolia after World War Two?
Set TableView as central widget in dialog
How do you set, clear, and toggle a single bit?What are the differences between a pointer variable and a reference variable in C++?How do I iterate over the words of a string?How can I profile C++ code running on Linux?What is the difference between const int*, const int * const, and int const *?Why do we need virtual functions in C++?Cycles in family tree softwareC++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?Qt QMainWindow central widget deletionImage Processing: Algorithm Improvement for 'Coca-Cola Can' Recognition
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm now develop a GUI using QT in C++. I know we can use function setCentralWidget
to set a widget as central widget of mainwindow, but how can I do that in dialog.
c++ qt
add a comment
|
I'm now develop a GUI using QT in C++. I know we can use function setCentralWidget
to set a widget as central widget of mainwindow, but how can I do that in dialog.
c++ qt
3
UseQVBoxLayout *lay = new QVBoxLayout(your_dialog);
lay->addWidget(your_tableview);
– eyllanesc
Mar 28 at 18:41
This might be also interesting: Qt Examples And Tutorials. ;-)
– Scheff
Mar 29 at 8:13
add a comment
|
I'm now develop a GUI using QT in C++. I know we can use function setCentralWidget
to set a widget as central widget of mainwindow, but how can I do that in dialog.
c++ qt
I'm now develop a GUI using QT in C++. I know we can use function setCentralWidget
to set a widget as central widget of mainwindow, but how can I do that in dialog.
c++ qt
c++ qt
asked Mar 28 at 18:34
Jiawei LuJiawei Lu
689 bronze badges
689 bronze badges
3
UseQVBoxLayout *lay = new QVBoxLayout(your_dialog);
lay->addWidget(your_tableview);
– eyllanesc
Mar 28 at 18:41
This might be also interesting: Qt Examples And Tutorials. ;-)
– Scheff
Mar 29 at 8:13
add a comment
|
3
UseQVBoxLayout *lay = new QVBoxLayout(your_dialog);
lay->addWidget(your_tableview);
– eyllanesc
Mar 28 at 18:41
This might be also interesting: Qt Examples And Tutorials. ;-)
– Scheff
Mar 29 at 8:13
3
3
Use
QVBoxLayout *lay = new QVBoxLayout(your_dialog);
lay->addWidget(your_tableview);
– eyllanesc
Mar 28 at 18:41
Use
QVBoxLayout *lay = new QVBoxLayout(your_dialog);
lay->addWidget(your_tableview);
– eyllanesc
Mar 28 at 18:41
This might be also interesting: Qt Examples And Tutorials. ;-)
– Scheff
Mar 29 at 8:13
This might be also interesting: Qt Examples And Tutorials. ;-)
– Scheff
Mar 29 at 8:13
add a comment
|
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55404672%2fset-tableview-as-central-widget-in-dialog%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55404672%2fset-tableview-as-central-widget-in-dialog%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Use
QVBoxLayout *lay = new QVBoxLayout(your_dialog);
lay->addWidget(your_tableview);
– eyllanesc
Mar 28 at 18:41
This might be also interesting: Qt Examples And Tutorials. ;-)
– Scheff
Mar 29 at 8:13