Projects tagged ‘cpp’ and ‘qt’


Jump to tag:

Projects tagged ‘cpp’ and ‘qt’

Filtered by Project Tags cpp qt

Refine results Project Tags c (14) linux (8) qt4 (6) cplusplus (6) python (5) opengl (5) windows (5) dictionary (3) twitter (3) template (3) simulation (3) kde (3)

[54 total ]

2 Users

Free your moto!Integration Qtopia and Motorola Ezx cell phones. Source code moved to github!
Created about 1 year ago.

1 Users

QXmpp is a cross-platform C++ XMPP client library. It is based on Qt. QXmpp is pretty intuitive and easy to use. It uses Qt extensively. Qt is the only third party library it is dependent on. ... [More] Users need to a have working knowledge of C++ and Qt basics (Signals and Slots and Qt data types). The underlying TCP socket and the XMPP RFCs (RFC3920 and RFC3921) have been encapsulated into classes and functions. Therefore the user would not be bothered with these details. But it is always recommended to the advanced users to read and enjoy the low level details. [Less]
Created 4 months ago.

1 Users

A sqlite3 persistence object library
Created 12 months ago.

1 Users

The official project page for the C++ Project Template is: http://code.google.com/p/cpp-project-template/ Ohloh has shamelessly stolen web traffic away from the project's official page. We would ... [More] appreciate it if, when linking to the C++ Project Template, that you link to the official project page rather than to Ohloh's copy-cat page. [Less]
Created 3 months ago.

0 Users

Para Fluid is a cross-platform parallelized computational fluid dynamics simulation for real-time visualization using SPH and spatial hashing. Implemented in C++, Qt and OpenGL. The first goal is ... [More] to study the SPH fluid dynamics algorithm and parallelize it as much as possible to take advantage of multiple CPUs and achieve a real-time simulation. The second goal is to have the fluid interact with an arbitrary surface represented by a triangle mesh. [Less]
Created 12 months ago.

0 Users

IntroductionXD is a simple and Cross-Platform dictionary software written in Qt4. The file format of XD Dictionnary is opened, so if you held any programming skills, you can make custom dictionnay ... [More] files. XD folder treeWindows version│ xd.exe │ index-creator.exe │ msvcr80.dll │ msvcp80.dll │ QtCore4.dll │ QtGui4.dll │ Microsoft.VC80.CRT.manifest │ options.ini │ app.ini │ ├─doc │ readme.txt │ licence.txt │ ├─dict │ top.index │ bottom.index │ middle.index │ jp-jp_koujien.dict │ jp-kr_kjdict.dict │ kr-jp_kjdict.dict │ en-ja_jmdict.dict │ en-cn_jianming.dict │ cn-en_jianming.dict │ cn-cn_gaojihanyu.dict │ └─lang zh_CN.qm en.qmDictionary fileXD Dict file formatDict-Name: XXXX XXXX Content-Type: text or html Word-Count: 123456 keyword1|keyword2|keyword3... [[pronunciation]] Description keyword1|keyword2|keyword3... [[pronunciation]] DescriptionDescriptionDict file must be UTF-8 encoding. Newline must be LF. The description can not have both consecutive LF. Must put both consecutive LF after the end of the description. The pronunciation is optional. The Dict-Name will be displayed when display the result. When Content-Type is "text", convert the description to plain text. When Content-Type is "html", convert the description to HTML. Index FilesXD has three index files, each time any change of dict file, must be update the three index files. How to add custom dictionaryMake XD dict file and named XXX-XXX.dict. Copy the dict file to the "dict" folder. Execute index-creator program. Update bottom index file. Update middle index file. Update top index file. [Less]
Created 12 months ago.

0 Users

Galaxy Picture FactoryThis is an open source image and photo editing software based on Qt. It has a friendly user interface with support for layers, special effects and so on. It started development ... [More] by undergraduate college students. May it grows into a powerful yet simple image and photo editor tool. It has been compared to other digital photo editing software packages such as Paint.NET®, Adobe® Photoshop®, and The GIMP. Maybe it will be GIMP on KDE! :-) The programming language used to create Galaxy Picture Factory is C++. The source code is available under the terms of GPLv3. To launch Galaxy Picture Factory you need Qt 4.5+. [Less]
Created 12 months ago.

0 Users

blah blah blah
Created 12 months ago.

0 Users

Very simple qt 4.x xmlrpc server & client classes. You can register your slots as xmlrpc callbacks in your qt app. No client and ssl support yet. Usage much simpler, then ... [More] http://code.google.com/p/qxmlrpc XmlRpcServer * rpcServer = new XmlRpcServer(); rpcServer->listen( QHostAddress("127.0.0.1"), 5430 ); rpcServer->registerSlot( rpcServer, SLOT(echo(const QVariant&)) ); rpcServer->registerSlot( rpcServer, SLOT(deferredEcho(const QVariant&)) );public slots: QVariant echo( const QVariant& e ) { return e; } DeferredResult * deferredEcho( const QVariant& e ) { return new DeferredEcho( e ); }Compile sources, then: $ ./echo 23:58:20.146 [0x618550 WRN] listening http://127.0.0.1:5430/RPC2Another console: $ python Python 2.5.1 (r251:54863, Nov 4 2007, 17:58:10) [GCC 4.1.2 (Gentoo 4.1.2)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import xmlrpclib >>> server = xmlrpclib.ServerProxy("http://localhost:5430") >>> server.echo( [1,2,{'a':1, 'b':2}] ) [1, 2, {'a': 1, 'b': 2}] >>> server.deferredEcho( [1,2,{'a':1, 'b':2}] ) [1, 2, {'a': 1, 'b': 2}]Deffered result can be emmited as signal, from derived class. So you can do sql, network, thread and so on work in your callbacks. Mail: kisel2626@gmail.com [Less]
Created 11 months ago.

0 Users

This client uses PCC2 engine for game logic. It supports the original host and current phost games.
Created 12 months ago.