Tidak Ada Deskripsi

Filipe AZEVEDO (Nox P@sNox) f72dfcb41d Update readme 12 tahun lalu
Python ae51b2262f Fix sip file to conform with master api. 13 tahun lalu
debian ad6169eeef Source package depends on source dir and original source package 13 tahun lalu
doc 1e3ac6f8cb Update project location & README due to move from bettercodes to github. 13 tahun lalu
examples d478e156b1 Update cpp examples 13 tahun lalu
include 7bcd1acb9f Import new classes from old mks fresh lib: pLocaleModel, pGenericModel, pCheckComboBox. 13 tahun lalu
resources e7c5e06f42 Introduce pNetworkAccessManager & pPaypalButton 14 tahun lalu
src fdcb6dea3d Update fresh version to conform with the pro/cmake versions 13 tahun lalu
translations 2416f05ea2 Rename translations files. 13 tahun lalu
.gitattributes 659532cd50 .deb is Buildable on squeeze 13 tahun lalu
.gitignore 338813e8af Update ignore file 13 tahun lalu
CMakeLists.txt f4989d8fa1 Update/Fix cmake/qmake build systems projects files. 13 tahun lalu
FindFresh.cmake c9bbadffd7 Fix small typo 13 tahun lalu
LICENSE f2ec78ec10 Add license file as well as main documentation file. 13 tahun lalu
README f72dfcb41d Update readme 12 tahun lalu
fresh.pro 44be35b321 Fix a regression that remove the project type to lib, making the project unbuildable. 13 tahun lalu
fresh_shared.prf 6bc48349da Merge last changes from branch 1.0.x. 13 tahun lalu
fresh_static.prf 6bc48349da Merge last changes from branch 1.0.x. 13 tahun lalu
functions.pri 684e092b3c Fix backslash / slash replace in qmake project 12 tahun lalu
installs.pri 684e092b3c Fix backslash / slash replace in qmake project 12 tahun lalu
subdirs.pro 7bcd1acb9f Import new classes from old mks fresh lib: pLocaleModel, pGenericModel, pCheckComboBox. 13 tahun lalu

README

Fresh is a library extending the Qt library by adding new classes/widgets.
Library has Python bindings.
It's developped by Filipe AZEVEDO (Nox P@sNox, pasnox@gmail.com)
Python bindings created by Andrei KOPATS (hlamer, hlamer@tut.by)

Licensed in LGPL v3
--------------------

Home Page: https://github.com/pasnox/fresh
----------
Issues Tracker: https://github.com/pasnox/fresh/issues
---------------

Building library and examples WITHOUT Python support
====================================================
Dependencies:
* C++ compiler (ubuntu package g++)
* Mac OS X: CoreFoundation
* Qt4 library v4.6+, headers and tools. (ubuntu packages qt4-qmake, libqt4-dev)

Building:
qmake ./fresh.pro && make
Building an example (after having built the library):
cd examples/cpp
qmake
make
Running an example
./examples


Building library and examples WITH Python support
=================================================
Dependencies:
* Make (Ubuntu package make)
* Cmake (Ubuntu package cmake)
* C++ compiler (Ubuntu package g++)
* Qt4 library v4.6, headers. (Ubuntu package libqt4-dev)
* PyQt4 including development files (Ubuntu packages python-qt4, python-qt4-dev)
* SIP (http://www.riverbankcomputing.co.uk/software/sip/download) (Ubuntu package python-sip-dev)

On Ubuntu install all with command
sudo apt-get install make cmake g++ libqt4-dev python-qt4 python-qt4-dev python-sip-dev

Building:
mkdir build
cd build
cmake ..
make all
make install
The last command requires root privileges
Executing Python example:
cd examples/python
python freshexample.py