Is it possible to create new window using QML [closed] - qt

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

Related

Porting C++ Builder to Qt [closed]

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

Difference between JavaFX and Vaadin [closed]

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 7 years ago.
Improve this question
I see JavaFX and Vaadin very similar except for the fact that JavaFX requires Java plugin in the browser. But otherwise it seems to offer the same capabilities. Why should I prefer Vaadin to JavaFX? Is there any case when Vaadin is a better solution?
You pretty much answered it yourself. You just need to look into it a bit more. Chrome started to disable their Java related plugins which will eventually push those apps off the shelf. Who knows when/if the other browsers follow that trend.
Chrome starts pushing Java off the web
Vaadin offers many features that you can easily see for yourself in their demo section. And it's in pure Java. It's still a young technology apparently, give or take 8 years old.
I'm not gonna give my personal opinion because this is not the place but I wished you would've just googled this simple query:
Vaadin vs. JavaFX

Is source code for editor open source? [closed]

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.

windows 8 style API for ASP.NEt (websites) [closed]

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 9 years ago.
Improve this question
I've heard that Microsoft has unleashed a windows 8 style (previously known as metro) API for ASP.NET
Does anyone knows anything about it? What is it called? Where to get it from?
Unfortunately I don't have any link about that API. I've tried searching for it but didn't get any luck.
I have found some JQuery APIs, but I'm asking about the one done by Microsoft itself. Is there any?
I was hoping that there's a simple way of creating "metro look" without having to reinvent any wheel (if there's already an API for it)
That's not called an API, that's ususally called a theme: a set of stylesheets and images.
I think you are looking for Metro UI CSS. It's got little to do with Microsoft though.

Qt Documentation Standards [closed]

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.

Resources