Knowledge (XXG)

Talk:Qt (software)

Source đź“ť

2283:
occasionally led to slight discrepancies where that emulation wasn't perfect. This, however, no longer applies because the latest versions of Qt use the native styles API of the different platforms to draw the Qt controls." This is a more accurate statement. Qt does use the native styles API to obtain the theme and style information needed for its own rendering engine to draw the control. However, it does not use the rendering of the native API, it still does its own rendering into pixels which it then copies to the screen. While using the style API allows Qt to get the information about GUI elements and draw them using its engine, its still not using the native controls to do the drawing. Any additional flourishes which are implemented by the native controls beyond generic styling must be re-implemented by Qt. This still leads to the imperfect emulation described in the original text. Its still an emulation, albeit an improved one.
329: 308: 183: 2033:
screen. Please show me where it is using native APIs. Yes, they have re-implemented all the look-and-feel of the different platforms in order to get a native look and feel, although its subtly wrong sometimes because they don't actually use the native controls. Changing themes sends an event which Qt gets and updates its own style engine to reflect the theme change. I'm not disputing that Qt achieves a look and feel that's consistent with the platform, but it doesn't do this by using the native controls. It does it by re-implementing the look and feel itself.
899:
Software differs from this, it is however only their opinion and thus their point of view. In the same manner, free software is software which is made available for free, and while the Free Software Foundation defines free software differently, this is only their opinion and not the meaning of the words. Since Egil seems so confused and unwilling to perform the simple task of reading already available information in the
95: 64: 163: 2875:
the calls to the Qt widgets in both my android native code and my iOS native code? Or do I specify it in an XML file, that can be read by an integration module? These are all different approaches taken by different cross-platform GUI toolboxes, so they're all plausible implementations. But which one does Qt use? Or does it take a new approach? If so, what is it? From the article, I don't have a clue. —
236: 215: 33: 2777: 2616: 2874:
There's a huge hole in the article. How does Qt work? When I build a cross-platform GUI, am I writing it in a specific existing language? Or does Qt use its own language? If it's just a widget toolkit that can be called from different languages, how do I achieve portability? Or do I need to duplicate
2257:
Thus on both OS X and Windows XP controls are rendered using native OS theming APIs. Yes, there are some cases where this can't or isn't done, such as QTextControl, but those tend to be corner cases. In some cases the native OS theme APIs actually do quite complex rendering, e.g. on OS X default push
1523:
Trolltech as an entity will exist for up to a year after purchase by nokia (to support contracts signed under the name of Trolltech AS). Internally, it is Qt Software. The article should reflect this throughout, and any mentions of "trolltech" should only be in a historical perspective. A bit of side
1235:
I'm not sure if the rewritten paragraph even belongs, though. I think it could be just as easily removed, yet I expect that some will want mention of the "...commercial development requires the commercial license" bit. I understand that it first appears shockingly in violation of the GPL, but think
787:"This gave rise to two efforts: the Harmony toolkit which sought to duplicate the Qt Toolkit under a free software license and the GNOME desktop that was meant to supplant KDE entirely. The GNOME Desktop uses the GTK+ toolkit which was written for the GIMP, and mainly uses the C programming language." 1779:
I believe this is a wise move, seeing as there is too much, too long text here that can be comfortably read. As Qt becomes ever more popular, more popular are going to be created using the Qt framework. A good move would be to move the subsection of applications into a separate bulleted list. Yannis
1347:
That resemblance seems very weak to me, even after getting the two logoes side-by-side. In any case, the QT logo is a rather obvious way write together a Q and a T, like the æ, which is a contraction of a and e. So I think we can rule out any connection to any (defunct) regime. I also doubt that any
1149:
The article mentioned that there are bindings for C, but where can these be found? I searched the web and did not come up with anything that seemed solid and well supported. Any ideas would be helpful. Perhaps it would even be possible to link directly from the article to bindings for the different
524:
I think there is. Okay, the GTK toolkit could be called just GTK here. But what about the Harmony toolkit? Knowledge (XXG) will become immense, so I think it's important to be as precise as possible, also in naming. (Although I haven't followed naming convention discussions, so I don't know what the
2369:
is buying part of Qt. I'm not sure who will own the Qt brand and such, and the stuff like qt.nokia.com or the Qt port of WebKit. After the Nokia+Microsoft deal, it seems things are changing a lot and Nokia will be "just" another Microsoft partner. I'm afraid about the future of Qt. As this is going
2013:
I disagree. Looking at Qt’s source code, it is clear that it uses native APIs. Even Windows Vista and 7’s transitions as well as Mac OS X’s are rendered. On Windows XP, a change in theme results in Qt applications taking the change into account. In GTK+ environments, the current theme is also used.
1086:
Returning to the issue at hand, we cannot say "Until version 1.45, Qt was free and open" because that would make us claim a certain point of view in a matter we know is controversial, as in case 2. We could apply case 1, but then we need to find someone notable X that supports this view. Saying "An
1049:
Where is it my English is failing? The stuff was free, you could download it for free. The stuff was open source, the source code was open for viewing. The point of view of the Open Source Initiative adds in special restrictions to their version of Open Source Software, in the same manner as the
2421:
In this case it relies on an ambiguity to suggest one sense of "innovation" while using the term in another sense. Who innovated and what was their innovation? Now it becomes a problematic assertion with regard to the facts concerning novelty and originality in a GUI Widget framework, library or
1507:
The article switches back and forth between referring to Qt's authors as Trolltech and as Qt Software, as I note their own website does, as well. Is there a particular reason for this? The article's rather confusing as it stands right now. If no one objects, I'm going to add a clarification to the
1470:
VMware server 2.0 rc1 for management uses Java toolkit not QT. I analyzed all binary and library in the Linux package RC2 downloaded today with 'nm', and there are no call to QT. But there are a lot of call to GLib/Gobject library, that are also packaged toghether. The 'vmware' executable, start a
1300:
The GPL is usually interpreted so that even if a developer jumps through hoops to avoid actually linking the code together (eg. using IPC), if the end result is the same — that the application is effectively useless without the GPL portion — it is considered an aggregate work and is covered by the
1286:
server, so it seems to be possible to split an application into a proprietary back-end and a open source Qt-based front-end without violating the GPL. One might declare the front-end is compatible with any back-end that conforms to a certain protocol; and it isn’t the developer’s trouble that the
2098:
Qt does use the native theme APIs of the OS to render, that is draw, controls. This is done on at least the Mac (OS X) and Windows XP for most controls (QTextControl IIRC is an exception). Native rendering may also be used on other platforms (e.g. Gtk and Windows Vista) but I haven't had time to
2032:
I looked at the source code for QTextControl. All the event handling, selection logic, etc., is implemented by Qt and not by using the native controls. The rendering is done the way Qt has always rendered widgets: by rendering them using their own style engine and then bit-blasting that to the
898:
Since there seems to be some confusion from the Nord on how the English language works, I'll lay it down for you all here. Open source means the source is available, this is not a point of view, this is the broadest definition of the term, the Open Source Initiative's definition of Open Source
609:
First, I removed non-commercial, since of course GPL software can be commercial. Then I realized that the remainder was duplicative of what the GPL already says. The complications of describing what Gerv mentions are beyond the scope of this article. It's cool, tho, so I stuck it into links.
2116:
I'll update the Qt article to reflect this as currently the article states that the native theme APIs are used only to 'query the platform for the desired appearance', which is not the whole truth. Qt doesn't only use native themeing APIs to get metrics; native theme APIs are also used to draw
1984:
Despite the phrasing on their web site, the actual source code does not bear this out. Qt still uses its own style engine to render everything down into pixels and bitblast that to the screen. They do not use native controls and use very little of the native platform's graphics API to render
1231:
I started to reword this sentence and add it to the preceding paragraph since 1) is skirts around the fact that Qt is not LGPL and has no GPL exception, 2) mentioning GTK+ doesn't make it any clearer, and 3) the rest is not relevant. By the time I was done I had removed it and rewritten the
1104:
So, you're saying that we have to have a neutral point of view by saying, "Until version 1.45, the English language claims that Qt was free and open source, while the Open Source Initiative claims otherwise regarding hope open it's source was and the Free Software Foundation claims otherwise
2282:
The wording used to read "Complete abstraction of the GUI: Qt uses its own paint engine and controls. This makes the work of porting to other platforms easier because very few classes in Qt depended on the target platform. Qt used to emulate the native look of its intended platforms, which
982:
Until version 1.45, source code for Qt was released under the FreeQt license — which, while both free and open source, was viewed as neither open source nor free software by the Open Source Initiative and Free Software Foundation because while the source was available it did not allow the
2173:] QMacStyle::drawControl currently starts on line 3170, CE_PushButtonBevel case is handled on line 3380, HIThemeDrawButton is used on line 3414 to draw the control. HIThemeDrawButton is a native OS X function, it is part of the HITheme APIs which are part of the Apple Appearance Manager. 1135:" are linked, there's no need because readers can click through for details on what the terms mean. The English language is a set of components. When put together, the components can mean something other than the combination of the strict interpretation of the individual components. — 1130:
The OSI and FSF's definitions of Open Source and Free Software are the commonly accepted definitions. Any deviation from their definitions would be misleading. Perhaps it would be an amicable conclusion to state "... (according to the FSF's definition)", although I think if the words
2151:
As has been stated in other comments Qt renders controls using implementations of the QStyle interface, e.g. QStyle::drawControl is used to draw bevelled push buttons when the ControlElement parameter is CE_PushButtonBevel, the documentation for the current release (4.8) is here
2675:
For the "Q... on Windows" link, I converted it to {{cite web}} and used a different archive URL - the one Cyberbot II picked didn't have any content; I guess the project removed the content when they abandoned the project (after Trolltech released the Windows Qt source).
2827:
I think it should be noted on the page (somehow) that Qt Location still use the very old and completely unmaintained Geoclue API. While the old API is kept alive by some folks downstream (Jolla), the code hasn't even existed in the upstream repo for many years now.
1032:
In my view, the anon's version is definately a bit POV but OTOH the version with the OSI stance is a bit excessive - i.e. it could use a bit more support of the TT view - i.e. perhaps instead of just "which, while both free and open " you could say that it
1833:
into this article more than a month ago, but did not seem to provide a rationale. I do not think a merge would be appropriate at this point, and will remove the tags - unless, of course, there are any objections or arguments presented in favor of merging.
2210:
drawBackground, this either calls drawBackgroundDirectly or drawBackgroundThruNativeBuffer, both of these functions end up doing the drawing with pDrawThemeBackground or pDrawThemeBackgroundEx, these pointers are initialized on lines 353 and 354 like
2525:
I tried viewing those Pluralsight tutorials. Not only do they require sign-up to view, they have the audacity to ask for one's credit card details even to begin a free trial! Are we sure that such sites deserve to be linked to by Knowledge (XXG)?
2430:
Now that Qt has a LGPL or even less restrictive license for most languages (as shown in the table Qt language bindings), why is there a commercial license and why would anybody need it? Does the product sold by Digia differ from the open source
1471:
browser to 127.0.0.1:port and run the java interpreter. To me the management console is a Java applet. Where you "84.179.187.40" found that "# VMWare Server, a PC virtualization application, Qt frontend since version 2.0" citation? --
1160:
The C bindings are commonly used as a base to bind other languages. I'd not consider that a point worth including in the entry -- I'm just tossing it out as a point of information to help you track them down. 13:59, 15 August 2006
1206:
Needs some sort of citation or justification. The phrase " 'moc'-ery of c++ " is clearly a value judgement (besides being essentially meaningless) and should surely be attributed to someone if indeed someone has ever said that.
856:
Article says: "Other portable graphical toolkits have made a different design decision, such as wxWidgets, MFC (Windows only), GTK+, and the Java based SWT which use the toolkit of the target platform for their implementation."
1390:
Starting from Qt 4.3.1, Qt lists a long list of linking exceptions for the GPL. It seems you are now able to link most Open Source licenced software with Qt. I think that warrants an update of that section in the article. See
192: 78: 2982: 2340:
Well, I don't have Qt Designer but looks like the screenshot is from version 4.4.3. Article says the latest version is 4.7. Have there been a lot of changes since version 4.4.3 that can be seen in a screenshot?
290: 2505:
and Plasma Next have been ported to Qt5 and the KDE Application will be in the future. Qt 5 was released on 19 December 2012, so I think it is lack of manpower that made KDE port so lately. What about
1050:
Free Software Foundation does with Free Software. One cannot simply declare a new meaning for a word, the English language is not directed by a few small committees looking to push their own agenda.
3012: 2977: 197: 478:
I don't know how to 'cite' this, but it is called that in their developer videos and anyone who has attended a QuickStart or Developer Day. I've witnessed it used in all three personally myself.
1436:
On this date both companies announced the plans for the acquisition, but the process has just started. The Trolltech stakeholers are today as owners of the company as they were last week.
2962: 876: 2972: 1227:
Alternative toolkits such as GTK+ are available under a more permissive free software/open source license, at the expense of less complete support for Mac OS X and Microsoft Windows.
1177:
The bindings are called QtC. You might be able to find them, but it's are essentially a dead project. This is to the best of my knowlegde, an oldish wiki entry on the subject is here
1018:
principle, is not capable of understanding it, or is trolling. I am leaning towards the latter, but I'm tired of this, and would greatly appreciate the help and opinions of others.
1462:
In the design section , why there is a refer to wxWidgets?! it's supposed to be in the "See Also" section not within the article as that's seems to be ads from it's designers!!
1508:
introductory paragraph to the effect that the company's still referred to by its old name, or else update all references to Trolltech in the body of the article to Qt Software.
2209:] QWindowsXPStyle::drawControl currently starts on line 1878, CE_PushButtonBevel case is handled on line 1942, 'flat' push buttons are handled in line 1966 which calls d-: --> 2987: 1402:
The open source editions of Qt 4.3.2 and above now support visual studio in as much as they officially work with the compiler, and qmake can generate visual studio projects (
1168:
I spent quite some time trying to track them down, but came up with nothing useful. Where can the C bindings be found? Do they come from Trolltech or a third party? Thanks.
1555:
A cursory glance reveals http groups.google.com group/comp.os.linux.announce/msg/ba2a4d4efc9fe910?dmode=source&output=gplain ... though there could be earlier ones?
328: 307: 411:
The article states "Qt (pronounced "cute" or as an initialism)", however, this seems incorrect, Qt is never supposed to be an initialism, that is considered a typo. --
2240:
That is the drawing is done by functions which are loading dynamically from "uxtheme", this is an OS library that provides the Windows Theme Manager Visual Style APIs.
1210:
Furthermore, the "C++ community" is a very vague term, since it is not clear who is included in this. Exactly who has made these critisms of Qt should be referenced.
863:
Yes this is definitely not true for GTK+, but you could add AWT to the list.... also it's pretty obvious that an one-platform toolkit like MFC uses native widgets...
1952:
IINM, MeeGo Touch was developed at Nokia, not Intel. Having said that, it is Open Source, so perhaps Intel also contributed in some way, or forked it or something.
792:"Trolltech licensed the first version of Qt under the Q Public License (QPL), a free software license, but one regarded by the FSF as incompatible with the GPL." 2957: 430:
Why is there no criticism section? Surely not everyone believes that Qt is perfect when it is in fact simply the least worst option available at the moment. --
1287:
only application implementing the protocol is their own proprietary program. This also has the advantage of having the community improve the front-end module.
153: 1406:) - there is however no IDE integration in the open source edition. There's no official binaries for this option though - Qt needs to be built from source. 1301:
GPL. To cover your examples of Firefox/IIS and Outlook/Exim, all four applications work perfectly well without any of the others — they are not dependent. —
3022: 383: 2947: 143: 389: 1000:(Around here, we do not apply people nor organizations' points of view - therefore the point of view of the Open Source Initiative does not belong here 3002: 1087:
anonymous contributor to Knowledge (XXG) claims that Qt version before 1.45 were free and open" does not fullfill the requirement for notability. --
621:
I have updated the history of Qt, to include the big events: inclusion of the Mac Os X version, GPLing of the Mac version and GPLing of all versions.
280: 2014:
I’m not sure whether how it is implemented matters, as long as applications look and feel native (as much as a cross-platform framework allows it).
2715:
after the link to keep me from modifying it, if I keep adding bad data, but formatting bugs should be reported instead. Alternatively, you can add
2134:
I will provide links to the actual source code for mac and winxp where the drawing is done. Focusing on QPushButton which is a push button control.
1270:
What if a proprietary application uses Qt, not by linking to it but using some other way of interprocess communication? It’s completely legal for
119: 1968: 1361:
Consider this a comment from an employee, as far as I'm aware, it was entirely unintentional, and even unknown until I'd read this statement.
3007: 1985:
controls. Basically, this section is based on a stretching of the truth from a statement on the Qt web site and should be removed entirely.
2422:
architecture and needs some references to back it up given a multitude of other articles in wp. G. Robert Shiplett 21:57, 7 March 2011 (UTC)
1531: 1443: 1368: 256: 2190:
That is by default, on OS X, drawing of bevelled push buttons is done using native OS theme APIs. Most other controls are handled similarly.
1574:
Given that Nokia has been getting more aggressive in creating bindings I think this should move from a sentence to a full list (with links)
3027: 3017: 1337: 369: 345: 2667: 2942: 2920: 2893: 2325: 1648: 1509: 800:
the FreeQt license (wasn't free software or open source) was used for Qt 1.45 and earlier), and the QPL only introduced with Qt 2.0. -
2952: 2455: 2375: 1556: 570: 431: 412: 102: 69: 2997: 1887: 1413: 172: 74: 1403: 1037:
to be that (if it did claim to be that, that is). In other words, a bit of attribution towards the TT side should balance it out.
1489: 243: 220: 930: 2992: 2666:
shows it as taking a full URL, complete with the scheme. The Wayback Machine URL in the version before Cyberbot II's work was
2068:
Indeed, after looking a closer look at the source code, I have to admit that you are right: Qt only reads theme informations (
336: 313: 44: 2967: 2494: 2299: 2049: 2001: 1796: 2593: 2542: 2843: 2389: 1768:
Subsequent comments should be made in a new section on this talk page. No further edits should be made to this section.
1677:
Subsequent comments should be made in a new section on the talk page. No further edits should be made to this section.
2498: 946:
I could care less about the OSI's point of view. The term means open and so is valid, you're removing it is a POV.
797: 1964: 603:
Removing this line: Note that the open source edition is restricted to open source non-commercial development only
1818: 1937: 1867: 1830: 1641:
C++ GUI Programming with Qt 4/first edition. (2nd last link) does not work as of 20:29, 23 November 2009 (UTC)
1535: 1447: 1372: 884: 182: 2171:
Let's start with OS X, the default qstyle implementation on this platform is macstyle, the source code is here
1333: 255:
topics on Knowledge (XXG). If you would like to participate, please visit the project page, where you can join
248: 2451: 2207:
Next Windows XP, the default qstyle implementation on ths platform is windowsxpstyle, the source code is here
626:
I am hesitant about how to refer to Windows the platform. Is it Windows, windows or always Microsoft Windows ?
50: 2924: 2897: 2329: 2223:
354 pDrawThemeBackgroundEx = (PtrDrawThemeBackgroundEx )themeLib.resolve("DrawThemeBackgroundEx")
2069: 1513: 2670:, which didn't include http:// before the original URL, which is probably why Cyberbot II didn't include it. 2459: 2379: 2263: 2220:
353 pDrawThemeBackground = (PtrDrawThemeBackground )themeLib.resolve("DrawThemeBackground");
1652: 1560: 435: 416: 2831: 2530: 2470: 2418:
This is a sort of passive construction nonsense characteristic of a certain kind of journalism, is it not?
2321: 2287: 2037: 1989: 1960: 1956: 1891: 1784: 1644: 1527: 1439: 1417: 1409: 1364: 1291: 1072: 880: 2346: 914: 872: 115: 2374:
company too (wich currently provides lots of resources to Qt development but not mentioned here at all).
1524:
info, this name was decided upon by a vote of the employees. Sadly, I don't have any citations on that.
2880: 2809: 2789:
If you have discovered URLs which were erroneously considered dead by the bot, you can report them with
2648: 2628:
If you have discovered URLs which were erroneously considered dead by the bot, you can report them with
2436: 2259: 2077: 2019: 1922: 1609:
At least from looking at the Qt Jambi page, it seems as if there are still new versions being released.
1578: 967:, probably the same person as the above, keeps on changing the paragraph on Qt versions up to 1.45 into: 501:, but I don't think it has to be. BTW: The company calls itself Trolltech, not Troll Tech or TrollTech. 344:
on Knowledge (XXG). If you would like to participate, please visit the project page, where you can join
118:
on Knowledge (XXG). If you would like to participate, please visit the project page, where you can join
2723:
to keep me off the page altogether, but should be used as a last resort. I made the following changes:
2662:
For the Volvo link, I changed the URL in the url= parameter to include http:// - the documentation for
2538: 1213: 514: 479: 2839: 2668:
http://web.archive.org/web/20110714191457/qt.nokia.com/qt-in-use/story/customer/volvo-mobility-systems
2432: 1106: 1051: 964: 947: 904: 553:
I'm thinking from the viewpoint of the category, not of the article. It's a major toolkit used on X -
2767: 2681: 2478: 1933: 1863: 1487: 772: 735: 691: 458: 2501:
and populated them. It would be nice to know the version. What software uses Qt3, Qt4 or Qt5. AFAIK
32: 2859: 2745:
Attempted to fix sourcing for //qt.nokia.com/qt-in-use/story/customer/walt-disney-feature-animation
1852: 1788: 1321: 704: 2534: 921:
would be disputed, and certainly claiming a point of view. An outright claim that this license is
592: 2295: 2045: 1997: 1842: 1814: 1792: 1623: 1595: 1178: 1071:
The added requirement is that both X and Y, plus the claims A and B, fullfil the requirement for
2733:
Attempted to fix sourcing for //qt.nokia.com/about/news/panasonic-selects-qt-for-hd-video-system
2454:, is dead. The page is still alive, but the content is no longer at that location, if anywhere. 2790: 2727:
Attempted to fix sourcing for //qt.nokia.com/qt-in-use/story/customer/esa-european-space-agency
2629: 1472: 1404:
http://labs.trolltech.com/blogs/2007/09/18/qtwindows-open-source-edition-to-support-vs-express/
875:
for peer review, as I intend to candidate it for featured status. I would appreciate comments (
2710: 2663: 2572: 2506: 2342: 1317: 1279: 647:– {Qt is known as Qt, not "Qt toolkit". QuickTime is QT, not Qt. So there is no confusion.} — 591:
Could someone please add how good Qt supports various font related features (OpenType like in
554: 546: 1015: 926: 450: 375: 2876: 2805: 2644: 2502: 2073: 2015: 1918: 1683: 1575: 746: 538: 506: 2797: 2636: 2371: 2366: 1972: 604: 497:? The program is called Qt, not QT and if the toolkit-attribute is needed we could call it 2718: 2677: 2589:
Attempted to fix sourcing for qt.nokia.com/qt-in-use/story/customer/volvo-mobility-systems
2580: 2474: 845: 805: 769: 732: 688: 534: 454: 2854:
Why is that a topic for Knowledge (XXG)? Report the issue to Qt's bug tracker instead. --
2594:
https://web.archive.org/20121206221843/http://qtwin.sourceforge.net/qt3-win32/history.php
1759: 1668: 545:
I'm not sure this belongs in Category:X Windows Systems; it's really a portable toolkit.
446: 2855: 1848: 1697: 1476: 2796:
If you found an error with any archives or the URLs themselves, you can fix them with
2635:
If you found an error with any archives or the URLs themselves, you can fix them with
1806: 2936: 2700: 2597: 2562: 2291: 2041: 1993: 1836: 1810: 1618: 1591: 1132: 1078:
A POV statement of the above scenario, not acceptable for Knowledge (XXG), would be:
648: 2362: 1693: 1486:
Thanks, I removed the line. If it really was written in Qt, someone can cite it. —
717: 613: 445:"Why is there no criticism section?" Because nobody's added one. If you can find 1202:
The use of an additional tool has been criticised by part of the C++ community...
529:
Harmony is no more. However, why do you call it QT_Toolkit instead of Qt_Toolkit
513:-Generally QT refers to QuickTime (Apple, Inc), so Qt is used to avoid confusion 17: 2835: 2511: 2258:
buttons pulsate. That's the OS doing the animation, Qt is not emulating that. --
1741: 1392: 1302: 1257: 1136: 900: 574: 2914: 2400:"The innovation of Qt when it was first released relied on a few key concepts" 1616:
If you spot an error in the article, feel free to fix it yourself :). Regards,
1590:
Should the screenshot top-right now be changed to Qt Creator (the new QT IDE)?
1063:
I'll try to explain. A NPOV statement, suitable for Knowledge (XXG), would be:
162: 94: 63: 2736:
Attempted to fix sourcing for //qt.nokia.com/qt-in-use/qt-in-ip-communications
1349: 1180: 1169: 1151: 929:
policy. By your name-calling in the edit summaries, you are also breaking the
903:
article, perhaps he will take the time and exert the effort to read it here.
841: 801: 713: 640: 581: 498: 490: 2742:
Attempted to fix sourcing for //qt.nokia.com/qt-in-use/story/customer/siemens
2415:"The election of Nixon when it first occurred relied on a few key promises." 811:
BTW: The article would really benefit from a simple "stable versions" table:
666:
followed by an optional one sentence explanation and sign your vote with ~~~~
1115: 1088: 1019: 934: 111: 2730:
Attempted to fix sourcing for //qt.nokia.com/qt-in-use/qt-in-visual-effects
2509:
and all the other software that uses Qt? What about proprietary software?
505:
Fixed. It is now "Qt", also I fixed the spelling of Trolltech, thanks. --
1320:
on purpose, or has someone from Trolltech confirmed it as an accident? --
756: 678: 107: 2577:
after the link to keep me from modifying it. Alternatively, you can add
235: 214: 2739:
Attempted to fix sourcing for //qt.nokia.com/qt-in-use/qt-in-home-media
2388:
Right, it should be mentioned that Qt is struggling to stay alive. See
1271: 1039: 2928: 2901: 2884: 2863: 2847: 2817: 2784:
An editor has reviewed this edit and fixed any errors that were found.
2685: 2656: 2623:
An editor has reviewed this edit and fixed any errors that were found.
2546: 2515: 2482: 2463: 2440: 2383: 2350: 2333: 2303: 2267: 2081: 2053: 2023: 2005: 1941: 1926: 1895: 1871: 1856: 1751: 1686: 1627: 1599: 1580: 1564: 1539: 1517: 1496: 1480: 1451: 1421: 1376: 1352: 1341: 1305: 1294: 1260: 1216: 1183: 1172: 1154: 1139: 1118: 1109: 1091: 1054: 1043: 1022: 950: 937: 907: 888: 517: 482: 462: 439: 420: 1548: 252: 2585:
to keep me off the page altogether. I made the following changes:
341: 2214:
346 QSystemLibrary themeLib(QLatin1String("uxtheme"));
525:
consensus is). (Also, the original article wasn't mine.) -- Zork
2983:
C-Class Free and open-source software articles of Mid-importance
2748:
Attempted to fix sourcing for //qt.nokia.com/qt-in-use/autodesk/
1775:
REQUEST: Moving the 'Applications' subsection to a separate list
1283: 593:
http://www.linotype.com/8-36-8-17886/re-introducingzapfino.html
1275: 378:
in the banner shell. Please resolve this conflict if possible.
374:
This article has been given a rating which conflicts with the
26: 2752:
When you have finished reviewing my changes, please set the
2603:
When you have finished reviewing my changes, please set the
1348:
trolltech employee would stoop to actually comment on this.
768:
The alternative proposal has been accepted and implemented.
181: 161: 2357:
Nokia Sells the Qt Licensing and Services Business to Digia
813: 726: 722: 708: 644: 494: 1774: 1738:, in this case. What do other editors think? Thank you. — 1194:
Citation needed to say moc is critised by "C++ community"
913:
The early QT license is not open source according to the
1915:
seen it spelled this way, with a dot after each letter.
1667:
The following discussion is an archived discussion of a
783:
This section seems to be inaccurate, and contradictory:
2704: 2699:
I have just added archive links to 8 external links on
2566: 2561:
I have just added archive links to 2 external links on
2370:
to happen, someone should do a wikipedia entry for the
1883: 1717: 860:
Gtk+ uses "the toolkit of the target platform"? Huh?
3013:
Start-Class articles with conflicting quality ratings
2978:
Mid-importance Free and open-source software articles
1847:
13:50, 23 April 2010 (UTC) I am also against merge .
1758:
The above discussion is preserved as an archive of a
840:
If anyone would like to investigate the details... -
1725:"Qt – A cross-platform application and UI framework" 340:, a collaborative effort to improve the coverage of 247:, a collaborative effort to improve the coverage of 106:, a collaborative effort to improve the coverage of 1716:, it also can be used to create non-gui apps. From 1256:
Anyway, let me know if the changes bother anyone.--
1105:regarding how free it was." That's seems stupid. 2598:http://qtwin.sourceforge.net/qt3-win32/history.php 1222:Alternative toolkits such as GTK+ are available... 595:, Bidi, etc.). I guess that what Scribe is about? 388:This article has not yet received a rating on the 1682:The result of the move request was: Page moved. 1433:which was acquired by Nokia on January 28, 2008 2963:C-Class software articles of Unknown-importance 2072:). I think I kind of missed your point. Sorry. 2973:C-Class Free and open-source software articles 1114:Welcome to the world of encyclopedia writing! 2318:Can we please get an up to date screenshot? 1660:Requested move: Qt (toolkit) → Qt (framework) 1393:http://trolltech.com/products/qt/gplexception 1252:development requires the commercial license. 745:. I very much agree with this suggestion. -- 8: 2915:https://www.qt.io/blog/qt-6.2-and-windows-11 1905:“commonly known also as "Q.T. (KYOO-TEE)"” 1886:that is for sale, please remove it asap. -- 1266:Proprietary software with GPL version of Qt 2988:All Free and open-source software articles 2829: 474:Trolltech insiders pronounce Qt as "cute" 302: 209: 58: 1316:Is the resemblance of the Qt logo to a 1014:This anon user has either not read the 304: 211: 60: 30: 1908:Is it possible to prove that, please? 1428:Trolltech not acquired yet by Nokia 2764:to let others know (documentation at 599:QT GPL version vs proprietary version 128:Knowledge (XXG):WikiProject Computing 7: 2958:Unknown-importance software articles 451:feel free to add a Criticism section 334:This article is within the scope of 241:This article is within the scope of 100:This article is within the scope of 1386:New licence exceptions for Qt 4.3.1 983:redistribution of modified versions 931:Knowledge (XXG):No personal attacks 49:It is of interest to the following 3023:Unknown-importance Brands articles 1947: 1882:There is incorrect link to domain 571:Integrated Development Environment 533:correct, I have added this to the 376:project-independent quality rating 354:Knowledge (XXG):WikiProject Brands 25: 2948:Mid-importance Computing articles 2703:. Please take a moment to review 2565:. Please take a moment to review 1780:A 01:51, 14 February 2010 (UTC) 834:Introduction of the QPL etc etc. 265:Knowledge (XXG):WikiProject C/C++ 2775: 2614: 2499:Category:Software that uses GTK+ 2471:"Nokia to license Qt under LGPL" 1805:For this purpose already exists 1278:-powered server, as well as for 867:Peer review of a related article 327: 306: 234: 213: 93: 62: 31: 2452:LGPL License Option Added to Qt 2406:"The innovation .. relied on " 1980:Use of native UI-rendering APIs 1198:I think the paragraph starting 1081:2) While A is true, Y claims B. 1066:1) X claims A, while Y claims B 285:This article has been rated as 148:This article has been rated as 2892:I'm also interested in this -- 2495:Category:Software that uses Qt 2483:19:02, 17 September 2013 (UTC) 2464:18:40, 17 September 2013 (UTC) 1807:Category:Software_that_uses_Qt 1497:00:42, 18 September 2008 (UTC) 1481:23:48, 17 September 2008 (UTC) 1040:Just another star in the night 131:Template:WikiProject Computing 1: 3003:Mid-importance C/C++ articles 2823:Location uses archaic geoclue 2469:I replaced it with a link to 1973:03:36, 23 December 2010 (UTC) 1565:20:01, 26 February 2009 (UTC) 1540:10:39, 12 November 2008 (UTC) 1422:00:44, 24 November 2007 (UTC) 1377:10:32, 12 November 2008 (UTC) 894:open source and free software 889:18:07, 21 February 2006 (UTC) 489:Is there any reason to write 348:and see a list of open tasks. 259:and see a list of open tasks. 193:Free and open-source software 190:This article is supported by 170:This article is supported by 122:and see a list of open tasks. 79:Free and open-source software 1829:An editor proposed to merge 1752:16:26, 23 January 2010 (UTC) 1687:17:17, 1 February 2010 (UTC) 1628:18:48, 31 October 2009 (UTC) 1518:01:18, 6 November 2008 (UTC) 1452:07:29, 29 January 2008 (UTC) 998:this time with the comment: 3028:WikiProject Brands articles 3018:Start-Class Brands articles 2686:19:01, 27 August 2015 (UTC) 2657:11:25, 27 August 2015 (UTC) 2304:21:17, 5 January 2011 (UTC) 2082:20:19, 5 January 2011 (UTC) 2054:17:25, 5 January 2011 (UTC) 2024:14:22, 5 January 2011 (UTC) 2006:03:24, 5 January 2011 (UTC) 1734:is much more accurate than 1312:In Russia, logo designs YOU 1236:of the same statement with 1173:15:09, 16 August 2006 (UTC) 848:11:11:44, 2005-08-12 (UTC) 808:08:48:25, 2005-08-12 (UTC) 687:- see my suggestion below. 518:02:10, 29 August 2007 (UTC) 483:02:10, 29 August 2007 (UTC) 421:04:41, 27 August 2023 (UTC) 357:Template:WikiProject Brands 3044: 3008:WikiProject C/C++ articles 2943:C-Class Computing articles 2818:03:11, 31 March 2016 (UTC) 2721:|deny=InternetArchiveBot}} 2696:Hello fellow Wikipedians, 2583:|deny=InternetArchiveBot}} 2558:Hello fellow Wikipedians, 2547:16:25, 14 March 2015 (UTC) 2441:18:49, 5 August 2012 (UTC) 2426:LGPL vs commercial license 1306:01:28, 25 March 2007 (UTC) 1295:18:28, 24 March 2007 (UTC) 1261:21:44, 20 March 2007 (UTC) 1140:01:44, 25 March 2007 (UTC) 951:20:36, 25 March 2006 (UTC) 938:13:07, 25 March 2006 (UTC) 908:08:06, 25 March 2006 (UTC) 390:project's importance scale 268:Template:WikiProject C/C++ 154:project's importance scale 2953:C-Class software articles 2929:12:50, 1 April 2022 (UTC) 2902:12:51, 1 April 2022 (UTC) 2412:Try this for comparison: 2384:16:50, 7 March 2011 (UTC) 2351:12:26, 7 March 2011 (UTC) 2334:10:37, 7 March 2011 (UTC) 2268:21:04, 25 July 2012 (UTC) 1942:08:32, 14 July 2010 (UTC) 1927:16:28, 30 June 2010 (UTC) 1896:11:23, 15 June 2010 (UTC) 1872:08:32, 14 July 2010 (UTC) 1857:23:19, 28 June 2010 (UTC) 1831:Qt Development Frameworks 1612:So that remark is wrong. 1581:01:05, 2 April 2009 (UTC) 1503:Trolltech vs. Qt Software 1353:10:24, 30 July 2007 (UTC) 1342:03:24, 30 July 2007 (UTC) 1248:Trolltech maintains that 1217:20:41, 18 June 2006 (UTC) 1119:18:49, 2 April 2006 (UTC) 1110:17:17, 2 April 2006 (UTC) 1092:15:33, 2 April 2006 (UTC) 1055:01:27, 2 April 2006 (UTC) 1044:00:19, 2 April 2006 (UTC) 1023:23:06, 1 April 2006 (UTC) 738:17:53, 31 Mar 2005 (UTC) 699:Alternative proposed move 651:10:31, 28 Mar 2005 (UTC) 616:22:28, 14 Feb 2005 (UTC) 577:02:42, 18 Nov 2004 (UTC) 549:14:57, 30 Jun 2004 (UTC) 387: 373: 322: 284: 229: 189: 169: 147: 88: 57: 2885:17:02, 6 July 2018 (UTC) 2870:Huge Hole in the Article 2516:17:13, 21 May 2014 (UTC) 2403:What is the expression 1819:23:10, 18 May 2010 (UTC) 1765:Please do not modify it. 1730:I believe that the word 1674:Please do not modify it. 1600:10:20, 12 May 2009 (UTC) 1184:20:11, 6 July 2007 (UTC) 1155:12:52, 17 May 2006 (UTC) 775:17:51, 2 Apr 2005 (UTC) 749:20:39, 31 Mar 2005 (UTC) 694:17:53, 31 Mar 2005 (UTC) 681:11:37, 28 Mar 2005 (UTC) 580:No, it is not an IDE. -- 557:15:08, 30 Jun 2004 (UTC) 541:23:40 Mar 31, 2003 (UTC) 509:23:40 Mar 31, 2003 (UTC) 463:17:50, 30 May 2017 (UTC) 440:17:26, 30 May 2017 (UTC) 2864:13:04, 7 May 2018 (UTC) 2848:12:19, 6 May 2018 (UTC) 2692:External links modified 2554:External links modified 2409:to be thought to mean? 1398:Windows and Open Source 1232:preceding paragraph. 759:17:34, 1 Apr 2005 (UTC) 587:Status of Font Support? 2998:C-Class C/C++ articles 2993:All Computing articles 1948:"Intel's MeeGo Touch"? 1254: 1229: 915:Open Source Definition 873:X Window core protocol 725:becomes a redirect to 476: 186: 166: 116:information technology 39:This article is rated 2968:All Software articles 1718:Qt's official website 1458:Refering to wxWidgets 1246: 1225: 472: 185: 165: 103:WikiProject Computing 43:on Knowledge (XXG)'s 2611:to let others know. 2569:. If necessary, add 2396:grammar or rhetoric? 1700:— I suggest to move 1637:Non operational link 1605:Qt Jambi not stopped 1282:to send mail via an 917:, so using the term 173:WikiProject Software 2910:win 11 supported... 2756:parameter below to 2607:parameter below to 1884:http://qtgears.com/ 705:Qt (disambiguation) 779:Qt license history 337:WikiProject Brands 187: 167: 134:Computing articles 45:content assessment 2850: 2834:comment added by 2816: 2664:Template:cite web 2655: 2550: 2533:comment added by 2324:comment added by 2307: 2290:comment added by 2057: 2040:comment added by 2009: 1992:comment added by 1976: 1959:comment added by 1878:REQUEST: Bad Link 1846: 1801: 1787:comment added by 1750: 1647:comment added by 1530:comment added by 1494: 1466:VMware server 2.0 1454: 1442:comment added by 1424: 1412:comment added by 1367:comment added by 1318:hammer and sickle 1274:to connect to an 1042: 838: 837: 404: 403: 400: 399: 396: 395: 301: 300: 297: 296: 244:WikiProject C/C++ 208: 207: 204: 203: 18:Talk:Qt (toolkit) 16:(Redirected from 3035: 2812: 2811:Talk to my owner 2807: 2782: 2779: 2778: 2771: 2722: 2714: 2651: 2650:Talk to my owner 2646: 2621: 2618: 2617: 2584: 2576: 2549: 2527: 2514: 2503:KDE Frameworks 5 2489:Users / Adopters 2446:Broken reference 2336: 2306: 2284: 2056: 2034: 2008: 1986: 1975: 1961:Davidmaxwaterman 1953: 1840: 1839: 1800: 1781: 1767: 1748: 1744: 1739: 1676: 1656: 1621: 1570:list of bindings 1542: 1493: 1490: 1437: 1407: 1379: 1292:Roman V. Odaisky 1038: 965:User:65.95.124.5 877:Peer review page 814: 493:instead of just 447:reliably sourced 362: 361: 358: 355: 352: 331: 324: 323: 318: 310: 303: 291:importance scale 273: 272: 269: 266: 263: 238: 231: 230: 225: 217: 210: 136: 135: 132: 129: 126: 97: 90: 89: 84: 81: 66: 59: 42: 36: 35: 27: 21: 3043: 3042: 3038: 3037: 3036: 3034: 3033: 3032: 2933: 2932: 2912: 2872: 2825: 2815: 2810: 2780: 2776: 2765: 2716: 2708: 2694: 2654: 2649: 2619: 2615: 2578: 2570: 2556: 2528: 2523: 2510: 2491: 2448: 2428: 2398: 2365:press release, 2359: 2319: 2316: 2285: 2035: 1987: 1982: 1954: 1950: 1934:Wrapped in Grey 1903: 1880: 1864:Wrapped in Grey 1835: 1827: 1782: 1777: 1772: 1763: 1746: 1742: 1672: 1662: 1642: 1639: 1617: 1607: 1588: 1572: 1553: 1532:121.208.214.100 1525: 1505: 1491: 1468: 1460: 1444:192.100.124.219 1430: 1400: 1388: 1369:121.208.214.100 1362: 1314: 1268: 1224: 1196: 1147: 896: 869: 854: 781: 766: 701: 638: 601: 589: 567: 535:Harmony project 520:scorp1us@yahoo 485:scorp1us@yahoo 471: 428: 409: 360:Brands articles 359: 356: 353: 350: 349: 316: 270: 267: 264: 261: 260: 223: 133: 130: 127: 124: 123: 82: 72: 40: 23: 22: 15: 12: 11: 5: 3041: 3039: 3031: 3030: 3025: 3020: 3015: 3010: 3005: 3000: 2995: 2990: 2985: 2980: 2975: 2970: 2965: 2960: 2955: 2950: 2945: 2935: 2934: 2911: 2908: 2907: 2906: 2905: 2904: 2871: 2868: 2867: 2866: 2824: 2821: 2808: 2802: 2801: 2794: 2750: 2749: 2746: 2743: 2740: 2737: 2734: 2731: 2728: 2707:. You may add 2693: 2690: 2689: 2688: 2672: 2671: 2647: 2641: 2640: 2633: 2601: 2600: 2592:Added archive 2590: 2555: 2552: 2522: 2519: 2493:I created the 2490: 2487: 2486: 2485: 2450:Reference 70, 2447: 2444: 2427: 2424: 2397: 2394: 2358: 2355: 2354: 2353: 2315: 2314:New Screenshot 2312: 2311: 2310: 2309: 2308: 2277: 2276: 2275: 2274: 2273: 2272: 2271: 2270: 2248: 2247: 2246: 2245: 2244: 2243: 2242: 2241: 2231: 2230: 2229: 2228: 2227: 2226: 2225: 2224: 2221: 2218: 2215: 2212: 2198: 2197: 2196: 2195: 2194: 2193: 2192: 2191: 2181: 2180: 2179: 2178: 2177: 2176: 2175: 2174: 2162: 2161: 2160: 2159: 2158: 2157: 2156: 2155: 2142: 2141: 2140: 2139: 2138: 2137: 2136: 2135: 2125: 2124: 2123: 2122: 2121: 2120: 2119: 2118: 2107: 2106: 2105: 2104: 2103: 2102: 2101: 2100: 2089: 2088: 2087: 2086: 2085: 2084: 2061: 2060: 2059: 2058: 2027: 2026: 1981: 1978: 1949: 1946: 1945: 1944: 1902: 1899: 1879: 1876: 1875: 1874: 1826: 1823: 1822: 1821: 1776: 1773: 1771: 1770: 1760:requested move 1728: 1727: 1712:is not just a 1706:Qt (framework) 1698:Qt (framework) 1692: 1690: 1680: 1679: 1669:requested move 1663: 1661: 1658: 1638: 1635: 1633: 1631: 1630: 1606: 1603: 1587: 1584: 1571: 1568: 1552: 1545: 1544: 1543: 1504: 1501: 1500: 1499: 1467: 1464: 1459: 1456: 1429: 1426: 1399: 1396: 1387: 1384: 1383: 1382: 1381: 1380: 1356: 1355: 1313: 1310: 1309: 1308: 1290:Any comments? 1267: 1264: 1240:replaced with 1223: 1220: 1195: 1192: 1191: 1190: 1189: 1188: 1187: 1186: 1163: 1162: 1146: 1145:Bindings for C 1143: 1128: 1127: 1126: 1125: 1124: 1123: 1122: 1121: 1097: 1096: 1095: 1094: 1084: 1083: 1082: 1076: 1069: 1068: 1067: 1058: 1057: 1030: 1029: 1028: 1027: 1026: 1025: 1007: 1006: 1005: 1004: 1003: 1002: 991: 990: 989: 988: 987: 986: 985: 984: 973: 972: 971: 970: 969: 968: 956: 955: 954: 953: 941: 940: 895: 892: 868: 865: 853: 850: 836: 835: 832: 829: 825: 824: 821: 818: 794: 793: 789: 788: 780: 777: 765: 762: 761: 760: 750: 730: 729: 720: 711: 700: 697: 696: 695: 682: 671: 670: 669: 668: 637: 636:Requested move 634: 633: 632: 631:Philippe Fremy 628: 627: 623: 622: 618: 600: 597: 588: 585: 566: 563: 561: 559: 558: 543: 542: 527: 522: 511: 510: 487: 470: 467: 466: 465: 427: 424: 408: 405: 402: 401: 398: 397: 394: 393: 386: 380: 379: 372: 366: 365: 363: 346:the discussion 332: 320: 319: 311: 299: 298: 295: 294: 287:Mid-importance 283: 277: 276: 274: 271:C/C++ articles 257:the discussion 239: 227: 226: 224:Mid‑importance 218: 206: 205: 202: 201: 198:Mid-importance 188: 178: 177: 168: 158: 157: 150:Mid-importance 146: 140: 139: 137: 120:the discussion 98: 86: 85: 83:Mid‑importance 67: 55: 54: 48: 37: 24: 14: 13: 10: 9: 6: 4: 3: 2: 3040: 3029: 3026: 3024: 3021: 3019: 3016: 3014: 3011: 3009: 3006: 3004: 3001: 2999: 2996: 2994: 2991: 2989: 2986: 2984: 2981: 2979: 2976: 2974: 2971: 2969: 2966: 2964: 2961: 2959: 2956: 2954: 2951: 2949: 2946: 2944: 2941: 2940: 2938: 2931: 2930: 2926: 2922: 2921:151.95.20.122 2917: 2916: 2909: 2903: 2899: 2895: 2894:151.95.20.122 2891: 2890: 2889: 2888: 2887: 2886: 2882: 2878: 2869: 2865: 2861: 2857: 2853: 2852: 2851: 2849: 2845: 2841: 2837: 2833: 2822: 2820: 2819: 2813: 2806: 2799: 2795: 2792: 2788: 2787: 2786: 2785: 2773: 2769: 2763: 2759: 2755: 2747: 2744: 2741: 2738: 2735: 2732: 2729: 2726: 2725: 2724: 2720: 2712: 2706: 2702: 2701:Qt (software) 2697: 2691: 2687: 2683: 2679: 2674: 2673: 2669: 2665: 2661: 2660: 2659: 2658: 2652: 2645: 2638: 2634: 2631: 2627: 2626: 2625: 2624: 2612: 2610: 2606: 2599: 2595: 2591: 2588: 2587: 2586: 2582: 2574: 2568: 2564: 2563:Qt (software) 2559: 2553: 2551: 2548: 2544: 2540: 2536: 2532: 2520: 2518: 2517: 2513: 2508: 2504: 2500: 2496: 2488: 2484: 2480: 2476: 2472: 2468: 2467: 2466: 2465: 2461: 2457: 2453: 2445: 2443: 2442: 2438: 2434: 2425: 2423: 2419: 2416: 2413: 2410: 2407: 2404: 2401: 2395: 2393: 2391: 2386: 2385: 2381: 2377: 2373: 2368: 2364: 2361:According to 2356: 2352: 2348: 2344: 2343:Fleet Command 2339: 2338: 2337: 2335: 2331: 2327: 2326:98.198.225.24 2323: 2313: 2305: 2301: 2297: 2293: 2289: 2281: 2280: 2279: 2278: 2269: 2265: 2261: 2260:ICouldBeWrong 2256: 2255: 2254: 2253: 2252: 2251: 2250: 2249: 2239: 2238: 2237: 2236: 2235: 2234: 2233: 2232: 2222: 2219: 2216: 2213: 2208: 2206: 2205: 2204: 2203: 2202: 2201: 2200: 2199: 2189: 2188: 2187: 2186: 2185: 2184: 2183: 2182: 2172: 2170: 2169: 2168: 2167: 2166: 2165: 2164: 2163: 2153: 2150: 2149: 2148: 2147: 2146: 2145: 2144: 2143: 2133: 2132: 2131: 2130: 2129: 2128: 2127: 2126: 2115: 2114: 2113: 2112: 2111: 2110: 2109: 2108: 2097: 2096: 2095: 2094: 2093: 2092: 2091: 2090: 2083: 2079: 2075: 2071: 2067: 2066: 2065: 2064: 2063: 2062: 2055: 2051: 2047: 2043: 2039: 2031: 2030: 2029: 2028: 2025: 2021: 2017: 2012: 2011: 2010: 2007: 2003: 1999: 1995: 1991: 1979: 1977: 1974: 1970: 1966: 1962: 1958: 1943: 1939: 1935: 1931: 1930: 1929: 1928: 1924: 1920: 1916: 1914: 1909: 1906: 1900: 1898: 1897: 1893: 1889: 1885: 1877: 1873: 1869: 1865: 1861: 1860: 1859: 1858: 1854: 1850: 1844: 1838: 1832: 1824: 1820: 1816: 1812: 1808: 1804: 1803: 1802: 1798: 1794: 1790: 1786: 1769: 1766: 1761: 1756: 1755: 1754: 1753: 1749: 1745: 1737: 1733: 1726: 1723: 1722: 1721: 1719: 1715: 1711: 1707: 1703: 1699: 1695: 1689: 1688: 1685: 1678: 1675: 1670: 1665: 1664: 1659: 1657: 1654: 1650: 1649:86.40.215.245 1646: 1636: 1634: 1629: 1625: 1620: 1615: 1614: 1613: 1610: 1604: 1602: 1601: 1597: 1593: 1585: 1583: 1582: 1579: 1577: 1569: 1567: 1566: 1562: 1558: 1550: 1546: 1541: 1537: 1533: 1529: 1522: 1521: 1520: 1519: 1515: 1511: 1510:142.104.60.31 1502: 1498: 1495: 1488: 1485: 1484: 1483: 1482: 1478: 1474: 1465: 1463: 1457: 1455: 1453: 1449: 1445: 1441: 1434: 1427: 1425: 1423: 1419: 1415: 1411: 1405: 1397: 1395: 1394: 1385: 1378: 1374: 1370: 1366: 1360: 1359: 1358: 1357: 1354: 1351: 1346: 1345: 1344: 1343: 1339: 1335: 1331: 1329: 1325: 1319: 1311: 1307: 1304: 1299: 1298: 1297: 1296: 1293: 1288: 1285: 1281: 1277: 1273: 1265: 1263: 1262: 1259: 1253: 1251: 1245: 1243: 1239: 1233: 1228: 1221: 1219: 1218: 1215: 1211: 1208: 1204: 1203: 1199: 1193: 1185: 1182: 1179: 1176: 1175: 1174: 1171: 1167: 1166: 1165: 1164: 1159: 1158: 1157: 1156: 1153: 1144: 1142: 1141: 1138: 1134: 1133:free software 1120: 1117: 1113: 1112: 1111: 1108: 1103: 1102: 1101: 1100: 1099: 1098: 1093: 1090: 1085: 1080: 1079: 1077: 1074: 1070: 1065: 1064: 1062: 1061: 1060: 1059: 1056: 1053: 1048: 1047: 1046: 1045: 1041: 1036: 1024: 1021: 1017: 1013: 1012: 1011: 1010: 1009: 1008: 1001: 997: 996: 995: 994: 993: 992: 981: 980: 979: 978: 977: 976: 975: 974: 966: 962: 961: 960: 959: 958: 957: 952: 949: 945: 944: 943: 942: 939: 936: 932: 928: 924: 920: 916: 912: 911: 910: 909: 906: 902: 893: 891: 890: 886: 882: 878: 874: 866: 864: 861: 858: 851: 849: 847: 843: 833: 830: 827: 826: 822: 819: 816: 815: 812: 809: 807: 803: 799: 798:documentation 796:According to 791: 790: 786: 785: 784: 778: 776: 774: 771: 763: 758: 754: 751: 748: 744: 741: 740: 739: 737: 734: 728: 724: 721: 719: 715: 712: 710: 706: 703: 702: 698: 693: 690: 686: 683: 680: 676: 673: 672: 667: 665: 661: 656: 655: 654: 653: 652: 650: 646: 642: 635: 630: 629: 625: 624: 620: 619: 617: 615: 611: 607: 605: 598: 596: 594: 586: 584: 583: 578: 576: 572: 564: 562: 556: 552: 551: 550: 548: 540: 536: 532: 531: 530: 526: 521: 519: 516: 508: 504: 503: 502: 500: 496: 492: 486: 484: 481: 475: 468: 464: 460: 456: 452: 448: 444: 443: 442: 441: 437: 433: 425: 423: 422: 418: 414: 406: 391: 385: 382: 381: 377: 371: 368: 367: 364: 347: 343: 339: 338: 333: 330: 326: 325: 321: 315: 312: 309: 305: 292: 288: 282: 279: 278: 275: 258: 254: 250: 246: 245: 240: 237: 233: 232: 228: 222: 219: 216: 212: 199: 196:(assessed as 195: 194: 184: 180: 179: 175: 174: 164: 160: 159: 155: 151: 145: 142: 141: 138: 121: 117: 113: 109: 105: 104: 99: 96: 92: 91: 87: 80: 76: 71: 68: 65: 61: 56: 52: 46: 38: 34: 29: 28: 19: 2918: 2913: 2873: 2830:— Preceding 2826: 2803: 2783: 2774: 2761: 2757: 2753: 2751: 2698: 2695: 2642: 2622: 2613: 2608: 2604: 2602: 2560: 2557: 2529:— Preceding 2524: 2521:Pluralsight? 2492: 2456:173.13.21.65 2449: 2429: 2420: 2417: 2414: 2411: 2408: 2405: 2402: 2399: 2390:this article 2387: 2376:87.217.11.95 2360: 2317: 2286:— Preceding 2099:verify that. 2036:— Preceding 1988:— Preceding 1983: 1955:— Preceding 1951: 1917: 1912: 1910: 1907: 1904: 1881: 1828: 1778: 1764: 1757: 1740: 1735: 1731: 1729: 1724: 1713: 1709: 1705: 1702:Qt (toolkit) 1701: 1694:Qt (toolkit) 1691: 1681: 1673: 1666: 1640: 1632: 1611: 1608: 1589: 1573: 1557:64.58.22.201 1554: 1506: 1469: 1461: 1435: 1431: 1401: 1389: 1327: 1323: 1315: 1289: 1269: 1255: 1249: 1247: 1241: 1237: 1234: 1230: 1226: 1214:83.245.83.98 1212: 1209: 1205: 1201: 1200: 1197: 1150:languages? 1148: 1129: 1034: 1031: 999: 922: 918: 897: 871:I submitted 870: 862: 859: 855: 839: 823:Information 810: 795: 782: 767: 752: 742: 731: 718:Qt (toolkit) 684: 674: 663: 659: 657: 639: 612: 608: 602: 590: 579: 568: 560: 555:David Gerard 547:DJ Clayworth 544: 528: 523: 515:71.179.4.155 512: 488: 480:71.179.4.155 477: 473: 432:79.64.102.83 429: 413:187.39.28.74 410: 335: 286: 242: 191: 171: 149: 101: 51:WikiProjects 2877:MiguelMunoz 2768:Sourcecheck 2512:User:ScotXW 2433:Borishollas 2320:—Preceding 2074:Spidermario 2016:Spidermario 1932:Clarified. 1919:Spidermario 1888:83.3.98.194 1783:—Preceding 1643:—Preceding 1576:jbolden1517 1526:—Preceding 1438:—Preceding 1414:82.16.66.10 1408:—Preceding 1363:—Preceding 1250:proprietary 1242:proprietary 1107:65.95.124.5 1052:65.95.124.5 948:65.94.60.61 933:policy. -- 925:is against 923:open source 919:open source 905:65.95.229.9 901:open source 770:violet/riga 733:violet/riga 689:violet/riga 569:Is this an 449:criticism, 317:Start‑class 2937:Categories 2678:Guy Harris 2475:Guy Harris 2431:version?-- 1862:No merge. 1586:Screenshot 1551:reference? 1238:commercial 1073:notability 881:Liberatore 714:Qt toolkit 641:Qt toolkit 499:Qt toolkit 491:QT Toolkit 455:Guy Harris 407:Initialism 2856:KAMiKAZOW 2798:this tool 2791:this tool 2643:Cheers. — 2637:this tool 2630:this tool 2117:controls. 1849:Melnakeeb 1732:framework 1547:Earliest 963:An anon, 537:page. -- 426:Criticism 125:Computing 112:computing 108:computers 70:Computing 2844:contribs 2832:unsigned 2804:Cheers.— 2711:cbignore 2573:cbignore 2543:contribs 2531:unsigned 2322:unsigned 2300:contribs 2292:Legalize 2288:unsigned 2050:contribs 2042:Legalize 2038:unsigned 2002:contribs 1994:Legalize 1990:unsigned 1969:contribs 1957:unsigned 1837:decltype 1811:Neurocod 1797:contribs 1789:Johnanth 1785:unsigned 1645:unsigned 1619:decltype 1592:CharlesC 1528:unsigned 1440:unsigned 1410:unsigned 1365:unsigned 817:Version 764:Decision 649:minghong 75:Software 2814::Online 2754:checked 2705:my edit 2653::Online 2605:checked 2567:my edit 2535:Coylabe 2070:example 1911:I have 1736:toolkit 1714:toolkit 1326:n Yerri 1280:Outlook 1272:Firefox 1035:claimed 1016:WP:NPOV 927:WP:NPOV 753:Support 743:Support 660:Support 614:Novalis 289:on the 152:on the 41:C-class 2836:Zeenix 2762:failed 2719:nobots 2581:nobots 2507:Amarok 1901:“Q.T.” 1825:Merge? 1743:kedadi 1684:Ucucha 1549:USENET 1303:midg3t 1258:Hamitr 1137:midg3t 747:mkrohn 685:Oppose 675:Oppose 664:Oppose 575:Jondel 539:mkrohn 507:mkrohn 469:"Cute" 351:Brands 342:brands 314:Brands 114:, and 47:scale. 2372:Digia 2367:Digia 1913:never 1492:Error 1432:: --> 1350:Esben 1338:stalk 1181:Esben 1170:Filur 1161:(UTC) 1152:Filur 879:). - 852:Gtk+? 846:talk) 842:Motor 831:xxxxx 820:Date 806:talk) 802:Motor 658:Add * 582:Yamla 565:IDE ? 370:Start 262:C/C++ 221:C/C++ 2925:talk 2898:talk 2881:talk 2860:talk 2840:talk 2758:true 2682:talk 2609:true 2539:talk 2497:and 2479:talk 2460:talk 2437:talk 2380:talk 2363:this 2347:talk 2330:talk 2296:talk 2264:talk 2078:talk 2046:talk 2020:talk 1998:talk 1965:talk 1938:talk 1923:talk 1892:talk 1868:talk 1853:talk 1843:talk 1815:talk 1793:talk 1653:talk 1624:talk 1596:talk 1561:talk 1536:talk 1514:talk 1477:talk 1473:Efa2 1448:talk 1418:talk 1373:talk 1334:talk 1322:Dami 1284:Exim 1116:Egil 1089:Egil 1020:Egil 935:Egil 662:or * 459:talk 436:talk 417:talk 251:and 2772:). 2760:or 2596:to 2217:... 2211:so: 1762:. 1708:as 1704:to 1276:IIS 828:2.0 773:(t) 757:PBS 755:-- 736:(t) 692:(t) 679:PBS 677:-- 573:?-- 384:??? 281:Mid 253:C++ 144:Mid 2939:: 2927:) 2919:-- 2900:) 2883:) 2862:) 2846:) 2842:• 2770:}} 2766:{{ 2717:{{ 2713:}} 2709:{{ 2684:) 2579:{{ 2575:}} 2571:{{ 2545:) 2541:• 2481:) 2473:. 2462:) 2439:) 2392:. 2382:) 2349:) 2332:) 2302:) 2298:• 2266:) 2080:) 2052:) 2048:• 2022:) 2004:) 2000:• 1971:) 1967:• 1940:) 1925:) 1894:) 1870:) 1855:) 1817:) 1809:. 1799:) 1795:• 1747:al 1720:: 1710:Qt 1696:→ 1671:. 1655:) 1626:) 1598:) 1563:) 1538:) 1516:) 1479:) 1450:) 1420:) 1375:) 1340:) 1336:| 1244:. 887:) 727:QT 723:Qt 716:→ 709:QT 707:→ 645:Qt 643:→ 606:. 495:Qt 461:) 453:. 438:) 419:) 200:). 110:, 77:/ 73:: 2923:( 2896:( 2879:( 2858:( 2838:( 2800:. 2793:. 2781:Y 2680:( 2639:. 2632:. 2620:Y 2537:( 2477:( 2458:( 2435:( 2378:( 2345:( 2328:( 2294:( 2262:( 2154:] 2076:( 2044:( 2018:( 1996:( 1963:( 1936:( 1921:( 1890:( 1866:( 1851:( 1845:) 1841:( 1813:( 1791:( 1651:( 1622:( 1594:( 1559:( 1534:( 1512:( 1475:( 1446:( 1416:( 1371:( 1332:( 1330:k 1328:c 1324:a 1131:" 1075:. 885:T 883:( 844:( 804:( 457:( 434:( 415:( 392:. 293:. 249:C 176:. 156:. 53:: 20:)

Index

Talk:Qt (toolkit)

content assessment
WikiProjects
WikiProject icon
Computing
Software
Free and open-source software
WikiProject icon
WikiProject Computing
computers
computing
information technology
the discussion
Mid
project's importance scale
Taskforce icon
WikiProject Software
Taskforce icon
Free and open-source software
Mid-importance
WikiProject icon
C/C++
WikiProject icon
WikiProject C/C++
C
C++
the discussion
Mid
importance scale

Text is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply.

↑