openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
Forums
Qt4 Bindings for Perl
Settings
|
Report Duplicate
0
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Activity Not Available
Commits
: Listings
Analyzed
about 1 year
ago. based on code collected
about 1 year
ago.
Jan 16, 2023 — Jan 16, 2024
Showing page 5 of 18
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
Fix the uniqMethods() method. It now determines that 2 methods are the same if they have the same signature, rather than using the methodId. This is because the QGlobalSpace methods can exist in multiple smoke objects. Add ipc/localfortuneclient example.
Chris Michael Burel
More...
over 14 years ago
Add network/downloadmanager example.
Chris Michael Burel
More...
over 14 years ago
Fix the getPointer() method to work in both use cases ($obj->getPointer and $obj->Qt::base::getPointer)
Chris Michael Burel
More...
over 14 years ago
Add support for Qt::AbstractXmlNodeModel::createIndex and Qt::XmlNodeModelIndex::internalPointer
Chris Michael Burel
More...
over 14 years ago
Complete work on the xmlpatterns/filetree example. Add debug info for when objects are copied. Fix qdbusxml2perl compile problem. It is dependent on some private headers.
Chris Michael Burel
More...
over 14 years ago
Add the xmlpatterns/filetree example. Fix puic4's handling of strings that span multiple lines. Add support for long longs in ambiguous method resolution in perl. Make sure the enums for the QXmlPatterns module get created properly in perl. Add support for handling QVector<QXmlNodeModelIndex>s in perl. Because of QGlobalSpace, sometimes we'll get the same QGlobalSpace method 2x in calls to findMethod(). So get the unique methods.
Chris Michael Burel
More...
over 14 years ago
Add a method to Qt::base called getPointer(). This method returns the numeric memory location for the c++ variable wrapped in a perl variable.
Chris Michael Burel
More...
over 14 years ago
Add qdbusxml2perl application. Looks like my previous commit didn't do a recursive add.
Chris Michael Burel
More...
over 14 years ago
Add a qdbusxml2perl application. Currently only supports generating adaptor files.
Chris Michael Burel
More...
over 14 years ago
Add qRegisterResourceData() and qUnregisterResourceData() methods to support prcc4. Remove the -package option from prcc4. The package name will be determined from the -o option. Update the widgets/validators example to build a resources module, and load the images from there instead from the disk.
Chris Michael Burel
More...
over 14 years ago
Add prcc (Perl Resource Compiler)
Chris Michael Burel
More...
over 14 years ago
This file accidently got duplicated.
Chris Michael Burel
More...
over 14 years ago
Add use line for QtSvg4 to get access to the Qt::SvgGenerator class.
Chris Michael Burel
More...
over 14 years ago
Add a test for the network/broadcast examples.
Chris Michael Burel
More...
over 14 years ago
Update the puic4 code to that from Qt 4.6.2. Only the driver code is updated, not any of the Perl code. Add support to puic4 for dynamically determining which modules to load, including those of custom widgets. Add support to puic4 for setBuddy() calls.
Chris Michael Burel
More...
over 14 years ago
Add an implementation of QUdpSocket::readDatagram to deal with setting the read string's size after completion of the call.
Chris Michael Burel
More...
over 14 years ago
When calling a signal, make sure we got the right number of arguments from perl. Add a function to easily get the calling sub's information. This may be perl version specific, so it'll need to be tested on some versions other than 5.10.0. Fix the draganddrop/draggableicons and draganddrop/dropsite examples.
Chris Michael Burel
More...
over 14 years ago
There seems to be a problem with the bindings not being notified when some objects are deleted. So we get entries in the pointer map that are out of date. So when we return those entries, make sure that the object we found in the pointer map inherits from the type we expect to be returning. This fixes "issue 16" from the perlqt4 google code bug tracking page. Revert the change from rev. 1165711. Making a copy of the variable in question means that the function using that argument can't modify it. Which breaks things that expect to get a pass by reference value.
Chris Michael Burel
More...
over 14 years ago
Add a test for the itemviews/puzzle example. Unfortunately it doesn't do much, since QTest can't simulate drag events. Fix a bug with the pixelator example. Always return QVariants in data() and headerData().
Chris Michael Burel
More...
over 14 years ago
When calling a method in QGlobalSpace, don't stop when you find the first smoke module that provides the method you're looking for. Look through all smoke modules. This was breaking when calling operator<< on a QPixmap, because that method was defined by the QtGui module. The code would find the methods from QtCore and stop there.
Chris Michael Burel
More...
over 14 years ago
Add the graphicsview/padnavigator example.
Chris Michael Burel
More...
over 14 years ago
Add the code that actually makes QPolygonF Perl objects as a tied arrays. Add the qgraphicsview/diagramscene example, that depends on the tied array QPolygonF functionality.
Chris Michael Burel
More...
over 14 years ago
Add code to make Qt::PolygonF a tied array. The implementation of the tie interface is incomplete.
Chris Michael Burel
More...
over 14 years ago
Add a test for the pixelator example. Add a test for the unsigned int * marshaller. I was hoping to get a custom QTestLogger to make the output from using the QTest framework compatible with perl's prove. But that's not possible. So revert to using Test::More for now.
Chris Michael Burel
More...
over 14 years ago
Make a t/ directory in the qtgui module for the gui tests. Add a few tests that test a specific class. This provides a mechanism to add tests for problematic class methods. Add a QTEST_MAIN sub in QtTest4.pm that can be imported, to mimic the C++ macro.
Chris Michael Burel
More...
over 14 years ago
Fix to work with cmake 2.6.
Chris Michael Burel
More...
over 14 years ago
Add rules to build .ui files into perl modules. Currently places the generated files in the source dir (not the build dir) to avoid having to copy all the examples' code to the build dir (the examples should be runnable from the source dir). "make clean" in the build dir will remove the generated .pm files from the source tree.
Chris Michael Burel
More...
over 14 years ago
QtGui needed to use the marshall_it marshaller, so don't make it static, and make it visible for linking. Add the itemviews/pixelator example. This example has functionality that depends on bug 249567.
Chris Michael Burel
More...
over 14 years ago
Forgot to commit CMakeLists.txt for perl modules added in rev. 1164460.
Chris Michael Burel
More...
over 14 years ago
Add a fix to prevent infinite recursion when making a ::SUPER call. This was the case when calling this->SUPER::method inside a subclass's method, where the perl subclass, the c++ subclass, and the c++ baseclass all had an implementation of a given method. Remove the special-cased QAbstractItemModel::flags method, as it was just a workaround for the above-fixed bug.
Chris Michael Burel
More...
over 14 years ago
←
1
2
3
4
5
6
7
8
9
…
17
18
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree