Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to port a C++Builder project to use Qt in its UI. Does anyone know what the Qt equivalents of the VCL's TStatusBar, TStringGrid, TListBox and TSpeedButton components are?
for TStatusBar, use QStatusBar
for TListBox, use QListBox (Q3ListBox in Qt4) or QListWidget
TStringGrid and TSpeedButton apparently have no equivalent. Use Qt demo software to see what Qt toolkit proposes and find what you are looking for.
For other classes (not mentioned by OP):
for TCheckBox, use QCheckBox
for TRadioButton, use QRadioButton
for TComboBox, use QComboBox
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
When I direct edit in Element-tab in dev tools,
there is a recommendation for font-family
so I find fantasy font and want to use it for my project,
then now I want to know this font-family is commercially free or not.
—-edit——
I know I got many dislike for this post,
but I will leave this post for who curious this feature. Thanks
Yes, they are all open source and free to use on your commerical or non-commerical web pages.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new to dart and really like the editor, I mean, just at the editing features: auto-completion, function signature prompt, etc.
Is the underlining technology totally Eclipse? I am not familiar with Eclipse, but I wonder if Dart editor open source? Is it programmed in C++, Java or Dart?
I guess my question is - is it available relatively easy to grab used for an editor in my application? My application is to be done in Dart hopefully.
Right at the top AND bottom of https://www.dartlang.org/tools/editor/, which is the first search result on Google and DuckDuckGo, it says open-source. There's even a link to all the source code on Google Code. It appears to be mostly Python.
Before asking a question, make some effort to find things out for yourself.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Please help. Tried a lot to get a new window, when using QML, but it seems there is no such functionality.
Thanks!
This is what I have:
Qt Creator 2.4.1
Based on Qt 4.8.0 (32 bit)
Built on Mar 21 2012 at 23:05:03
Since Qt 5.0 and QtQuick 2.0 there is the QML component Window which you can use to create new windows in your application. This component has been improved a lot in Qt 5.2 see 5.2 documentation
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Which is the best way to implement grids with common functionality for ASP.NET MVC application?
I don't want to develop it by my own, so could you please suggest best implementation, possibly with MVC support and free?
You can try the below ones..
DataTables.net
jqGrid
These are free and opensource. you just have to include the needed js files and call js methods to start using them...
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
I am looking for some help regarding documenting code in Qt. For instance, when I am developing on the XNA platform I use XML notation with tags such as summary, params, etc. What does Qt have and what are some standards.
In addition, I am looking for something that will work with documentation generating applications (such as Doxygen), unless Qt has something better that I don't know about.
Qt internally uses QDoc, which is not a supported product. It is similar to doxygen. If you already know doxygen, you should use it to document your Qt projects. See also this question.